Android app for sorting and reviewing changes

The 'Review It!?' app is an Android application for Gerrit that allows
sorting of incoming changes and review of small/trivial changes.

There is a drawer menu that allows switching between the sorting and
the review mode of the app.

Sorting of incoming changes
===========================

When working with Gerrit it is a common workflow that reviewers are
not always explicitly assigned, but that committers and contributors
watch the incoming changes and choose those changes for review that
are interesting to them.

Watching incoming changes can be done in different ways, e.g
- manually go through the list of open changes
- register project watches to get email notifications about new
  changes

These approaches have some problems in common when the number of
incoming changes gets too high:
- some changes of interest are not noticed (e.g. get lost in the mail
  inbox)
- at the time of notification there may be no time for immediate
  review, and at the moment when there is time to review, some of the
  interesting changes have been forgotten
- changes that are not interesting popup again and again whenever they
  are updated

The 'ReviewIt!?' Android app tries to solve these problems by offering
a simple way to sort incoming changes:
- mark interesting changes to review them later (by putting a labeled
  star on them)
- mark non-interesting changes as ignored

The actual review of the changes may be done in the Gerrit web UI on a
large screen or directly in the app by using its review functionality
(see below).

The idea of the sorting is that it allows you to stay updated about
your project while you are not in office (see new changes and sort
them), but the code review is done only later, e.g. because the small
display of a phone is not supporting reviews very well.

The changes that have been starred are accessible by a change query or
a Gerrit dashboard, and hence they can be easily found when there is
time to do reviews. The app should configure a 'My' menu entry for
this dashboard automatically (not implemented yet).

Updates for ignored changes will be filtered out so that the noise is
reduced.

In addition to starring/ignoring a change, the app also offers to skip
changes. Skipping a change means that the user is asked about this
change once more when it was updated.

Within the app you can define a change query for the incoming changes.
The results are then presented one by one. For each change a decision
(star, ignore or skip) has to be made to go to the next change.
Starring/ignoring a change can be done by swiping the change to the
right/left side. In addition there are buttons to trigger starring,
ignoring and skipping a change.

The main sorting screen provides the information that is most relevant
to deciding whether a change is interesting:
- subject + commit message
- project, branch, topic
- age (when was the change last updated)
- owner
- patch set number
- number of positive and negative Code-Review votes
- number of comments
- number of reviewers
- positive/negative Verified votes
- whether the change is mergable
- change status if merged/abandoned

This information is presented in a very compressed way and the focus
is on the subject and the commit message.

By clicking on the bottom of the change one can also go to a detailed
change view where more information is presented, e.g. the change
number, the change link, the approvals and the list of files. This
detailed change view is zoomable.

The file diff can be seen in a unified diff view with intraline diff
highlighting. If wanted one can start reviewing the change here (see
more about review below).

All actions (star, ignore and skip) are undoable by clicking on the
undo action in the menu, so that mistakes in sorting can be easily
corrected.

Sometimes when watching a change one knows another person that is
well suited to review this change. This is why there is an add
reviewer action in the menu that allows to add another person as
reviewer. Reviewer names are auto-completed on typing.

There are also menu entries to abandon/restore and reload the current
change.

Review changes
==============

It is envisioned to present the user a change list from which he can
select a change and start reviewing it (not implemented yet).

The files are shown as unified diff with intraline diff highlighting.
You can see the unified diff for all files in a single scroll view or
page through the change file by file. While scrolling the file name is
sticky at the top of the screen.

Context lines are collapsed and can be expanded as needed.

At the bottom of the unified diff view there is an expandable panel
that presents quick-voting buttons for the Code-Review label.

Pressing on a quick-voting button leads to a publish screen where a
summary message can be provided and voting on other labels is
possible. By clicking on the 'Publish' button the review is sent to
the server. If Code-Review+2 is selected a 'Publish and Submit' button
appears that allows to submit the change right away.

Inline commenting is not implemented yet.

The goal is to allow review of small/trivial changes, but not to
support review of arbitrary large changes.

Settings
========

A setting screens allows to configure the change query for the
incoming changes, the star label and the server configuration.

The star label will be used to mark changes as interesting or as
skipped.

It is possible to configure multiple servers, each with URL, user and
password.

For googlesource.com servers there is support to easily import the
user credentials by copy and paste.

The configuration is stored in the app preferences and the
configuration values are encrypted.

When starting the app for the first time there is a short introduction
that explains the basic functions and asks for the server connection.

Licenses
========
The 'Review It!?' app is licensed under the Apache License 2.0.
Executable distributions also include other software components that
are provided under additional licenses.

To connect to the Gerrit server the app uses the
gerrit-rest-java-client [1] by Urs Wolfer which is available under the
Apache License, Version 2.0.

The used icons are taken from the Material icons set [2].

The Diffy logo was created by Sara Owens (http://inkylabs.com/).

Disclaimer
==========

This app is still a prototype and not fully functional. E.g. the
ignore, skip and star actions are not implemented yet and don't have
any effect.

The ignore, skip and star functionality requires a server that
supports labeled stars and runs notedb.

Here some things that were not done for this initial version:
- implement change list for starting reviews
- implement ignore/skip/star
- more info on the detailed change screen
  * summary comments
  * hashtags
  * related changes
- implement paging for approvals on detailed change screen similar to
  how it is done for the files (implement a custom widget for the
  paging functionality that can be reused)
- allow to display more details as icons in change box
  * number of files
  * change size
  * number of changes in the same topic
  * icon for other labels (abbreviated label name overlayed with small
    thumb up/down icon in lower right corner), e.g. for Verified
- when swiping change box to left/right, in addition to changing the
  color of the change box, show an overlayed star/ignore image
  (relying on coloring only is bad for color blind people)
- add commit message to file list
- make bottom panel in unified diff pullable
- show commit message in Abandon/Restore fragments (as it is already
  done in PostReviewFragment)
- the configuration should allow to store multiple query
  configurations + the user should be able to switch between them
  quickly
- make buttons in setting screens blue
- allow to expand the one sentence help text describing the app to get
  a detailed description of the app (basically provide more info from
  what is contained in this commit message)
- the user should be able to configure favourite reviewers that can be
  added by a single click
- in the configuration there should be a button to create/update a My
  menu entry on the server that opens a query that shows all the
  changes starred by the app
- feedback button
- automatically check whether the server version is compatible with
  the app
- notifications when there are new query results
- implement proper build without committing the used libraries
- support anonymous try-out mode that only allows to page through the
  changes without any actions
- remember missing avatars and don't try to download them again and
  again (e.g. if avatars are disabled on the server)

[1] https://github.com/uwolfer/gerrit-rest-java-client
[2] https://design.google.com/icons/

Change-Id: I6a85bb2f3c80c0a47a448474b47a977151823a95
Signed-off-by: Edwin Kempin <ekempin@google.com>
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c6cbe56
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+*.iml
+.gradle
+/local.properties
+/.idea/workspace.xml
+/.idea/libraries
+.DS_Store
+/build
+/captures
diff --git a/.idea/.name b/.idea/.name
new file mode 100644
index 0000000..2a79920
--- /dev/null
+++ b/.idea/.name
@@ -0,0 +1 @@
+reviewit
\ No newline at end of file
diff --git a/.idea/codeStyleSettings.xml b/.idea/codeStyleSettings.xml
new file mode 100644
index 0000000..c8c83db
--- /dev/null
+++ b/.idea/codeStyleSettings.xml
@@ -0,0 +1,253 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectCodeStyleSettingsManager">
+    <option name="PER_PROJECT_SETTINGS">
+      <value>
+        <option name="AUTODETECT_INDENTS" value="false" />
+        <option name="OTHER_INDENT_OPTIONS">
+          <value>
+            <option name="INDENT_SIZE" value="2" />
+            <option name="CONTINUATION_INDENT_SIZE" value="4" />
+            <option name="TAB_SIZE" value="2" />
+            <option name="USE_TAB_CHARACTER" value="false" />
+            <option name="SMART_TABS" value="false" />
+            <option name="LABEL_INDENT_SIZE" value="0" />
+            <option name="LABEL_INDENT_ABSOLUTE" value="false" />
+            <option name="USE_RELATIVE_INDENTS" value="false" />
+          </value>
+        </option>
+        <option name="LINE_SEPARATOR" value="&#10;" />
+        <option name="CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND" value="99" />
+        <option name="NAMES_COUNT_TO_USE_IMPORT_ON_DEMAND" value="99" />
+        <option name="PACKAGES_TO_USE_IMPORT_ON_DEMAND">
+          <value />
+        </option>
+        <option name="IMPORT_LAYOUT_TABLE">
+          <value>
+            <package name="android" withSubpackages="true" static="false" />
+            <emptyLine />
+            <package name="com" withSubpackages="true" static="false" />
+            <emptyLine />
+            <package name="junit" withSubpackages="true" static="false" />
+            <emptyLine />
+            <package name="net" withSubpackages="true" static="false" />
+            <emptyLine />
+            <package name="org" withSubpackages="true" static="false" />
+            <emptyLine />
+            <package name="java" withSubpackages="true" static="false" />
+            <emptyLine />
+            <package name="javax" withSubpackages="true" static="false" />
+            <emptyLine />
+            <package name="" withSubpackages="true" static="false" />
+            <emptyLine />
+            <package name="" withSubpackages="true" static="true" />
+            <emptyLine />
+          </value>
+        </option>
+        <option name="RIGHT_MARGIN" value="80" />
+        <option name="WRAP_WHEN_TYPING_REACHES_RIGHT_MARGIN" value="true" />
+        <AndroidXmlCodeStyleSettings>
+          <option name="USE_CUSTOM_SETTINGS" value="true" />
+        </AndroidXmlCodeStyleSettings>
+        <Objective-C-extensions>
+          <option name="GENERATE_INSTANCE_VARIABLES_FOR_PROPERTIES" value="ASK" />
+          <option name="RELEASE_STYLE" value="IVAR" />
+          <option name="TYPE_QUALIFIERS_PLACEMENT" value="BEFORE" />
+          <file>
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Import" />
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Macro" />
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Typedef" />
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Enum" />
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Constant" />
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Global" />
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Struct" />
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="FunctionPredecl" />
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Function" />
+          </file>
+          <class>
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Property" />
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Synthesize" />
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InitMethod" />
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="StaticMethod" />
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InstanceMethod" />
+            <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="DeallocMethod" />
+          </class>
+          <extensions>
+            <pair source="cpp" header="h" />
+            <pair source="c" header="h" />
+          </extensions>
+        </Objective-C-extensions>
+        <XML>
+          <option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
+        </XML>
+        <codeStyleSettings language="JAVA">
+          <indentOptions>
+            <option name="INDENT_SIZE" value="2" />
+            <option name="CONTINUATION_INDENT_SIZE" value="4" />
+            <option name="TAB_SIZE" value="2" />
+          </indentOptions>
+        </codeStyleSettings>
+        <codeStyleSettings language="XML">
+          <option name="FORCE_REARRANGE_MODE" value="1" />
+          <indentOptions>
+            <option name="INDENT_SIZE" value="2" />
+            <option name="CONTINUATION_INDENT_SIZE" value="2" />
+            <option name="TAB_SIZE" value="2" />
+          </indentOptions>
+          <arrangement>
+            <rules>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>xmlns:android</NAME>
+                      <XML_NAMESPACE>Namespace:</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                </rule>
+              </section>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>xmlns:.*</NAME>
+                      <XML_NAMESPACE>Namespace:</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                  <order>BY_NAME</order>
+                </rule>
+              </section>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>.*:id</NAME>
+                      <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                </rule>
+              </section>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>.*:name</NAME>
+                      <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                </rule>
+              </section>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>name</NAME>
+                      <XML_NAMESPACE>^$</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                </rule>
+              </section>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>style</NAME>
+                      <XML_NAMESPACE>^$</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                </rule>
+              </section>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>.*</NAME>
+                      <XML_NAMESPACE>^$</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                  <order>BY_NAME</order>
+                </rule>
+              </section>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>.*:layout_width</NAME>
+                      <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                </rule>
+              </section>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>.*:layout_height</NAME>
+                      <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                </rule>
+              </section>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>.*:layout_.*</NAME>
+                      <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                  <order>BY_NAME</order>
+                </rule>
+              </section>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>.*:width</NAME>
+                      <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                  <order>BY_NAME</order>
+                </rule>
+              </section>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>.*:height</NAME>
+                      <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                  <order>BY_NAME</order>
+                </rule>
+              </section>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>.*</NAME>
+                      <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                  <order>BY_NAME</order>
+                </rule>
+              </section>
+              <section>
+                <rule>
+                  <match>
+                    <AND>
+                      <NAME>.*</NAME>
+                      <XML_NAMESPACE>.*</XML_NAMESPACE>
+                    </AND>
+                  </match>
+                  <order>BY_NAME</order>
+                </rule>
+              </section>
+            </rules>
+          </arrangement>
+        </codeStyleSettings>
+      </value>
+    </option>
+    <option name="USE_PER_PROJECT_SETTINGS" value="true" />
+  </component>
+</project>
\ No newline at end of file
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
new file mode 100644
index 0000000..96cc43e
--- /dev/null
+++ b/.idea/compiler.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="CompilerConfiguration">
+    <resourceExtensions />
+    <wildcardResourcePatterns>
+      <entry name="!?*.java" />
+      <entry name="!?*.form" />
+      <entry name="!?*.class" />
+      <entry name="!?*.groovy" />
+      <entry name="!?*.scala" />
+      <entry name="!?*.flex" />
+      <entry name="!?*.kt" />
+      <entry name="!?*.clj" />
+      <entry name="!?*.aj" />
+    </wildcardResourcePatterns>
+    <annotationProcessing>
+      <profile default="true" name="Default" enabled="false">
+        <processorPath useClasspath="true" />
+      </profile>
+    </annotationProcessing>
+  </component>
+</project>
\ No newline at end of file
diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml
new file mode 100644
index 0000000..e7bedf3
--- /dev/null
+++ b/.idea/copyright/profiles_settings.xml
@@ -0,0 +1,3 @@
+<component name="CopyrightManager">
+  <settings default="" />
+</component>
\ No newline at end of file
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
new file mode 100644
index 0000000..39139a6
--- /dev/null
+++ b/.idea/gradle.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="GradleSettings">
+    <option name="linkedExternalProjectsSettings">
+      <GradleProjectSettings>
+        <option name="distributionType" value="LOCAL" />
+        <option name="externalProjectPath" value="$PROJECT_DIR$" />
+        <option name="gradleHome" value="$APPLICATION_HOME_DIR$/gradle/gradle-2.8" />
+        <option name="gradleJvm" value="1.8" />
+        <option name="modules">
+          <set>
+            <option value="$PROJECT_DIR$" />
+            <option value="$PROJECT_DIR$/app" />
+          </set>
+        </option>
+      </GradleProjectSettings>
+    </option>
+  </component>
+</project>
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..1a3eaff
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="EntryPointsManager">
+    <entry_points version="2.0" />
+  </component>
+  <component name="NullableNotNullManager">
+    <option name="myDefaultNullable" value="android.support.annotation.Nullable" />
+    <option name="myDefaultNotNull" value="android.support.annotation.NonNull" />
+    <option name="myNullables">
+      <value>
+        <list size="4">
+          <item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.Nullable" />
+          <item index="1" class="java.lang.String" itemvalue="javax.annotation.Nullable" />
+          <item index="2" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.Nullable" />
+          <item index="3" class="java.lang.String" itemvalue="android.support.annotation.Nullable" />
+        </list>
+      </value>
+    </option>
+    <option name="myNotNulls">
+      <value>
+        <list size="4">
+          <item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.NotNull" />
+          <item index="1" class="java.lang.String" itemvalue="javax.annotation.Nonnull" />
+          <item index="2" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.NonNull" />
+          <item index="3" class="java.lang.String" itemvalue="android.support.annotation.NonNull" />
+        </list>
+      </value>
+    </option>
+  </component>
+  <component name="ProjectLevelVcsManager" settingsEditedManually="false">
+    <OptionsSetting value="true" id="Add" />
+    <OptionsSetting value="true" id="Remove" />
+    <OptionsSetting value="true" id="Checkout" />
+    <OptionsSetting value="true" id="Update" />
+    <OptionsSetting value="true" id="Status" />
+    <OptionsSetting value="true" id="Edit" />
+    <ConfirmationsSetting value="0" id="Add" />
+    <ConfirmationsSetting value="0" id="Remove" />
+  </component>
+  <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="1.7" project-jdk-type="JavaSDK">
+    <output url="file://$PROJECT_DIR$/build/classes" />
+  </component>
+  <component name="ProjectType">
+    <option name="id" value="Android" />
+  </component>
+</project>
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..8426bfc
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectModuleManager">
+    <modules>
+      <module fileurl="file://$PROJECT_DIR$/app/app.iml" filepath="$PROJECT_DIR$/app/app.iml" />
+      <module fileurl="file://$PROJECT_DIR$/reviewit.iml" filepath="$PROJECT_DIR$/reviewit.iml" />
+    </modules>
+  </component>
+</project>
\ No newline at end of file
diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml
new file mode 100644
index 0000000..7f68460
--- /dev/null
+++ b/.idea/runConfigurations.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="RunConfigurationProducerService">
+    <option name="ignoredProducers">
+      <set>
+        <option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
+        <option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
+        <option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />
+      </set>
+    </option>
+  </component>
+</project>
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="$PROJECT_DIR$" vcs="Git" />
+  </component>
+</project>
\ No newline at end of file
diff --git a/CONTRIBUTING b/CONTRIBUTING
new file mode 100644
index 0000000..2b9d729
--- /dev/null
+++ b/CONTRIBUTING
@@ -0,0 +1,71 @@
+Short Version:
+
+ - Make small logical changes.
+ - Provide a meaningful commit message.
+ - Make sure all code is under the Apache License, 2.0.
+ - Publish your changes for review:
+
+   git push https://gerrit.googlesource.com/apps/reviewit HEAD:refs/for/master
+
+
+Long Version:
+
+(1) Make separate commits for logically separate changes.
+
+Unless your patch is really trivial, you should not be sending
+out a patch that was generated between your working tree and your
+commit head.  Instead, always make a commit with complete commit
+message and generate a series of patches from your repository.
+It is a good discipline.
+
+Describe the technical detail of the change(s).
+
+If your description starts to get too long, that's a sign that you
+probably need to split up your commit to finer grained pieces.
+
+
+(2) Check the license
+
+Gerrit Code Review is licensed under the Apache License, 2.0.
+
+Because of this licensing model *every* file within the project
+*must* list the license that covers it in the header of the file.
+Any new contributions to an existing file *must* be submitted under
+the current license of that file.  Any new files *must* clearly
+indicate which license they are provided under in the file header.
+
+Please verify that you are legally allowed and willing to submit your
+changes under the license covering each file *prior* to submitting
+your patch.  It is virtually impossible to remove a patch once it
+has been applied and pushed out.
+
+
+(3) Sending your patches.
+
+Do not email your patches to anyone.
+
+Instead, login to the Gerrit Code Review tool at:
+
+  https://gerrit-review.googlesource.com/
+
+Ensure you have completed one of the necessary contributor
+agreements, providing documentation to the project maintainers that
+they have right to redistribute your work under the Apache License:
+
+  https://gerrit-review.googlesource.com/#/settings/agreements
+
+Ensure you have obtained a unique HTTP password to identify yourself:
+
+  https://gerrit-review.googlesource.com/#/settings/http-password
+
+Push your patches over HTTPS to the review server, possibly through
+a remembered remote to make this easier in the future:
+
+   git config remote.review.url https://gerrit.googlesource.com/apps/reviewit
+   git config remote.review.push HEAD:refs/for/master
+
+   git push review
+
+You will be automatically emailed a copy of your commits, and any
+comments made by the project maintainers.
+
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..d645695
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,202 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
diff --git a/README b/README
new file mode 100644
index 0000000..223e745
--- /dev/null
+++ b/README
@@ -0,0 +1,124 @@
+# Review It? - Android application for Gerrit
+
+[Gerrit](https://www.gerritcodereview.com) provides web based code review and
+repository management for the Git version control system. The Review It? app is
+an Android app for Gerrit that allows sorting of incoming changes and review of
+small/trivial changes.
+
+The app suppports a 2-step review process:
+
+1. Sort the incoming changes
+2. Do review on the selected changes
+
+Some users may just want to do reviews and skip the first step.
+
+This is not an official Google product.
+
+## Sorting of incoming changes
+
+When working with Gerrit it is a common workflow that reviewers are not always
+explicitly assigned, but that committers and contributors watch the incoming
+changes and choose those changes for review that are interesting to them.
+
+Watching incoming changes can be done in different ways, e.g:
+
+* manually go through the list of open changes
+* register project watches to get email notifications about new changes
+
+These approaches have some problems in common when the number of incoming
+changes gets too high:
+
+* some changes of interest are not noticed (e.g. get lost in the mail inbox)
+* at the time of notification there may be no time for immediate review, and at
+  the moment when there is time to review, some of the interesting changes have
+  been forgotten
+* changes that are not interesting popup again and again whenever they are
+  updated
+
+The 'ReviewIt?' Android app tries to solve these problems by offering a simple
+way to sort incoming changes:
+
+* mark interesting changes to review them later (by putting a labeled star on
+  them)
+* mark non-interesting changes as ignored
+
+The actual review of the changes is done later, either by using the Gerrit web
+UI or by using the review functionality of the Review It? app. The idea is that
+the sorting of incoming changes allows users to stay updated about their project
+while they are not in office (see new changes and sort them), but the code
+review is done only later when there is time for it. Also some large changes may
+not be reviewable on the small display of a phone.
+
+The changes that have been starred are accessible by a change query or a Gerrit
+dashboard, and hence they can be easily found when there is time to do reviews.
+The app should configure an entry for this dashboard in the Gerrit menu
+automatically (e.g. ‘My’ > ‘Review It’).
+
+Updates for ignored changes are filtered out so that the noise is reduced.
+In addition to starring/ignoring a change, the app also offers to skip changes.
+Skipping a change means that the user is asked about this change once more when
+it was updated.
+
+Within the app the user can define a change query for the incoming changes. The
+results are then presented one by one. For each change a decision (star, ignore
+or skip) has to be made to go to the next change.
+
+Starring/ignoring a change can be done by swiping the change to the right/left
+side. In addition there are buttons to trigger starring, ignoring and skipping a
+change.
+
+The main app screen provides the information that is most relevant to deciding
+whether a change is interesting:
+
+* subject + commit message
+* project, branch, topic
+* age (when was the change last updated)
+* owner
+* patch set number, number of positive and negative Code-Review votes
+* number of comments
+* number of reviewers
+* positive/negative Verified votes (green/red background)
+* whether the change is mergeable (orange background)
+
+This information is presented in a very compressed way and the focus is on the
+subject and the commit message.
+
+All actions (star, ignore and skip) are undoable by clicking on the undo action
+in the menu, so that mistakes in sorting can be easily corrected.
+
+Sometimes when watching a change one knows another person that is well suited to
+review this change. This is why there is an add reviewer action in the menu that
+allows to add another person as reviewer. Reviewer names are auto-completed on
+typing.
+
+There is also a menu entry to abandon the current change if it is no longer
+needed.
+
+By clicking on the bottom of the change one can go to a detailed change view
+where more information is presented, e.g. the change number, the change link,
+the approvals and the list of files. This detailed change view is zoomable.
+
+The diff for all files can be seen in one unified diff view.
+
+The file diffs are presented in a scroll view where the header with the file
+name of the currently viewed file diff is sticky at the top of the screen.
+
+Skipped context lines can be expanded.
+
+## Reviewing (small) changes
+
+This is not implemented yet, but it is envisioned to show a list of changes
+(either those starred by the sorting step or all incoming changes) and then
+allow the user to select a change for review. This leads to the view with the
+unified diff of all changed files and at the end of it there will be voting
+buttons to approve or reject the change.
+
+## Contribute
+
+Contributions are welcome!
+
+Please read the [contribution
+guidelines](https://gerrit.googlesource.com/apps/reviewit/+/master/CONTRIBUTING).
+
+Note that we do not accept Pull Requests via the Github mirror.
+
diff --git a/app/.gitignore b/app/.gitignore
new file mode 100644
index 0000000..796b96d
--- /dev/null
+++ b/app/.gitignore
@@ -0,0 +1 @@
+/build
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..e6db14f
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,32 @@
+apply plugin: 'com.android.application'
+
+android {
+    compileSdkVersion 23
+    buildToolsVersion "23.0.2"
+
+    defaultConfig {
+        applicationId "com.google.reviewit"
+        minSdkVersion 14
+        targetSdkVersion 23
+        versionCode 1
+        versionName "1.0"
+    }
+    buildTypes {
+        release {
+            minifyEnabled false
+            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+        }
+    }
+}
+
+dependencies {
+    compile fileTree(include: ['*.jar'], dir: 'libs')
+    testCompile 'junit:junit:4.12'
+    compile files('libs/gerrit-rest-java-client-0.8.8-SNAPSHOT.jar')
+    compile files('libs/guava-19.0-rc2.jar')
+    compile files('libs/httpclient-android-4.3.5.1.jar')
+    compile files('libs/gson-2.3.1.jar')
+    compile 'com.android.support:appcompat-v7:23.1.1'
+    compile 'com.android.support:design:23.1.1'
+    compile 'com.android.support:support-v4:23.1.1'
+}
diff --git a/app/libs/gerrit-rest-java-client-0.8.8-SNAPSHOT.jar b/app/libs/gerrit-rest-java-client-0.8.8-SNAPSHOT.jar
new file mode 120000
index 0000000..1fbf460
--- /dev/null
+++ b/app/libs/gerrit-rest-java-client-0.8.8-SNAPSHOT.jar
@@ -0,0 +1 @@
+../../third_party/gerrit-rest-java-client-0.8.8-SNAPSHOT.jar
\ No newline at end of file
diff --git a/app/libs/gson-2.3.1.jar b/app/libs/gson-2.3.1.jar
new file mode 120000
index 0000000..50ba0d8
--- /dev/null
+++ b/app/libs/gson-2.3.1.jar
@@ -0,0 +1 @@
+../../third_party/gson-2.3.1.jar
\ No newline at end of file
diff --git a/app/libs/guava-19.0-rc2.jar b/app/libs/guava-19.0-rc2.jar
new file mode 120000
index 0000000..b5a190e
--- /dev/null
+++ b/app/libs/guava-19.0-rc2.jar
@@ -0,0 +1 @@
+../../third_party/guava-19.0-rc2.jar
\ No newline at end of file
diff --git a/app/libs/httpclient-android-4.3.5.1.jar b/app/libs/httpclient-android-4.3.5.1.jar
new file mode 120000
index 0000000..8f7fca1
--- /dev/null
+++ b/app/libs/httpclient-android-4.3.5.1.jar
@@ -0,0 +1 @@
+../../third_party/httpclient-android-4.3.5.1.jar
\ No newline at end of file
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro
new file mode 100644
index 0000000..de1acfa
--- /dev/null
+++ b/app/proguard-rules.pro
@@ -0,0 +1,17 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in Android/Sdk/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the proguardFiles
+# directive in build.gradle.
+#
+# For more details, see
+#   http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+#   public *;
+#}
diff --git a/app/src/androidTest/java/com/google/reviewit/ApplicationTest.java b/app/src/androidTest/java/com/google/reviewit/ApplicationTest.java
new file mode 100644
index 0000000..4cc74ad
--- /dev/null
+++ b/app/src/androidTest/java/com/google/reviewit/ApplicationTest.java
@@ -0,0 +1,28 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.app.Application;
+import android.test.ApplicationTestCase;
+
+/**
+ * <a href="http://d.android.com/tools/testing/testing_android.html">
+ * Testing Fundamentals</a>
+ */
+public class ApplicationTest extends ApplicationTestCase<Application> {
+  public ApplicationTest() {
+    super(Application.class);
+  }
+}
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..75ab53b
--- /dev/null
+++ b/app/src/main/AndroidManifest.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+          package="com.google.reviewit">
+
+    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
+    <uses-permission android:name="android.permission.INTERNET"/>
+
+    <application
+        android:name=".app.ReviewItApp"
+        android:allowBackup="true"
+        android:icon="@drawable/review_it"
+        android:label="@string/app_name"
+        android:supportsRtl="true"
+        android:theme="@style/AppTheme">
+        <activity
+            android:name=".MainActivity"
+            android:label="@string/app_name"
+            android:theme="@style/AppTheme.NoActionBar">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN"/>
+                <category android:name="android.intent.category.LAUNCHER"/>
+            </intent-filter>
+        </activity>
+    </application>
+
+</manifest>
diff --git a/app/src/main/java/com/google/reviewit/AbandonFragment.java b/app/src/main/java/com/google/reviewit/AbandonFragment.java
new file mode 100644
index 0000000..34625e8
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/AbandonFragment.java
@@ -0,0 +1,100 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.app.Fragment;
+import android.os.AsyncTask;
+import android.os.Bundle;
+import android.support.annotation.LayoutRes;
+import android.view.View;
+
+import com.google.gerrit.extensions.restapi.RestApiException;
+import com.google.reviewit.app.Change;
+import com.urswolfer.gerrit.client.rest.http.HttpStatusException;
+
+/**
+ * Fragment to abandon a change.
+ */
+public class AbandonFragment extends BaseFragment
+    implements OnBackPressedAware {
+  private static final String ORIGIN =
+      "com.google.reviewit.AbandonFragment.ORIGIN";
+
+  public static AbandonFragment create(Class<? extends Fragment> origin) {
+    AbandonFragment fragment = new AbandonFragment();
+    Bundle bundle = new Bundle();
+    bundle.putSerializable(ORIGIN, origin);
+    fragment.setArguments(bundle);
+    return fragment;
+  }
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_abandon;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    Change change = getApp().getActionHandler().getCurrentChange();
+    setTitle(getString(R.string.abandon_change_title, change.info._number));
+    init(change);
+  }
+
+  private void init(final Change change) {
+    v(R.id.abandonButton).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(final View v) {
+        v.setEnabled(false);
+        v.setBackgroundColor(widgetUtil.color(R.color.buttonDisabled));
+        new AsyncTask<Change, Void, String>() {
+          @Override
+          protected String doInBackground(Change... changes) {
+            Change change = changes[0];
+            try {
+              change.abandon(textOf(R.id.abandonMessageInput).trim());
+              return null;
+            } catch (RestApiException e) {
+              if (e instanceof HttpStatusException) {
+                HttpStatusException se = (HttpStatusException) e;
+                return getString(R.string.abandon_error, se.getStatusCode(),
+                    se.getStatusText());
+              } else {
+                return e.getMessage();
+              }
+            }
+          }
+
+          protected void onPostExecute(String errorMsg) {
+            if (errorMsg != null) {
+              v.setEnabled(true);
+              v.setBackgroundColor(widgetUtil.color(R.color.button));
+              widgetUtil.showError(errorMsg);
+            } else {
+              display(SortChangesFragment.class);
+            }
+          }
+        }.execute(change);
+      }
+    });
+  }
+
+  @Override
+  public boolean onBackPressed() {
+    display((Class<? extends Fragment>) getArguments().get(ORIGIN));
+    return true;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/AddReviewerFragment.java b/app/src/main/java/com/google/reviewit/AddReviewerFragment.java
new file mode 100644
index 0000000..c53071c
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/AddReviewerFragment.java
@@ -0,0 +1,265 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.app.Fragment;
+import android.content.Context;
+import android.os.AsyncTask;
+import android.os.Bundle;
+import android.support.annotation.LayoutRes;
+import android.util.Log;
+import android.util.TypedValue;
+import android.view.KeyEvent;
+import android.view.inputmethod.EditorInfo;
+import android.widget.ArrayAdapter;
+import android.widget.AutoCompleteTextView;
+import android.widget.Filter;
+import android.widget.Filterable;
+import android.widget.ImageView;
+import android.widget.TableLayout;
+import android.widget.TableRow;
+import android.widget.TextView;
+
+import com.google.gerrit.extensions.common.AccountInfo;
+import com.google.gerrit.extensions.restapi.RestApiException;
+import com.google.reviewit.app.Change;
+import com.google.reviewit.util.ChangeUtil;
+import com.google.reviewit.widget.ChangeBox;
+import com.google.reviewit.util.FormatUtil;
+import com.google.reviewit.util.WidgetUtil;
+import com.urswolfer.gerrit.client.rest.http.HttpStatusException;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.List;
+
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapTableLayout;
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapTableRowLayout;
+import static com.google.reviewit.util.LayoutUtil.wrapTableRowLayout;
+
+/**
+ * Fragment to add a reviewer to a change.
+ * On typing reviewer names are auto-completed.
+ */
+public class AddReviewerFragment extends BaseFragment
+    implements OnBackPressedAware {
+  private static final String TAG = AddReviewerFragment.class.getName();
+  private static final String ORIGIN =
+      "com.google.reviewit.AddReviewerFragment.ORIGIN";
+
+  public static AddReviewerFragment create(Class<? extends Fragment> origin) {
+    AddReviewerFragment fragment = new AddReviewerFragment();
+    Bundle bundle = new Bundle();
+    bundle.putSerializable(ORIGIN, origin);
+    fragment.setArguments(bundle);
+    return fragment;
+  }
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_add_reviewer;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    Change change = getApp().getActionHandler().getCurrentChange();
+    initInputField(change);
+    try {
+      displayReviewers(change);
+      displayCCs(change);
+      ChangeUtil.colorBackground(root, change);
+      ((ChangeBox) v(R.id.changeBox)).display(getApp(), change);
+    } catch (Throwable t) {
+      Log.e(TAG, "Failed to display change", t);
+      display(ErrorFragment.create(t));
+    }
+  }
+
+  private void initInputField(final Change change) {
+    AutoCompleteTextView editText =
+        (AutoCompleteTextView) v(R.id.reviewerInput);
+    editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
+      @Override
+      public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
+        boolean handled = false;
+        if (actionId == EditorInfo.IME_ACTION_SEND) {
+          addReviewer(change, v.getText().toString());
+          handled = true;
+        }
+        return handled;
+      }
+    });
+    editText.setAdapter(new SuggestReviewerAdapter(getContext()));
+  }
+
+  private void addReviewer(Change change, final String reviewerId) {
+    new AsyncTask<Change, Void, String>() {
+      @Override
+      protected String doInBackground(Change... changes) {
+        Change change = changes[0];
+        try {
+          change.addReviewer(reviewerId);
+          return null;
+        } catch (RestApiException e) {
+          Log.w(TAG, "Adding reviewer failed", e);
+          if (e instanceof HttpStatusException) {
+            HttpStatusException se = (HttpStatusException) e;
+            return getString(R.string.add_reviewer_error, se.getStatusCode(),
+                se.getStatusText());
+          } else {
+            return e.getMessage();
+          }
+        }
+      }
+
+      protected void onPostExecute(String errorMsg) {
+        if (errorMsg != null) {
+          widgetUtil.showError(errorMsg);
+        } else {
+          AddReviewerFragment fragment = new AddReviewerFragment();
+          Bundle bundle = new Bundle();
+          bundle.putAll(getArguments());
+          fragment.setArguments(bundle);
+          display(fragment, false);
+        }
+      }
+    }.execute(change);
+  }
+
+
+  private void displayReviewers(Change change) {
+    TableLayout tl = (TableLayout) v(R.id.reviewerTable);
+    Collection<AccountInfo> reviewers = change.reviewers(false);
+    if (!reviewers.isEmpty()) {
+      for (AccountInfo reviewer : reviewers) {
+        addReviewerRow(tl, reviewer);
+      }
+    } else {
+      WidgetUtil.setText(v(R.id.reviewersLabel),
+          getString(R.string.no_reviewers));
+    }
+  }
+
+  private void displayCCs(Change change) {
+    TableLayout tl = (TableLayout) v(R.id.reviewerTable);
+    Collection<AccountInfo> ccs = change.ccs();
+    if (!ccs.isEmpty()) {
+      TableRow tr = new TableRow(getContext());
+      tr.setLayoutParams(matchAndWrapTableRowLayout());
+      TextView ccsTitle = new TextView(getContext());
+      TableRow.LayoutParams params = wrapTableRowLayout(2);
+      params.bottomMargin = widgetUtil.dpToPx(3);
+      ccsTitle.setLayoutParams(params);
+      ccsTitle.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20);
+      ccsTitle.setText(getString(R.string.ccs));
+      tr.addView(ccsTitle);
+      tl.addView(tr, matchAndWrapTableLayout());
+      for (AccountInfo cc : ccs) {
+        addReviewerRow(tl, cc);
+      }
+    }
+  }
+
+  private void addReviewerRow(TableLayout tl, AccountInfo reviewer) {
+    TableRow tr = new TableRow(getContext());
+    tr.setLayoutParams(matchAndWrapTableRowLayout());
+    ImageView avatar = new ImageView(getContext());
+    TableRow.LayoutParams layoutParams = new TableRow.LayoutParams(
+        widgetUtil.dpToPx(20), widgetUtil.dpToPx(20));
+    layoutParams.setMargins(0, 0, widgetUtil.dpToPx(5), widgetUtil.dpToPx(2));
+    avatar.setLayoutParams(layoutParams);
+
+    WidgetUtil.displayAvatar(getApp(), reviewer, avatar);
+    tr.addView(avatar);
+    TextView reviewerName = new TextView(getContext());
+    reviewerName.setLayoutParams(wrapTableRowLayout());
+    reviewerName.setText(FormatUtil.format(reviewer));
+    tr.addView(reviewerName);
+    tl.addView(tr, matchAndWrapTableLayout());
+  }
+
+  @Override
+  public boolean onBackPressed() {
+    display((Class<? extends Fragment>) getArguments().get(ORIGIN),
+        getArguments(), false);
+    return true;
+  }
+
+  private class SuggestReviewerAdapter extends ArrayAdapter<String>
+      implements Filterable {
+    private List<String> suggestions;
+
+    public SuggestReviewerAdapter(Context context) {
+      super(context, android.R.layout.simple_dropdown_item_1line);
+      suggestions = Collections.emptyList();
+    }
+
+    @Override
+    public int getCount() {
+      return suggestions.size();
+    }
+
+    @Override
+    public String getItem(int index) {
+      return suggestions.get(index);
+    }
+
+    @Override
+    public Filter getFilter() {
+      return new Filter() {
+        @Override
+        protected FilterResults performFiltering(CharSequence constraint) {
+          FilterResults filterResults = new FilterResults();
+          if (constraint != null) {
+            suggestions = suggest(constraint.toString());
+            filterResults.values = suggestions;
+            filterResults.count = suggestions.size();
+          }
+          return filterResults;
+        }
+
+        @Override
+        protected void publishResults(
+            CharSequence constraint, FilterResults results) {
+          if (results != null && results.count > 0) {
+            notifyDataSetChanged();
+          } else {
+            notifyDataSetInvalidated();
+          }
+        }
+      };
+    }
+
+    private List<String> suggest(String text) {
+      List<String> suggestions = new ArrayList<>();
+      try {
+        for (AccountInfo a
+            : getApp().getApi()
+                .accounts()
+                .suggestAccounts(text)
+                .withLimit(10)
+                .get()) {
+          suggestions.add(FormatUtil.format(a));
+        }
+      } catch (RestApiException e) {
+        Log.e(TAG, "Suggesting reviewers failed", e);
+      }
+      return suggestions;
+    }
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/AvatarTask.java b/app/src/main/java/com/google/reviewit/AvatarTask.java
new file mode 100644
index 0000000..9369582
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/AvatarTask.java
@@ -0,0 +1,113 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.graphics.Bitmap;
+import android.graphics.BitmapFactory;
+import android.graphics.Canvas;
+import android.graphics.Paint;
+import android.graphics.PorterDuff;
+import android.graphics.PorterDuffXfermode;
+import android.graphics.Rect;
+import android.graphics.RectF;
+import android.util.Log;
+import android.view.View;
+import android.widget.ImageView;
+
+import com.google.gerrit.extensions.common.AccountInfo;
+import com.google.gerrit.extensions.restapi.BinaryResult;
+import com.google.gerrit.extensions.restapi.RestApiException;
+import com.google.reviewit.app.ReviewItApp;
+import com.google.reviewit.util.ObservableAsynTask;
+import com.urswolfer.gerrit.client.rest.accounts.Accounts;
+import com.urswolfer.gerrit.client.rest.http.HttpStatusException;
+
+import java.io.ByteArrayOutputStream;
+import java.io.IOException;
+
+/**
+ * Background task to retrieve and show an avatar image.
+ * If available the avatar image is taken from the avatar cache, if not it
+ * is downloaded and stored in the avatar cache.
+ */
+public class AvatarTask extends ObservableAsynTask<AccountInfo, Void, Bitmap> {
+  private static final String TAG = AvatarTask.class.getName();
+
+  private final ReviewItApp app;
+  private final ImageView avatar;
+
+  public AvatarTask(ReviewItApp app, ImageView avatar) {
+    this.avatar = avatar;
+    this.app = app;
+  }
+
+  @Override
+  protected Bitmap doInBackground(AccountInfo... accounts) {
+    AccountInfo account = accounts[0];
+
+    byte[] bytes = app.getAvatarCache().getIfExists(account);
+    if (bytes == null) {
+      try {
+        Log.d(TAG, "Download avatar for " + account._accountId);
+        BinaryResult r = ((Accounts) app.getApi()
+            .accounts())
+            .id(account._accountId)
+            .downloadAvatar(50);
+
+        ByteArrayOutputStream out = new ByteArrayOutputStream();
+        r.writeTo(out);
+        bytes = out.toByteArray();
+        app.getAvatarCache().putAvatar(account, bytes);
+      } catch (HttpStatusException e) {
+        if (e.getStatusCode() != 404) {
+          Log.w(TAG, "Failed to download avatar for " + account._accountId
+              + ": " + e.getStatusCode() + " " + e.getStatusText());
+        }
+        return null;
+      } catch (RestApiException e) {
+        Log.w(TAG, "Failed to download avatar for " + account._accountId, e);
+        return null;
+      } catch (IOException e) {
+        Log.w(TAG, "Failed to read avatar for " + account._accountId, e);
+        return null;
+      }
+    }
+    Bitmap bitmap = BitmapFactory.decodeByteArray(bytes, 0, bytes.length);
+    return getRoundedCornerBitmap(bitmap, 10);
+  }
+
+  protected void postExecute(Bitmap result) {
+    if (result != null) {
+      avatar.setImageBitmap(result);
+    } else {
+      avatar.setVisibility(View.GONE);
+    }
+  }
+
+  private static Bitmap getRoundedCornerBitmap(Bitmap bitmap, float pixels) {
+    Bitmap output = Bitmap.createBitmap(
+        bitmap.getWidth(), bitmap.getHeight(), Bitmap.Config.ARGB_8888);
+    Canvas canvas = new Canvas(output);
+    Paint paint = new Paint();
+    Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
+    RectF rectF = new RectF(rect);
+    paint.setAntiAlias(true);
+    canvas.drawARGB(0, 0, 0, 0);
+    canvas.drawRoundRect(rectF, pixels, pixels, paint);
+    paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
+    canvas.drawBitmap(bitmap, rect, rect, paint);
+    return output;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/BaseFragment.java b/app/src/main/java/com/google/reviewit/BaseFragment.java
new file mode 100644
index 0000000..9babd93
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/BaseFragment.java
@@ -0,0 +1,176 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.app.Fragment;
+import android.app.FragmentManager;
+import android.app.FragmentTransaction;
+import android.content.Context;
+import android.net.ConnectivityManager;
+import android.net.NetworkInfo;
+import android.os.Build;
+import android.os.Bundle;
+import android.support.annotation.IdRes;
+import android.support.annotation.LayoutRes;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.view.Window;
+import android.view.inputmethod.InputMethodManager;
+import android.widget.TextView;
+
+import com.google.reviewit.app.ActionHandler;
+import com.google.reviewit.app.ReviewItApp;
+import com.google.reviewit.util.TaskObserver;
+import com.google.reviewit.util.WidgetUtil;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public abstract class BaseFragment extends Fragment {
+  protected View root;
+  protected WidgetUtil widgetUtil;
+
+  @Override
+  public final View onCreateView(
+      LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
+    widgetUtil = new WidgetUtil(getActivity());
+    reset(container);
+    root = inflater.inflate(getLayout(), container, false);
+    return root;
+  }
+
+  private void reset(ViewGroup container) {
+    container.removeAllViews();
+
+    MainActivity activity = ((MainActivity) getActivity());
+    activity.select(getClass());
+
+    if (activity.getSupportActionBar() != null) {
+      activity.getSupportActionBar().show();
+    }
+
+    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
+      getWindow().setStatusBarColor(widgetUtil.color(R.color.black));
+    }
+
+    // hide keyboard if it is open
+    View view = getActivity().getCurrentFocus();
+    if (view != null) {
+      ((InputMethodManager) getActivity().getSystemService(
+          Context.INPUT_METHOD_SERVICE))
+              .hideSoftInputFromWindow(view.getWindowToken(), 0);
+    }
+
+    TaskObserver.clear();
+  }
+
+  protected abstract @LayoutRes int getLayout();
+
+  protected View v(@IdRes int id) {
+    return root.findViewById(id);
+  }
+
+  protected View[] v(@IdRes int id, @IdRes int... moreIds) {
+    List<View> views = new ArrayList<>(moreIds.length + 1);
+    views.add(v(id));
+    for (@IdRes int yaId : moreIds) {
+      views.add(v(yaId));
+    }
+    return views.toArray(new View[views.size()]);
+  }
+
+  protected ViewGroup vg(@IdRes int id) {
+    return (ViewGroup) root.findViewById(id);
+  }
+
+  protected TextView tv(@IdRes int id) {
+    return (TextView) root.findViewById(id);
+  }
+
+  protected String textOf(@IdRes int id) {
+    return tv(id).getText().toString();
+  }
+
+  protected void setTitle(String title) {
+    getActivity().setTitle(title);
+  }
+
+  @Override
+  public Context getContext() {
+    return root.getContext();
+  }
+
+  protected Window getWindow() {
+    return getActivity().getWindow();
+  }
+
+  protected ReviewItApp getApp() {
+    return ((ReviewItApp) getActivity().getApplication());
+  }
+
+  protected ActionHandler getActionHandler() {
+    return getApp().getActionHandler();
+  }
+
+  public void display(
+      Class<? extends Fragment> fragmentClass, Bundle bundle,
+      boolean addtoBackStack) {
+    try {
+      Fragment f = fragmentClass.newInstance();
+      if (bundle != null) {
+        f.setArguments(bundle);
+      }
+      display(f, addtoBackStack);
+    } catch (IllegalAccessException e) {
+      throw new IllegalStateException(e);
+    } catch (java.lang.InstantiationException e) {
+      throw new IllegalStateException(e);
+    }
+  }
+
+  public void display(Class<? extends Fragment> fragmentClass) {
+    display(fragmentClass, null, true);
+  }
+
+  public void display(
+      Class<? extends Fragment> fragmentClass, boolean addToBackStack) {
+    display(fragmentClass, null, addToBackStack);
+  }
+
+  public void display(Fragment fragment) {
+    display(fragment, true);
+  }
+
+  public void display(Fragment fragment, boolean addToBackStack) {
+    FragmentManager fragmentManager = getFragmentManager();
+    FragmentTransaction t = fragmentManager.beginTransaction()
+        .replace(R.id.mainFrame, fragment);
+
+    if (addToBackStack) {
+      t.addToBackStack(null);
+    }
+
+    t.commit();
+  }
+
+  protected boolean isOnline() {
+    ConnectivityManager cm =
+        (ConnectivityManager) getActivity()
+            .getSystemService(Context.CONNECTIVITY_SERVICE);
+    NetworkInfo netInfo = cm.getActiveNetworkInfo();
+    return netInfo != null && netInfo.isConnected();
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/DetailedChangeFragment.java b/app/src/main/java/com/google/reviewit/DetailedChangeFragment.java
new file mode 100644
index 0000000..bc5e54b
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/DetailedChangeFragment.java
@@ -0,0 +1,276 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.content.Intent;
+import android.graphics.Paint;
+import android.os.Bundle;
+import android.support.annotation.LayoutRes;
+import android.text.util.Linkify;
+import android.util.Log;
+import android.view.Menu;
+import android.view.MenuInflater;
+import android.view.MenuItem;
+import android.view.MotionEvent;
+import android.view.View;
+import android.widget.TableLayout;
+import android.widget.TableRow;
+import android.widget.TextView;
+
+import com.google.gerrit.extensions.client.ChangeStatus;
+import com.google.gerrit.extensions.common.FileInfo;
+import com.google.reviewit.app.ActionHandler;
+import com.google.reviewit.app.Change;
+import com.google.reviewit.util.ChangeUtil;
+import com.google.reviewit.widget.ChangeBox;
+import com.google.reviewit.util.FormatUtil;
+import com.google.reviewit.util.TaskObserver;
+import com.google.reviewit.util.WidgetUtil;
+import com.google.reviewit.widget.ApprovalsView;
+import com.google.reviewit.widget.ZoomHandler;
+
+import java.util.Map;
+import java.util.regex.Pattern;
+
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapTableLayout;
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapTableRowLayout;
+import static com.google.reviewit.util.WidgetUtil.setGone;
+import static com.google.reviewit.util.WidgetUtil.setVisible;
+
+/**
+ * Fragment to show details of a change.
+ */
+public class DetailedChangeFragment extends BaseFragment implements
+    OnBackPressedAware, DispatchTouchEventAware {
+  private static final String TAG = DetailedChangeFragment.class.getName();
+
+  private static final int PAGE_SIZE = 10;
+  private static final Pattern PATTERN_CHANGE_ID =
+      Pattern.compile("I[0-9a-f]{5,40}");
+  private static final String PART_LINK = "(?:"
+      + "[a-zA-Z0-9$_+!*'%;:@=?#/~-]"
+      + "|&(?!lt;|gt;)"
+      + "|[.,](?!(?:\\s|$))"
+      + ")";
+  private static final Pattern PATTERN_LINK = Pattern.compile(
+      "https?://"
+      + PART_LINK + "{2,}"
+      + "(?:[(]" + PART_LINK + "*" + "[)])*"
+      + PART_LINK + "*");
+  private static final Pattern PATTERN_EMAIL =
+      Pattern.compile("[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,6}",
+          Pattern.CASE_INSENSITIVE);
+
+
+  private ZoomHandler zoomHandler;
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_detailed_change;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    Change change = getApp().getActionHandler().getCurrentChange();
+    setTitle(getString(R.string.detailed_change_title, change.info._number));
+    setHasOptionsMenu(true);
+    init();
+    zoomHandler = new ZoomHandler(v(R.id.scrollContent));
+    TaskObserver.enableProgressBar(getWindow());
+
+    try {
+      ChangeUtil.colorBackground(root, change);
+      ((ChangeBox) v(R.id.changeBox)).display(getApp(), change);
+      linkify();
+      displayChangeUrl(change);
+      ((ApprovalsView) v(R.id.approvals)).displayApprovals(getApp(),
+          change.info, this);
+      displayFiles(change, 1, false);
+      // TODO show further change info, e.g. summary comments, hashtags,
+      // related changes
+    } catch (Throwable t) {
+      Log.e(TAG, "Failed to display change", t);
+      display(ErrorFragment.create(t));
+    }
+  }
+
+  @Override
+  public void dispatchTouchEvent(MotionEvent event) {
+    zoomHandler.dispatchTouchEvent(event);
+  }
+
+  private void init() {
+    TextView commitMsg = (TextView) v(R.id.commitMessage);
+    commitMsg.setLinksClickable(true);
+
+    v(R.id.reviewButton).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        display(UnifiedDiffFragment.class);
+      }
+    });
+
+    WidgetUtil.underline(tv(R.id.showMore));
+    WidgetUtil.underline(tv(R.id.showAll));
+  }
+
+  private void linkify() {
+    TextView commitMsg = tv(R.id.commitMessage);
+    Linkify.addLinks(commitMsg, PATTERN_CHANGE_ID, getServerUrl() + "#/q/");
+    Linkify.addLinks(commitMsg, PATTERN_LINK, "");
+    Linkify.addLinks(commitMsg, PATTERN_EMAIL, "");
+  }
+
+  private void displayChangeUrl(Change change) {
+    WidgetUtil.setText(v(R.id.changeUrl), change.getUrl(getServerUrl()));
+    setVisible(v(R.id.changeUrlBox));
+  }
+
+  private String getServerUrl() {
+    String serverUrl = getApp().getConfigManager().getServerConfig().url;
+    return FormatUtil.ensureSlash(serverUrl);
+  }
+
+  private void displayFiles(
+      final Change change, final int page, boolean showAll) {
+    TableLayout tl = (TableLayout) v(R.id.filesTable);
+    Map<String, FileInfo> files = change.currentRevision().files;
+    int count = 0;
+    for (Map.Entry<String, FileInfo> e : files.entrySet()) {
+      count++;
+      if (count <= (page - 1) * PAGE_SIZE) {
+        continue;
+      }
+      if (!showAll && count > page * PAGE_SIZE) {
+        break;
+      }
+      addFileRow(tl, e.getKey(), e.getValue());
+    }
+    if (!showAll && files.size() > page * PAGE_SIZE) {
+      WidgetUtil.setText(v(R.id.showAll),
+          getString(R.string.show_all, files.size() - page * PAGE_SIZE));
+      setVisible(v(R.id.fileButtons));
+      v(R.id.showAll).setOnClickListener(new View.OnClickListener() {
+        @Override
+        public void onClick(View v) {
+          displayFiles(change, page + 1, true);
+        }
+      });
+      if (files.size() > (page + 1) * PAGE_SIZE) {
+        WidgetUtil.setText(v(R.id.showMore),
+            getString(R.string.show_more, PAGE_SIZE));
+        setVisible(v(R.id.showMoreArea, R.id.showMore));
+        v(R.id.showMore).setOnClickListener(new View.OnClickListener() {
+          @Override
+          public void onClick(View v) {
+            displayFiles(change, page + 1, false);
+          }
+        });
+      } else {
+        setGone(v(R.id.showMoreArea, R.id.showMore));
+      }
+    } else {
+      setGone(v(R.id.fileButtons));
+    }
+  }
+
+  private void addFileRow(TableLayout tl, final String path, FileInfo file) {
+    TableRow tr = new TableRow(getActivity());
+    tr.setLayoutParams(matchAndWrapTableRowLayout());
+
+    tr.addView(widgetUtil.tableRowRightMargin(widgetUtil.createTextView(
+        file.status != null ? Character.toString(file.status) : "M", 11), 4));
+
+    TextView pathText = widgetUtil.createTextView(path, 11);
+    pathText.setTextColor(widgetUtil.color(R.color.hyperlink));
+    pathText.setPaintFlags(
+        pathText.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
+    pathText.setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        display(UnifiedDiffFragment.create(path));
+      }
+    });
+    tr.addView(widgetUtil.tableRowRightMargin(pathText, 4));
+
+    tr.addView(widgetUtil.createTextView(
+        FormatUtil.formatBytes(file.size), 11));
+
+    // TODO show further file infos
+
+    tl.addView(tr, matchAndWrapTableLayout());
+  }
+
+  @Override
+  public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
+    ActionHandler actionHandler = getApp().getActionHandler();
+    inflater.inflate(R.menu.menu_detailed_change, menu);
+    for (int i = 0; i < menu.size(); i++) {
+      MenuItem item = menu.getItem(i);
+      if (item.getItemId() == R.id.action_abandon) {
+        item.setVisible(actionHandler.hasCurrentChange()
+            && (actionHandler.getCurrentChange().info.status
+                  == ChangeStatus.NEW
+              || actionHandler.getCurrentChange().info.status
+                  == ChangeStatus.SUBMITTED));
+      } else if (item.getItemId() == R.id.action_restore) {
+        item.setVisible(actionHandler.hasCurrentChange()
+            && actionHandler.getCurrentChange().info.status
+                == ChangeStatus.ABANDONED);
+      }
+    }
+  }
+
+  @Override
+  public boolean onOptionsItemSelected(MenuItem item) {
+    ActionHandler actionHandler = getApp().getActionHandler();
+    switch (item.getItemId()) {
+      case R.id.action_add_reviewer:
+        display(AddReviewerFragment.create(getClass()));
+        return true;
+      case R.id.action_abandon:
+        display(AbandonFragment.create(getClass()));
+        return true;
+      case R.id.action_help:
+        display(HelpFragment.class);
+        return true;
+      case R.id.action_ignore:
+        actionHandler.ignore();
+        startActivity(new Intent(getActivity(), MainActivity.class));
+        return true;
+      case R.id.action_restore:
+        display(RestoreActivity.create(getClass()));
+        return true;
+      case R.id.action_skip:
+        actionHandler.skip();
+        startActivity(new Intent(getActivity(), MainActivity.class));
+        return true;
+      case R.id.action_star:
+        actionHandler.star();
+        startActivity(new Intent(getActivity(), MainActivity.class));
+        return true;
+      default:
+        return super.onOptionsItemSelected(item);
+    }
+  }
+
+  @Override
+  public boolean onBackPressed() {
+    display(SortChangesFragment.class);
+    return true;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/DispatchTouchEventAware.java b/app/src/main/java/com/google/reviewit/DispatchTouchEventAware.java
new file mode 100644
index 0000000..6c2a664
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/DispatchTouchEventAware.java
@@ -0,0 +1,27 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.view.MotionEvent;
+
+/**
+ * Interface to be implemented by fragments that want to dispatch touch events.
+ */
+public interface DispatchTouchEventAware {
+  /**
+   * Invoke when a touch event occurs.
+   */
+  void dispatchTouchEvent(MotionEvent event);
+}
diff --git a/app/src/main/java/com/google/reviewit/ErrorFragment.java b/app/src/main/java/com/google/reviewit/ErrorFragment.java
new file mode 100644
index 0000000..b4a2013
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/ErrorFragment.java
@@ -0,0 +1,59 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.os.Bundle;
+import android.support.annotation.LayoutRes;
+import android.view.View;
+
+import com.google.reviewit.util.WidgetUtil;
+
+import java.io.PrintWriter;
+import java.io.StringWriter;
+
+/**
+ * Fragment to display an application error.
+ */
+public class ErrorFragment extends BaseFragment {
+  private static final String STACKTRACE
+      = "com.google.reviewit.ErrorFragment.STACKTRACE";
+
+  public static ErrorFragment create(Throwable t) {
+    ErrorFragment fragment = new ErrorFragment();
+    Bundle bundle = new Bundle();
+    bundle.putSerializable(STACKTRACE, getStacktrace(t));
+    fragment.setArguments(bundle);
+    return fragment;
+  }
+
+  private static String getStacktrace(Throwable t) {
+    StringWriter sw = new StringWriter();
+    PrintWriter pw = new PrintWriter(sw);
+    t.printStackTrace(pw);
+    return sw.toString();
+  }
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_error;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    WidgetUtil.setText(v(R.id.error), getArguments().getString(STACKTRACE));
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/HelpFragment.java b/app/src/main/java/com/google/reviewit/HelpFragment.java
new file mode 100644
index 0000000..d80597e
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/HelpFragment.java
@@ -0,0 +1,964 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.os.Bundle;
+import android.support.annotation.LayoutRes;
+import android.view.View;
+
+import com.google.reviewit.util.WidgetUtil;
+
+/** Fragment to show the help text for the application. */
+public class HelpFragment extends BaseFragment {
+
+    @Override
+    protected @LayoutRes int getLayout() {
+      return R.layout.content_help;
+    }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    WidgetUtil.setText(v(R.id.license_apache2_0), "\n" +
+        "Apache License\n" +
+        "Version 2.0, January 2004\n" +
+        "http://www.apache.org/licenses/\n" +
+        "\n" +
+        "   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n" +
+        "\n" +
+        "   1. Definitions.\n" +
+        "\n" +
+        "      \"License\" shall mean the terms and conditions for use, reproduction,\n" +
+        "      and distribution as defined by Sections 1 through 9 of this document.\n" +
+        "\n" +
+        "      \"Licensor\" shall mean the copyright owner or entity authorized by\n" +
+        "      the copyright owner that is granting the License.\n" +
+        "\n" +
+        "      \"Legal Entity\" shall mean the union of the acting entity and all\n" +
+        "      other entities that control, are controlled by, or are under common\n" +
+        "      control with that entity. For the purposes of this definition,\n" +
+        "      \"control\" means (i) the power, direct or indirect, to cause the\n" +
+        "      direction or management of such entity, whether by contract or\n" +
+        "      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n" +
+        "      outstanding shares, or (iii) beneficial ownership of such entity.\n" +
+        "\n" +
+        "      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n" +
+        "      exercising permissions granted by this License.\n" +
+        "\n" +
+        "      \"Source\" form shall mean the preferred form for making modifications,\n" +
+        "      including but not limited to software source code, documentation\n" +
+        "      source, and configuration files.\n" +
+        "\n" +
+        "      \"Object\" form shall mean any form resulting from mechanical\n" +
+        "      transformation or translation of a Source form, including but\n" +
+        "      not limited to compiled object code, generated documentation,\n" +
+        "      and conversions to other media types.\n" +
+        "\n" +
+        "      \"Work\" shall mean the work of authorship, whether in Source or\n" +
+        "      Object form, made available under the License, as indicated by a\n" +
+        "      copyright notice that is included in or attached to the work\n" +
+        "      (an example is provided in the Appendix below).\n" +
+        "\n" +
+        "      \"Derivative Works\" shall mean any work, whether in Source or Object\n" +
+        "      form, that is based on (or derived from) the Work and for which the\n" +
+        "      editorial revisions, annotations, elaborations, or other modifications\n" +
+        "      represent, as a whole, an original work of authorship. For the purposes\n" +
+        "      of this License, Derivative Works shall not include works that remain\n" +
+        "      separable from, or merely link (or bind by name) to the interfaces of,\n" +
+        "      the Work and Derivative Works thereof.\n" +
+        "\n" +
+        "      \"Contribution\" shall mean any work of authorship, including\n" +
+        "      the original version of the Work and any modifications or additions\n" +
+        "      to that Work or Derivative Works thereof, that is intentionally\n" +
+        "      submitted to Licensor for inclusion in the Work by the copyright owner\n" +
+        "      or by an individual or Legal Entity authorized to submit on behalf of\n" +
+        "      the copyright owner. For the purposes of this definition, \"submitted\"\n" +
+        "      means any form of electronic, verbal, or written communication sent\n" +
+        "      to the Licensor or its representatives, including but not limited to\n" +
+        "      communication on electronic mailing lists, source code control systems,\n" +
+        "      and issue tracking systems that are managed by, or on behalf of, the\n" +
+        "      Licensor for the purpose of discussing and improving the Work, but\n" +
+        "      excluding communication that is conspicuously marked or otherwise\n" +
+        "      designated in writing by the copyright owner as \"Not a Contribution.\"\n" +
+        "\n" +
+        "      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n" +
+        "      on behalf of whom a Contribution has been received by Licensor and\n" +
+        "      subsequently incorporated within the Work.\n" +
+        "\n" +
+        "   2. Grant of Copyright License. Subject to the terms and conditions of\n" +
+        "      this License, each Contributor hereby grants to You a perpetual,\n" +
+        "      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n" +
+        "      copyright license to reproduce, prepare Derivative Works of,\n" +
+        "      publicly display, publicly perform, sublicense, and distribute the\n" +
+        "      Work and such Derivative Works in Source or Object form.\n" +
+        "\n" +
+        "   3. Grant of Patent License. Subject to the terms and conditions of\n" +
+        "      this License, each Contributor hereby grants to You a perpetual,\n" +
+        "      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n" +
+        "      (except as stated in this section) patent license to make, have made,\n" +
+        "      use, offer to sell, sell, import, and otherwise transfer the Work,\n" +
+        "      where such license applies only to those patent claims licensable\n" +
+        "      by such Contributor that are necessarily infringed by their\n" +
+        "      Contribution(s) alone or by combination of their Contribution(s)\n" +
+        "      with the Work to which such Contribution(s) was submitted. If You\n" +
+        "      institute patent litigation against any entity (including a\n" +
+        "      cross-claim or counterclaim in a lawsuit) alleging that the Work\n" +
+        "      or a Contribution incorporated within the Work constitutes direct\n" +
+        "      or contributory patent infringement, then any patent licenses\n" +
+        "      granted to You under this License for that Work shall terminate\n" +
+        "      as of the date such litigation is filed.\n" +
+        "\n" +
+        "   4. Redistribution. You may reproduce and distribute copies of the\n" +
+        "      Work or Derivative Works thereof in any medium, with or without\n" +
+        "      modifications, and in Source or Object form, provided that You\n" +
+        "      meet the following conditions:\n" +
+        "\n" +
+        "      (a) You must give any other recipients of the Work or\n" +
+        "          Derivative Works a copy of this License; and\n" +
+        "\n" +
+        "      (b) You must cause any modified files to carry prominent notices\n" +
+        "          stating that You changed the files; and\n" +
+        "\n" +
+        "      (c) You must retain, in the Source form of any Derivative Works\n" +
+        "          that You distribute, all copyright, patent, trademark, and\n" +
+        "          attribution notices from the Source form of the Work,\n" +
+        "          excluding those notices that do not pertain to any part of\n" +
+        "          the Derivative Works; and\n" +
+        "\n" +
+        "      (d) If the Work includes a \"NOTICE\" text file as part of its\n" +
+        "          distribution, then any Derivative Works that You distribute must\n" +
+        "          include a readable copy of the attribution notices contained\n" +
+        "          within such NOTICE file, excluding those notices that do not\n" +
+        "          pertain to any part of the Derivative Works, in at least one\n" +
+        "          of the following places: within a NOTICE text file distributed\n" +
+        "          as part of the Derivative Works; within the Source form or\n" +
+        "          documentation, if provided along with the Derivative Works; or,\n" +
+        "          within a display generated by the Derivative Works, if and\n" +
+        "          wherever such third-party notices normally appear. The contents\n" +
+        "          of the NOTICE file are for informational purposes only and\n" +
+        "          do not modify the License. You may add Your own attribution\n" +
+        "          notices within Derivative Works that You distribute, alongside\n" +
+        "          or as an addendum to the NOTICE text from the Work, provided\n" +
+        "          that such additional attribution notices cannot be construed\n" +
+        "          as modifying the License.\n" +
+        "\n" +
+        "      You may add Your own copyright statement to Your modifications and\n" +
+        "      may provide additional or different license terms and conditions\n" +
+        "      for use, reproduction, or distribution of Your modifications, or\n" +
+        "      for any such Derivative Works as a whole, provided Your use,\n" +
+        "      reproduction, and distribution of the Work otherwise complies with\n" +
+        "      the conditions stated in this License.\n" +
+        "\n" +
+        "   5. Submission of Contributions. Unless You explicitly state otherwise,\n" +
+        "      any Contribution intentionally submitted for inclusion in the Work\n" +
+        "      by You to the Licensor shall be under the terms and conditions of\n" +
+        "      this License, without any additional terms or conditions.\n" +
+        "      Notwithstanding the above, nothing herein shall supersede or modify\n" +
+        "      the terms of any separate license agreement you may have executed\n" +
+        "      with Licensor regarding such Contributions.\n" +
+        "\n" +
+        "   6. Trademarks. This License does not grant permission to use the trade\n" +
+        "      names, trademarks, service marks, or product names of the Licensor,\n" +
+        "      except as required for reasonable and customary use in describing the\n" +
+        "      origin of the Work and reproducing the content of the NOTICE file.\n" +
+        "\n" +
+        "   7. Disclaimer of Warranty. Unless required by applicable law or\n" +
+        "      agreed to in writing, Licensor provides the Work (and each\n" +
+        "      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n" +
+        "      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n" +
+        "      implied, including, without limitation, any warranties or conditions\n" +
+        "      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n" +
+        "      PARTICULAR PURPOSE. You are solely responsible for determining the\n" +
+        "      appropriateness of using or redistributing the Work and assume any\n" +
+        "      risks associated with Your exercise of permissions under this License.\n" +
+        "\n" +
+        "   8. Limitation of Liability. In no event and under no legal theory,\n" +
+        "      whether in tort (including negligence), contract, or otherwise,\n" +
+        "      unless required by applicable law (such as deliberate and grossly\n" +
+        "      negligent acts) or agreed to in writing, shall any Contributor be\n" +
+        "      liable to You for damages, including any direct, indirect, special,\n" +
+        "      incidental, or consequential damages of any character arising as a\n" +
+        "      result of this License or out of the use or inability to use the\n" +
+        "      Work (including but not limited to damages for loss of goodwill,\n" +
+        "      work stoppage, computer failure or malfunction, or any and all\n" +
+        "      other commercial damages or losses), even if such Contributor\n" +
+        "      has been advised of the possibility of such damages.\n" +
+        "\n" +
+        "   9. Accepting Warranty or Additional Liability. While redistributing\n" +
+        "      the Work or Derivative Works thereof, You may choose to offer,\n" +
+        "      and charge a fee for, acceptance of support, warranty, indemnity,\n" +
+        "      or other liability obligations and/or rights consistent with this\n" +
+        "      License. However, in accepting such obligations, You may act only\n" +
+        "      on Your own behalf and on Your sole responsibility, not on behalf\n" +
+        "      of any other Contributor, and only if You agree to indemnify,\n" +
+        "      defend, and hold each Contributor harmless for any liability\n" +
+        "      incurred by, or claims asserted against, such Contributor by reason\n" +
+        "      of your accepting any such warranty or additional liability.\n" +
+        "\n" +
+        "   END OF TERMS AND CONDITIONS\n" +
+        "\n" +
+        "   APPENDIX: How to apply the Apache License to your work.\n" +
+        "\n" +
+        "      To apply the Apache License to your work, attach the following\n" +
+        "      boilerplate notice, with the fields enclosed by brackets \"[]\"\n" +
+        "      replaced with your own identifying information. (Don't include\n" +
+        "      the brackets!)  The text should be enclosed in the appropriate\n" +
+        "      comment syntax for the file format. We also recommend that a\n" +
+        "      file or class name and description of purpose be included on the\n" +
+        "      same \"printed page\" as the copyright notice for easier\n" +
+        "      identification within third-party archives.\n" +
+        "\n" +
+        "   Copyright [yyyy] [name of copyright owner]\n" +
+        "\n" +
+        "   Licensed under the Apache License, Version 2.0 (the \"License\");\n" +
+        "   you may not use this file except in compliance with the License.\n" +
+        "   You may obtain a copy of the License at\n" +
+        "\n" +
+        "       http://www.apache.org/licenses/LICENSE-2.0\n" +
+        "\n" +
+        "   Unless required by applicable law or agreed to in writing, software\n" +
+        "   distributed under the License is distributed on an \"AS IS\" BASIS,\n" +
+        "   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n" +
+        "   See the License for the specific language governing permissions and\n" +
+        "   limitations under the License.\n");
+    WidgetUtil.setText(v(R.id.license_cc_by_3_0), "\n" +
+        "THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS\n" +
+        "CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\").  THE WORK IS\n" +
+        "PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW.  ANY USE OF THE\n" +
+        "WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS\n" +
+        "PROHIBITED.\n" +
+        "\n" +
+        "BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND\n" +
+        "AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE.  TO THE EXTENT THIS\n" +
+        "LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU\n" +
+        "THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH\n" +
+        "TERMS AND CONDITIONS.\n" +
+        "\n" +
+        "1.  Definitions\n" +
+        "\n" +
+        "  a.  \"Adaptation\" means a work based upon the Work, or upon the Work\n" +
+        "      and other pre-existing works, such as a translation, adaptation,\n" +
+        "      derivative work, arrangement of music or other alterations of a\n" +
+        "      literary or artistic work, or phonogram or performance and\n" +
+        "      includes cinematographic adaptations or any other form in which\n" +
+        "      the Work may be recast, transformed, or adapted including in any\n" +
+        "      form recognizably derived from the original, except that a work\n" +
+        "      that constitutes a Collection will not be considered an\n" +
+        "      Adaptation for the purpose of this License.  For the avoidance\n" +
+        "      of doubt, where the Work is a musical work, performance or\n" +
+        "      phonogram, the synchronization of the Work in timed-relation\n" +
+        "      with a moving image (\"synching\") will be considered an\n" +
+        "      Adaptation for the purpose of this License.\n" +
+        "\n" +
+        "  b.  \"Collection\" means a collection of literary or artistic works,\n" +
+        "      such as encyclopedias and anthologies, or performances,\n" +
+        "      phonograms or broadcasts, or other works or subject matter other\n" +
+        "      than works listed in Section 1(f) below, which, by reason of the\n" +
+        "      selection and arrangement of their contents, constitute\n" +
+        "      intellectual creations, in which the Work is included in its\n" +
+        "      entirety in unmodified form along with one or more other\n" +
+        "      contributions, each constituting separate and independent works\n" +
+        "      in themselves, which together are assembled into a collective\n" +
+        "      whole.  A work that constitutes a Collection will not be\n" +
+        "      considered an Adaptation (as defined above) for the purposes of\n" +
+        "      this License.\n" +
+        "\n" +
+        "  c.  \"Distribute\" means to make available to the public the original\n" +
+        "      and copies of the Work or Adaptation, as appropriate, through\n" +
+        "      sale or other transfer of ownership.\n" +
+        "\n" +
+        "  d.  \"Licensor\" means the individual, individuals, entity or entities\n" +
+        "      that offer(s) the Work under the terms of this License.\n" +
+        "\n" +
+        "  e.  \"Original Author\" means, in the case of a literary or artistic\n" +
+        "      work, the individual, individuals, entity or entities who\n" +
+        "      created the Work or if no individual or entity can be\n" +
+        "      identified, the publisher; and in addition (i) in the case of a\n" +
+        "      performance the actors, singers, musicians, dancers, and other\n" +
+        "      persons who act, sing, deliver, declaim, play in, interpret or\n" +
+        "      otherwise perform literary or artistic works or expressions of\n" +
+        "      folklore; (ii) in the case of a phonogram the producer being the\n" +
+        "      person or legal entity who first fixes the sounds of a\n" +
+        "      performance or other sounds; and, (iii) in the case of\n" +
+        "      broadcasts, the organization that transmits the broadcast.\n" +
+        "\n" +
+        "  f.  \"Work\" means the literary and/or artistic work offered under the\n" +
+        "      terms of this License including without limitation any\n" +
+        "      production in the literary, scientific and artistic domain,\n" +
+        "      whatever may be the mode or form of its expression including\n" +
+        "      digital form, such as a book, pamphlet and other writing; a\n" +
+        "      lecture, address, sermon or other work of the same nature; a\n" +
+        "      dramatic or dramatico-musical work; a choreographic work or\n" +
+        "      entertainment in dumb show; a musical composition with or\n" +
+        "      without words; a cinematographic work to which are assimilated\n" +
+        "      works expressed by a process analogous to cinematography; a work\n" +
+        "      of drawing, painting, architecture, sculpture, engraving or\n" +
+        "      lithography; a photographic work to which are assimilated works\n" +
+        "      expressed by a process analogous to photography; a work of\n" +
+        "      applied art; an illustration, map, plan, sketch or\n" +
+        "      three-dimensional work relative to geography, topography,\n" +
+        "      architecture or science; a performance; a broadcast; a\n" +
+        "      phonogram; a compilation of data to the extent it is protected\n" +
+        "      as a copyrightable work; or a work performed by a variety or\n" +
+        "      circus performer to the extent it is not otherwise considered a\n" +
+        "      literary or artistic work.\n" +
+        "\n" +
+        "  g.  \"You\" means an individual or entity exercising rights under this\n" +
+        "      License who has not previously violated the terms of this\n" +
+        "      License with respect to the Work, or who has received express\n" +
+        "      permission from the Licensor to exercise rights under this\n" +
+        "      License despite a previous violation.\n" +
+        "\n" +
+        "  h.  \"Publicly Perform\" means to perform public recitations of the\n" +
+        "      Work and to communicate to the public those public recitations,\n" +
+        "      by any means or process, including by wire or wireless means or\n" +
+        "      public digital performances; to make available to the public\n" +
+        "      Works in such a way that members of the public may access these\n" +
+        "      Works from a place and at a place individually chosen by them;\n" +
+        "      to perform the Work to the public by any means or process and\n" +
+        "      the communication to the public of the performances of the Work,\n" +
+        "      including by public digital performance; to broadcast and\n" +
+        "      rebroadcast the Work by any means including signs, sounds or\n" +
+        "      images.\n" +
+        "\n" +
+        "  i.  \"Reproduce\" means to make copies of the Work by any means\n" +
+        "      including without limitation by sound or visual recordings and\n" +
+        "      the right of fixation and reproducing fixations of the Work,\n" +
+        "      including storage of a protected performance or phonogram in\n" +
+        "      digital form or other electronic medium.\n" +
+        "\n" +
+        "2.  Fair Dealing Rights.  Nothing in this License is intended to\n" +
+        "    reduce, limit, or restrict any uses free from copyright or rights\n" +
+        "    arising from limitations or exceptions that are provided for in\n" +
+        "    connection with the copyright protection under copyright law or\n" +
+        "    other applicable laws.\n" +
+        "\n" +
+        "3.  License Grant.  Subject to the terms and conditions of this\n" +
+        "    License, Licensor hereby grants You a worldwide, royalty-free,\n" +
+        "    non-exclusive, perpetual (for the duration of the applicable\n" +
+        "    copyright) license to exercise the rights in the Work as stated\n" +
+        "    below:\n" +
+        "\n" +
+        "  a.  to Reproduce the Work, to incorporate the Work into one or more\n" +
+        "      Collections, and to Reproduce the Work as incorporated in the\n" +
+        "      Collections;\n" +
+        "\n" +
+        "  b.  to create and Reproduce Adaptations provided that any such\n" +
+        "      Adaptation, including any translation in any medium, takes\n" +
+        "      reasonable steps to clearly label, demarcate or otherwise\n" +
+        "      identify that changes were made to the original Work.  For\n" +
+        "      example, a translation could be marked \"The original work was\n" +
+        "      translated from English to Spanish,\" or a modification could\n" +
+        "      indicate \"The original work has been modified.\";\n" +
+        "\n" +
+        "  c.  to Distribute and Publicly Perform the Work including as\n" +
+        "      incorporated in Collections; and,\n" +
+        "\n" +
+        "  d.  to Distribute and Publicly Perform Adaptations.\n" +
+        "\n" +
+        "  e.  For the avoidance of doubt:\n" +
+        "\n" +
+        "    i.   Non-waivable Compulsory License Schemes.  In those\n" +
+        "\t     jurisdictions in which the right to collect royalties\n" +
+        "\t     through any statutory or compulsory licensing scheme\n" +
+        "\t     cannot be waived, the Licensor reserves the exclusive\n" +
+        "\t     right to collect such royalties for any exercise by You\n" +
+        "\t     of the rights granted under this License;\n" +
+        "\n" +
+        "    ii.  Waivable Compulsory License Schemes.  In those jurisdictions\n" +
+        "\t     in which the right to collect royalties through any\n" +
+        "\t     statutory or compulsory licensing scheme can be waived,\n" +
+        "\t     the Licensor waives the exclusive right to collect such\n" +
+        "\t     royalties for any exercise by You of the rights granted\n" +
+        "\t     under this License; and,\n" +
+        "\n" +
+        "    iii. Voluntary License Schemes.  The Licensor waives the right to\n" +
+        "\t     collect royalties, whether individually or, in the event\n" +
+        "\t     that the Licensor is a member of a collecting society\n" +
+        "\t     that administers voluntary licensing schemes, via that\n" +
+        "\t     society, from any exercise by You of the rights granted\n" +
+        "\t     under this License.\n" +
+        "\n" +
+        "The above rights may be exercised in all media and formats whether now\n" +
+        "known or hereafter devised.  The above rights include the right to\n" +
+        "make such modifications as are technically necessary to exercise the\n" +
+        "rights in other media and formats.  Subject to Section 8(f), all\n" +
+        "rights not expressly granted by Licensor are hereby reserved.\n" +
+        "\n" +
+        "4.  Restrictions.  The license granted in Section 3 above is expressly\n" +
+        "    made subject to and limited by the following restrictions:\n" +
+        "\n" +
+        "  a.  You may Distribute or Publicly Perform the Work only under the\n" +
+        "      terms of this License.  You must include a copy of, or the\n" +
+        "      Uniform Resource Identifier (URI) for, this License with every\n" +
+        "      copy of the Work You Distribute or Publicly Perform.  You may\n" +
+        "      not offer or impose any terms on the Work that restrict the\n" +
+        "      terms of this License or the ability of the recipient of the\n" +
+        "      Work to exercise the rights granted to that recipient under the\n" +
+        "      terms of the License.  You may not sublicense the Work.  You\n" +
+        "      must keep intact all notices that refer to this License and to\n" +
+        "      the disclaimer of warranties with every copy of the Work You\n" +
+        "      Distribute or Publicly Perform.  When You Distribute or Publicly\n" +
+        "      Perform the Work, You may not impose any effective technological\n" +
+        "      measures on the Work that restrict the ability of a recipient of\n" +
+        "      the Work from You to exercise the rights granted to that\n" +
+        "      recipient under the terms of the License.  This Section 4(a)\n" +
+        "      applies to the Work as incorporated in a Collection, but this\n" +
+        "      does not require the Collection apart from the Work itself to be\n" +
+        "      made subject to the terms of this License.  If You create a\n" +
+        "      Collection, upon notice from any Licensor You must, to the\n" +
+        "      extent practicable, remove from the Collection any credit as\n" +
+        "      required by Section 4(b), as requested.  If You create an\n" +
+        "      Adaptation, upon notice from any Licensor You must, to the\n" +
+        "      extent practicable, remove from the Adaptation any credit as\n" +
+        "      required by Section 4(b), as requested.\n" +
+        "\n" +
+        "  b.  If You Distribute, or Publicly Perform the Work or any\n" +
+        "      Adaptations or Collections, You must, unless a request has been\n" +
+        "      made pursuant to Section 4(a), keep intact all copyright notices\n" +
+        "      for the Work and provide, reasonable to the medium or means You\n" +
+        "      are utilizing: (i) the name of the Original Author (or\n" +
+        "      pseudonym, if applicable) if supplied, and/or if the Original\n" +
+        "      Author and/or Licensor designate another party or parties (e.g.,\n" +
+        "      a sponsor institute, publishing entity, journal) for attribution\n" +
+        "      (\"Attribution Parties\") in Licensor's copyright notice, terms of\n" +
+        "      service or by other reasonable means, the name of such party or\n" +
+        "      parties; (ii) the title of the Work if supplied; (iii) to the\n" +
+        "      extent reasonably practicable, the URI, if any, that Licensor\n" +
+        "      specifies to be associated with the Work, unless such URI does\n" +
+        "      not refer to the copyright notice or licensing information for\n" +
+        "      the Work; and (iv) , consistent with Section 3(b), in the case\n" +
+        "      of an Adaptation, a credit identifying the use of the Work in\n" +
+        "      the Adaptation (e.g., \"French translation of the Work by\n" +
+        "      Original Author,\" or \"Screenplay based on original Work by\n" +
+        "      Original Author\").  The credit required by this Section 4 (b)\n" +
+        "      may be implemented in any reasonable manner; provided, however,\n" +
+        "      that in the case of a Adaptation or Collection, at a minimum\n" +
+        "      such credit will appear, if a credit for all contributing\n" +
+        "      authors of the Adaptation or Collection appears, then as part of\n" +
+        "      these credits and in a manner at least as prominent as the\n" +
+        "      credits for the other contributing authors.  For the avoidance\n" +
+        "      of doubt, You may only use the credit required by this Section\n" +
+        "      for the purpose of attribution in the manner set out above and,\n" +
+        "      by exercising Your rights under this License, You may not\n" +
+        "      implicitly or explicitly assert or imply any connection with,\n" +
+        "      sponsorship or endorsement by the Original Author, Licensor\n" +
+        "      and/or Attribution Parties, as appropriate, of You or Your use\n" +
+        "      of the Work, without the separate, express prior written\n" +
+        "      permission of the Original Author, Licensor and/or Attribution\n" +
+        "      Parties.\n" +
+        "\n" +
+        "  c.  Except as otherwise agreed in writing by the Licensor or as may\n" +
+        "      be otherwise permitted by applicable law, if You Reproduce,\n" +
+        "      Distribute or Publicly Perform the Work either by itself or as\n" +
+        "      part of any Adaptations or Collections, You must not distort,\n" +
+        "      mutilate, modify or take other derogatory action in relation to\n" +
+        "      the Work which would be prejudicial to the Original Author's\n" +
+        "      honor or reputation.  Licensor agrees that in those\n" +
+        "      jurisdictions (e.g.  Japan), in which any exercise of the right\n" +
+        "      granted in Section 3(b) of this License (the right to make\n" +
+        "      Adaptations) would be deemed to be a distortion, mutilation,\n" +
+        "      modification or other derogatory action prejudicial to the\n" +
+        "      Original Author's honor and reputation, the Licensor will waive\n" +
+        "      or not assert, as appropriate, this Section, to the fullest\n" +
+        "      extent permitted by the applicable national law, to enable You\n" +
+        "      to reasonably exercise Your right under Section 3(b) of this\n" +
+        "      License (right to make Adaptations) but not otherwise.\n" +
+        "\n" +
+        "5.  Representations, Warranties and Disclaimer\n" +
+        "\n" +
+        "UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING,\n" +
+        "LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR\n" +
+        "WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED,\n" +
+        "STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF\n" +
+        "TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE,\n" +
+        "NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY,\n" +
+        "OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n" +
+        "SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES,\n" +
+        "SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n" +
+        "\n" +
+        "6.  Limitation on Liability.  EXCEPT TO THE EXTENT REQUIRED BY\n" +
+        "    APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY\n" +
+        "    LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE\n" +
+        "    OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE\n" +
+        "    WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\n" +
+        "    DAMAGES.\n" +
+        "\n" +
+        "7.  Termination\n" +
+        "\n" +
+        "  a.  This License and the rights granted hereunder will terminate\n" +
+        "      automatically upon any breach by You of the terms of this\n" +
+        "      License.  Individuals or entities who have received Adaptations\n" +
+        "      or Collections from You under this License, however, will not\n" +
+        "      have their licenses terminated provided such individuals or\n" +
+        "      entities remain in full compliance with those licenses.\n" +
+        "      Sections 1, 2, 5, 6, 7, and 8 will survive any termination of\n" +
+        "      this License.\n" +
+        "\n" +
+        "  b.  Subject to the above terms and conditions, the license granted\n" +
+        "      here is perpetual (for the duration of the applicable copyright\n" +
+        "      in the Work).  Notwithstanding the above, Licensor reserves the\n" +
+        "      right to release the Work under different license terms or to\n" +
+        "      stop distributing the Work at any time; provided, however that\n" +
+        "      any such election will not serve to withdraw this License (or\n" +
+        "      any other license that has been, or is required to be, granted\n" +
+        "      under the terms of this License), and this License will continue\n" +
+        "      in full force and effect unless terminated as stated above.\n" +
+        "\n" +
+        "8. Miscellaneous\n" +
+        "\n" +
+        "  a.  Each time You Distribute or Publicly Perform the Work or a\n" +
+        "      Collection, the Licensor offers to the recipient a license to\n" +
+        "      the Work on the same terms and conditions as the license granted\n" +
+        "      to You under this License.\n" +
+        "\n" +
+        "  b.  Each time You Distribute or Publicly Perform an Adaptation,\n" +
+        "      Licensor offers to the recipient a license to the original Work\n" +
+        "      on the same terms and conditions as the license granted to You\n" +
+        "      under this License.\n" +
+        "\n" +
+        "  c.  If any provision of this License is invalid or unenforceable\n" +
+        "      under applicable law, it shall not affect the validity or\n" +
+        "      enforceability of the remainder of the terms of this License,\n" +
+        "      and without further action by the parties to this agreement,\n" +
+        "      such provision shall be reformed to the minimum extent necessary\n" +
+        "      to make such provision valid and enforceable.\n" +
+        "\n" +
+        "  d.  No term or provision of this License shall be deemed waived and\n" +
+        "      no breach consented to unless such waiver or consent shall be in\n" +
+        "      writing and signed by the party to be charged with such waiver\n" +
+        "      or consent.\n" +
+        "\n" +
+        "  e.  This License constitutes the entire agreement between the\n" +
+        "      parties with respect to the Work licensed here.  There are no\n" +
+        "      understandings, agreements or representations with respect to\n" +
+        "      the Work not specified here.  Licensor shall not be bound by any\n" +
+        "      additional provisions that may appear in any communication from\n" +
+        "      You.  This License may not be modified without the mutual\n" +
+        "      written agreement of the Licensor and You.\n" +
+        "\n" +
+        "  f.  The rights granted under, and the subject matter referenced, in\n" +
+        "      this License were drafted utilizing the terminology of the Berne\n" +
+        "      Convention for the Protection of Literary and Artistic Works (as\n" +
+        "      amended on September 28, 1979), the Rome Convention of 1961, the\n" +
+        "      WIPO Copyright Treaty of 1996, the WIPO Performances and\n" +
+        "      Phonograms Treaty of 1996 and the Universal Copyright Convention\n" +
+        "      (as revised on July 24, 1971).  These rights and subject matter\n" +
+        "      take effect in the relevant jurisdiction in which the License\n" +
+        "      terms are sought to be enforced according to the corresponding\n" +
+        "      provisions of the implementation of those treaty provisions in\n" +
+        "      the applicable national law.  If the standard suite of rights\n" +
+        "      granted under applicable copyright law includes additional\n" +
+        "      rights not granted under this License, such additional rights\n" +
+        "      are deemed to be included in the License; this License is not\n" +
+        "      intended to restrict the license of any rights under applicable\n" +
+        "      law.\n");
+    WidgetUtil.setText(v(R.id.license_cc_by_4_0), "\n" +
+        "Attribution 4.0 International\n" +
+        "\n" +
+        "=======================================================================\n" +
+        "\n" +
+        "Creative Commons Corporation (\"Creative Commons\") is not a law firm and\n" +
+        "does not provide legal services or legal advice. Distribution of\n" +
+        "Creative Commons public licenses does not create a lawyer-client or\n" +
+        "other relationship. Creative Commons makes its licenses and related\n" +
+        "information available on an \"as-is\" basis. Creative Commons gives no\n" +
+        "warranties regarding its licenses, any material licensed under their\n" +
+        "terms and conditions, or any related information. Creative Commons\n" +
+        "disclaims all liability for damages resulting from their use to the\n" +
+        "fullest extent possible.\n" +
+        "\n" +
+        "Using Creative Commons Public Licenses\n" +
+        "\n" +
+        "Creative Commons public licenses provide a standard set of terms and\n" +
+        "conditions that creators and other rights holders may use to share\n" +
+        "original works of authorship and other material subject to copyright\n" +
+        "and certain other rights specified in the public license below. The\n" +
+        "following considerations are for informational purposes only, are not\n" +
+        "exhaustive, and do not form part of our licenses.\n" +
+        "\n" +
+        "     Considerations for licensors: Our public licenses are\n" +
+        "     intended for use by those authorized to give the public\n" +
+        "     permission to use material in ways otherwise restricted by\n" +
+        "     copyright and certain other rights. Our licenses are\n" +
+        "     irrevocable. Licensors should read and understand the terms\n" +
+        "     and conditions of the license they choose before applying it.\n" +
+        "     Licensors should also secure all rights necessary before\n" +
+        "     applying our licenses so that the public can reuse the\n" +
+        "     material as expected. Licensors should clearly mark any\n" +
+        "     material not subject to the license. This includes other CC-\n" +
+        "     licensed material, or material used under an exception or\n" +
+        "     limitation to copyright. More considerations for licensors:\n" +
+        "\twiki.creativecommons.org/Considerations_for_licensors\n" +
+        "\n" +
+        "     Considerations for the public: By using one of our public\n" +
+        "     licenses, a licensor grants the public permission to use the\n" +
+        "     licensed material under specified terms and conditions. If\n" +
+        "     the licensor's permission is not necessary for any reason--for\n" +
+        "     example, because of any applicable exception or limitation to\n" +
+        "     copyright--then that use is not regulated by the license. Our\n" +
+        "     licenses grant only permissions under copyright and certain\n" +
+        "     other rights that a licensor has authority to grant. Use of\n" +
+        "     the licensed material may still be restricted for other\n" +
+        "     reasons, including because others have copyright or other\n" +
+        "     rights in the material. A licensor may make special requests,\n" +
+        "     such as asking that all changes be marked or described.\n" +
+        "     Although not required by our licenses, you are encouraged to\n" +
+        "     respect those requests where reasonable. More_considerations\n" +
+        "     for the public: \n" +
+        "\twiki.creativecommons.org/Considerations_for_licensees\n" +
+        "\n" +
+        "=======================================================================\n" +
+        "\n" +
+        "Creative Commons Attribution 4.0 International Public License\n" +
+        "\n" +
+        "By exercising the Licensed Rights (defined below), You accept and agree\n" +
+        "to be bound by the terms and conditions of this Creative Commons\n" +
+        "Attribution 4.0 International Public License (\"Public License\"). To the\n" +
+        "extent this Public License may be interpreted as a contract, You are\n" +
+        "granted the Licensed Rights in consideration of Your acceptance of\n" +
+        "these terms and conditions, and the Licensor grants You such rights in\n" +
+        "consideration of benefits the Licensor receives from making the\n" +
+        "Licensed Material available under these terms and conditions.\n" +
+        "\n" +
+        "\n" +
+        "Section 1 -- Definitions.\n" +
+        "\n" +
+        "  a. Adapted Material means material subject to Copyright and Similar\n" +
+        "     Rights that is derived from or based upon the Licensed Material\n" +
+        "     and in which the Licensed Material is translated, altered,\n" +
+        "     arranged, transformed, or otherwise modified in a manner requiring\n" +
+        "     permission under the Copyright and Similar Rights held by the\n" +
+        "     Licensor. For purposes of this Public License, where the Licensed\n" +
+        "     Material is a musical work, performance, or sound recording,\n" +
+        "     Adapted Material is always produced where the Licensed Material is\n" +
+        "     synched in timed relation with a moving image.\n" +
+        "\n" +
+        "  b. Adapter's License means the license You apply to Your Copyright\n" +
+        "     and Similar Rights in Your contributions to Adapted Material in\n" +
+        "     accordance with the terms and conditions of this Public License.\n" +
+        "\n" +
+        "  c. Copyright and Similar Rights means copyright and/or similar rights\n" +
+        "     closely related to copyright including, without limitation,\n" +
+        "     performance, broadcast, sound recording, and Sui Generis Database\n" +
+        "     Rights, without regard to how the rights are labeled or\n" +
+        "     categorized. For purposes of this Public License, the rights\n" +
+        "     specified in Section 2(b)(1)-(2) are not Copyright and Similar\n" +
+        "     Rights.\n" +
+        "\n" +
+        "  d. Effective Technological Measures means those measures that, in the\n" +
+        "     absence of proper authority, may not be circumvented under laws\n" +
+        "     fulfilling obligations under Article 11 of the WIPO Copyright\n" +
+        "     Treaty adopted on December 20, 1996, and/or similar international\n" +
+        "     agreements.\n" +
+        "\n" +
+        "  e. Exceptions and Limitations means fair use, fair dealing, and/or\n" +
+        "     any other exception or limitation to Copyright and Similar Rights\n" +
+        "     that applies to Your use of the Licensed Material.\n" +
+        "\n" +
+        "  f. Licensed Material means the artistic or literary work, database,\n" +
+        "     or other material to which the Licensor applied this Public\n" +
+        "     License.\n" +
+        "\n" +
+        "  g. Licensed Rights means the rights granted to You subject to the\n" +
+        "     terms and conditions of this Public License, which are limited to\n" +
+        "     all Copyright and Similar Rights that apply to Your use of the\n" +
+        "     Licensed Material and that the Licensor has authority to license.\n" +
+        "\n" +
+        "  h. Licensor means the individual(s) or entity(ies) granting rights\n" +
+        "     under this Public License.\n" +
+        "\n" +
+        "  i. Share means to provide material to the public by any means or\n" +
+        "     process that requires permission under the Licensed Rights, such\n" +
+        "     as reproduction, public display, public performance, distribution,\n" +
+        "     dissemination, communication, or importation, and to make material\n" +
+        "     available to the public including in ways that members of the\n" +
+        "     public may access the material from a place and at a time\n" +
+        "     individually chosen by them.\n" +
+        "\n" +
+        "  j. Sui Generis Database Rights means rights other than copyright\n" +
+        "     resulting from Directive 96/9/EC of the European Parliament and of\n" +
+        "     the Council of 11 March 1996 on the legal protection of databases,\n" +
+        "     as amended and/or succeeded, as well as other essentially\n" +
+        "     equivalent rights anywhere in the world.\n" +
+        "\n" +
+        "  k. You means the individual or entity exercising the Licensed Rights\n" +
+        "     under this Public License. Your has a corresponding meaning.\n" +
+        "\n" +
+        "\n" +
+        "Section 2 -- Scope.\n" +
+        "\n" +
+        "  a. License grant.\n" +
+        "\n" +
+        "       1. Subject to the terms and conditions of this Public License,\n" +
+        "          the Licensor hereby grants You a worldwide, royalty-free,\n" +
+        "          non-sublicensable, non-exclusive, irrevocable license to\n" +
+        "          exercise the Licensed Rights in the Licensed Material to:\n" +
+        "\n" +
+        "            a. reproduce and Share the Licensed Material, in whole or\n" +
+        "               in part; and\n" +
+        "\n" +
+        "            b. produce, reproduce, and Share Adapted Material.\n" +
+        "\n" +
+        "       2. Exceptions and Limitations. For the avoidance of doubt, where\n" +
+        "          Exceptions and Limitations apply to Your use, this Public\n" +
+        "          License does not apply, and You do not need to comply with\n" +
+        "          its terms and conditions.\n" +
+        "\n" +
+        "       3. Term. The term of this Public License is specified in Section\n" +
+        "          6(a).\n" +
+        "\n" +
+        "       4. Media and formats; technical modifications allowed. The\n" +
+        "          Licensor authorizes You to exercise the Licensed Rights in\n" +
+        "          all media and formats whether now known or hereafter created,\n" +
+        "          and to make technical modifications necessary to do so. The\n" +
+        "          Licensor waives and/or agrees not to assert any right or\n" +
+        "          authority to forbid You from making technical modifications\n" +
+        "          necessary to exercise the Licensed Rights, including\n" +
+        "          technical modifications necessary to circumvent Effective\n" +
+        "          Technological Measures. For purposes of this Public License,\n" +
+        "          simply making modifications authorized by this Section 2(a)\n" +
+        "          (4) never produces Adapted Material.\n" +
+        "\n" +
+        "       5. Downstream recipients.\n" +
+        "\n" +
+        "            a. Offer from the Licensor -- Licensed Material. Every\n" +
+        "               recipient of the Licensed Material automatically\n" +
+        "               receives an offer from the Licensor to exercise the\n" +
+        "               Licensed Rights under the terms and conditions of this\n" +
+        "               Public License.\n" +
+        "\n" +
+        "            b. No downstream restrictions. You may not offer or impose\n" +
+        "               any additional or different terms or conditions on, or\n" +
+        "               apply any Effective Technological Measures to, the\n" +
+        "               Licensed Material if doing so restricts exercise of the\n" +
+        "               Licensed Rights by any recipient of the Licensed\n" +
+        "               Material.\n" +
+        "\n" +
+        "       6. No endorsement. Nothing in this Public License constitutes or\n" +
+        "          may be construed as permission to assert or imply that You\n" +
+        "          are, or that Your use of the Licensed Material is, connected\n" +
+        "          with, or sponsored, endorsed, or granted official status by,\n" +
+        "          the Licensor or others designated to receive attribution as\n" +
+        "          provided in Section 3(a)(1)(A)(i).\n" +
+        "\n" +
+        "  b. Other rights.\n" +
+        "\n" +
+        "       1. Moral rights, such as the right of integrity, are not\n" +
+        "          licensed under this Public License, nor are publicity,\n" +
+        "          privacy, and/or other similar personality rights; however, to\n" +
+        "          the extent possible, the Licensor waives and/or agrees not to\n" +
+        "          assert any such rights held by the Licensor to the limited\n" +
+        "          extent necessary to allow You to exercise the Licensed\n" +
+        "          Rights, but not otherwise.\n" +
+        "\n" +
+        "       2. Patent and trademark rights are not licensed under this\n" +
+        "          Public License.\n" +
+        "\n" +
+        "       3. To the extent possible, the Licensor waives any right to\n" +
+        "          collect royalties from You for the exercise of the Licensed\n" +
+        "          Rights, whether directly or through a collecting society\n" +
+        "          under any voluntary or waivable statutory or compulsory\n" +
+        "          licensing scheme. In all other cases the Licensor expressly\n" +
+        "          reserves any right to collect such royalties.\n" +
+        "\n" +
+        "\n" +
+        "Section 3 -- License Conditions.\n" +
+        "\n" +
+        "Your exercise of the Licensed Rights is expressly made subject to the\n" +
+        "following conditions.\n" +
+        "\n" +
+        "  a. Attribution.\n" +
+        "\n" +
+        "       1. If You Share the Licensed Material (including in modified\n" +
+        "          form), You must:\n" +
+        "\n" +
+        "            a. retain the following if it is supplied by the Licensor\n" +
+        "               with the Licensed Material:\n" +
+        "\n" +
+        "                 i. identification of the creator(s) of the Licensed\n" +
+        "                    Material and any others designated to receive\n" +
+        "                    attribution, in any reasonable manner requested by\n" +
+        "                    the Licensor (including by pseudonym if\n" +
+        "                    designated);\n" +
+        "\n" +
+        "                ii. a copyright notice;\n" +
+        "\n" +
+        "               iii. a notice that refers to this Public License;\n" +
+        "\n" +
+        "                iv. a notice that refers to the disclaimer of\n" +
+        "                    warranties;\n" +
+        "\n" +
+        "                 v. a URI or hyperlink to the Licensed Material to the\n" +
+        "                    extent reasonably practicable;\n" +
+        "\n" +
+        "            b. indicate if You modified the Licensed Material and\n" +
+        "               retain an indication of any previous modifications; and\n" +
+        "\n" +
+        "            c. indicate the Licensed Material is licensed under this\n" +
+        "               Public License, and include the text of, or the URI or\n" +
+        "               hyperlink to, this Public License.\n" +
+        "\n" +
+        "       2. You may satisfy the conditions in Section 3(a)(1) in any\n" +
+        "          reasonable manner based on the medium, means, and context in\n" +
+        "          which You Share the Licensed Material. For example, it may be\n" +
+        "          reasonable to satisfy the conditions by providing a URI or\n" +
+        "          hyperlink to a resource that includes the required\n" +
+        "          information.\n" +
+        "\n" +
+        "       3. If requested by the Licensor, You must remove any of the\n" +
+        "          information required by Section 3(a)(1)(A) to the extent\n" +
+        "          reasonably practicable.\n" +
+        "\n" +
+        "       4. If You Share Adapted Material You produce, the Adapter's\n" +
+        "          License You apply must not prevent recipients of the Adapted\n" +
+        "          Material from complying with this Public License.\n" +
+        "\n" +
+        "\n" +
+        "Section 4 -- Sui Generis Database Rights.\n" +
+        "\n" +
+        "Where the Licensed Rights include Sui Generis Database Rights that\n" +
+        "apply to Your use of the Licensed Material:\n" +
+        "\n" +
+        "  a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n" +
+        "     to extract, reuse, reproduce, and Share all or a substantial\n" +
+        "     portion of the contents of the database;\n" +
+        "\n" +
+        "  b. if You include all or a substantial portion of the database\n" +
+        "     contents in a database in which You have Sui Generis Database\n" +
+        "     Rights, then the database in which You have Sui Generis Database\n" +
+        "     Rights (but not its individual contents) is Adapted Material; and\n" +
+        "\n" +
+        "  c. You must comply with the conditions in Section 3(a) if You Share\n" +
+        "     all or a substantial portion of the contents of the database.\n" +
+        "\n" +
+        "For the avoidance of doubt, this Section 4 supplements and does not\n" +
+        "replace Your obligations under this Public License where the Licensed\n" +
+        "Rights include other Copyright and Similar Rights.\n" +
+        "\n" +
+        "\n" +
+        "Section 5 -- Disclaimer of Warranties and Limitation of Liability.\n" +
+        "\n" +
+        "  a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n" +
+        "     EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n" +
+        "     AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n" +
+        "     ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n" +
+        "     IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n" +
+        "     WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n" +
+        "     PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n" +
+        "     ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n" +
+        "     KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n" +
+        "     ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n" +
+        "\n" +
+        "  b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n" +
+        "     TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n" +
+        "     NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n" +
+        "     INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n" +
+        "     COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n" +
+        "     USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n" +
+        "     ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n" +
+        "     DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n" +
+        "     IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n" +
+        "\n" +
+        "  c. The disclaimer of warranties and limitation of liability provided\n" +
+        "     above shall be interpreted in a manner that, to the extent\n" +
+        "     possible, most closely approximates an absolute disclaimer and\n" +
+        "     waiver of all liability.\n" +
+        "\n" +
+        "\n" +
+        "Section 6 -- Term and Termination.\n" +
+        "\n" +
+        "  a. This Public License applies for the term of the Copyright and\n" +
+        "     Similar Rights licensed here. However, if You fail to comply with\n" +
+        "     this Public License, then Your rights under this Public License\n" +
+        "     terminate automatically.\n" +
+        "\n" +
+        "  b. Where Your right to use the Licensed Material has terminated under\n" +
+        "     Section 6(a), it reinstates:\n" +
+        "\n" +
+        "       1. automatically as of the date the violation is cured, provided\n" +
+        "          it is cured within 30 days of Your discovery of the\n" +
+        "          violation; or\n" +
+        "\n" +
+        "       2. upon express reinstatement by the Licensor.\n" +
+        "\n" +
+        "     For the avoidance of doubt, this Section 6(b) does not affect any\n" +
+        "     right the Licensor may have to seek remedies for Your violations\n" +
+        "     of this Public License.\n" +
+        "\n" +
+        "  c. For the avoidance of doubt, the Licensor may also offer the\n" +
+        "     Licensed Material under separate terms or conditions or stop\n" +
+        "     distributing the Licensed Material at any time; however, doing so\n" +
+        "     will not terminate this Public License.\n" +
+        "\n" +
+        "  d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n" +
+        "     License.\n" +
+        "\n" +
+        "\n" +
+        "Section 7 -- Other Terms and Conditions.\n" +
+        "\n" +
+        "  a. The Licensor shall not be bound by any additional or different\n" +
+        "     terms or conditions communicated by You unless expressly agreed.\n" +
+        "\n" +
+        "  b. Any arrangements, understandings, or agreements regarding the\n" +
+        "     Licensed Material not stated herein are separate from and\n" +
+        "     independent of the terms and conditions of this Public License.\n" +
+        "\n" +
+        "\n" +
+        "Section 8 -- Interpretation.\n" +
+        "\n" +
+        "  a. For the avoidance of doubt, this Public License does not, and\n" +
+        "     shall not be interpreted to, reduce, limit, restrict, or impose\n" +
+        "     conditions on any use of the Licensed Material that could lawfully\n" +
+        "     be made without permission under this Public License.\n" +
+        "\n" +
+        "  b. To the extent possible, if any provision of this Public License is\n" +
+        "     deemed unenforceable, it shall be automatically reformed to the\n" +
+        "     minimum extent necessary to make it enforceable. If the provision\n" +
+        "     cannot be reformed, it shall be severed from this Public License\n" +
+        "     without affecting the enforceability of the remaining terms and\n" +
+        "     conditions.\n" +
+        "\n" +
+        "  c. No term or condition of this Public License will be waived and no\n" +
+        "     failure to comply consented to unless expressly agreed to by the\n" +
+        "     Licensor.\n" +
+        "\n" +
+        "  d. Nothing in this Public License constitutes or may be interpreted\n" +
+        "     as a limitation upon, or waiver of, any privileges and immunities\n" +
+        "     that apply to the Licensor or You, including from the legal\n" +
+        "     processes of any jurisdiction or authority.\n" +
+        "\n" +
+        "\n" +
+        "=======================================================================\n" +
+        "\n" +
+        "Creative Commons is not a party to its public licenses.\n" +
+        "Notwithstanding, Creative Commons may elect to apply one of its public\n" +
+        "licenses to material it publishes and in those instances will be\n" +
+        "considered the \"Licensor.\" Except for the limited purpose of indicating\n" +
+        "that material is shared under a Creative Commons public license or as\n" +
+        "otherwise permitted by the Creative Commons policies published at\n" +
+        "creativecommons.org/policies, Creative Commons does not authorize the\n" +
+        "use of the trademark \"Creative Commons\" or any other trademark or logo\n" +
+        "of Creative Commons without its prior written consent including,\n" +
+        "without limitation, in connection with any unauthorized modifications\n" +
+        "to any of its public licenses or any other arrangements,\n" +
+        "understandings, or agreements concerning use of licensed material. For\n" +
+        "the avoidance of doubt, this paragraph does not form part of the public\n" +
+        "licenses.\n" +
+        "\n" +
+        "Creative Commons may be contacted at creativecommons.org.\n");
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/IntroFragment1.java b/app/src/main/java/com/google/reviewit/IntroFragment1.java
new file mode 100644
index 0000000..6fb7160
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/IntroFragment1.java
@@ -0,0 +1,39 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.os.Bundle;
+import android.support.annotation.LayoutRes;
+import android.view.View;
+
+public class IntroFragment1 extends BaseFragment {
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_intro1;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    v(R.id.continueIntro).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        display(IntroFragment2.class);
+      }
+    });
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/IntroFragment2.java b/app/src/main/java/com/google/reviewit/IntroFragment2.java
new file mode 100644
index 0000000..76adc3d
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/IntroFragment2.java
@@ -0,0 +1,39 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.os.Bundle;
+import android.support.annotation.LayoutRes;
+import android.view.View;
+
+public class IntroFragment2 extends BaseFragment {
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_intro2;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    v(R.id.continueIntro).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        display(ServerSettingsFragment.create(IntroFragment2.class));
+      }
+    });
+  }
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/google/reviewit/MainActivity.java b/app/src/main/java/com/google/reviewit/MainActivity.java
new file mode 100644
index 0000000..d912862
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/MainActivity.java
@@ -0,0 +1,268 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.app.Activity;
+import android.app.Fragment;
+import android.app.FragmentManager;
+import android.content.res.Configuration;
+import android.os.Bundle;
+import android.os.StrictMode;
+import android.support.annotation.DrawableRes;
+import android.support.annotation.StringRes;
+import android.support.v4.widget.DrawerLayout;
+import android.support.v7.app.ActionBarDrawerToggle;
+import android.support.v7.widget.Toolbar;
+import android.view.LayoutInflater;
+import android.view.MenuItem;
+import android.view.MotionEvent;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.AdapterView;
+import android.widget.BaseAdapter;
+import android.widget.ImageView;
+import android.widget.ListView;
+
+import com.google.reviewit.app.ReviewItBaseActivity;
+import com.google.reviewit.util.WidgetUtil;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import static com.google.common.base.Preconditions.checkNotNull;
+
+public class MainActivity extends ReviewItBaseActivity {
+  private DrawerLayout drawer;
+  private ActionBarDrawerToggle toggle;
+  private ListView list;
+  private List<Item> items;
+
+  @Override
+  protected void onCreate(Bundle savedInstanceState) {
+    super.onCreate(savedInstanceState);
+
+    StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
+        .permitAll().build());
+
+    setContentView(R.layout.activity_main);
+    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
+    setSupportActionBar(toolbar);
+    if (getSupportActionBar() != null) {
+      getSupportActionBar().setDisplayHomeAsUpEnabled(true);
+      getSupportActionBar().setHomeButtonEnabled(true);
+    }
+
+    drawer = (DrawerLayout) findViewById(R.id.drawer);
+    list = (ListView) findViewById(R.id.mainList);
+
+    items = new ArrayList<>();
+    items.add(new Item(SortChangesFragment.class, R.string.app_menu_sort,
+        R.drawable.ic_star_white_16dp, null));
+    items.add(new Item(ReviewChangesFragment.class, R.string.app_menu_review,
+        R.drawable.ic_feedback_white_18dp, null));
+    items.add(new Item(SettingsFragment.class, R.string.app_menu_settings,
+        R.drawable.ic_settings_white_18dp, null));
+
+    list.setAdapter(new BaseAdapter() {
+      @Override
+      public int getCount() {
+        return items.size();
+      }
+
+      @Override
+      public Object getItem(int position) {
+        return items.get(position);
+      }
+
+      @Override
+      public long getItemId(int position) {
+        return position;
+      }
+
+      @Override
+      public View getView(int position, View convertView, ViewGroup parent) {
+        if (convertView == null) {
+          convertView = ((LayoutInflater) MainActivity.this.getSystemService
+              (Activity.LAYOUT_INFLATER_SERVICE)).inflate(
+                  R.layout.main_list_item, null);
+        }
+
+        Item item = items.get(position);
+
+        ((ImageView) convertView.findViewById(R.id.mainListItemIcon))
+            .setImageResource(item.iconId);
+        WidgetUtil.setText(convertView, R.id.mainListItemTitle,
+            getString(item.titleId));
+
+        if (item.count != null) {
+          WidgetUtil.setText(convertView, R.id.mainListItemCounter,
+              item.count.toString());
+        } else {
+          convertView.findViewById(R.id.mainListItemCounter)
+              .setVisibility(View.GONE);
+        }
+
+        return convertView;
+      }
+    });
+
+    toggle = new ActionBarDrawerToggle(this, drawer, R.string.app_name,
+        R.string.app_name) {
+      public void onDrawerClosed(View view) {
+        invalidateOptionsMenu();
+      }
+
+      public void onDrawerOpened(View drawerView) {
+        invalidateOptionsMenu();
+      }
+    };
+    drawer.setDrawerListener(toggle);
+
+    list.setOnItemClickListener(new ListView.OnItemClickListener() {
+      @Override
+      public void onItemClick(
+          AdapterView<?> parent, View view, int position, long id) {
+        displayView(position);
+      }
+    });
+
+    if (getApp().getPrefs().showIntro) {
+      displayView(new IntroFragment1());
+    } else if (savedInstanceState == null) {
+      displayView(0);
+    }
+  }
+
+  private void displayView(int position) {
+    if (position < items.size()) {
+      Item item = items.get(position);
+      displayView(newFragmentInstance(item.fragmentClass), position);
+      return;
+    }
+    throw new IllegalStateException("view not found: " + position);
+  }
+
+  private void displayView(Fragment fragment, int position) {
+    displayView(fragment);
+
+    Item item = items.get(position);
+    checkNotNull(item);
+    list.setItemChecked(position, true);
+    list.setSelection(position);
+    setTitle(getString(item.titleId));
+    drawer.closeDrawer(list);
+  }
+
+  private void displayView(Fragment fragment) {
+    FragmentManager fragmentManager = getFragmentManager();
+    fragmentManager.beginTransaction()
+        .replace(R.id.mainFrame, fragment)
+        .addToBackStack(null)
+        .commit();
+  }
+
+  private Fragment newFragmentInstance(
+      Class<? extends Fragment> fragmentClass) {
+    try {
+      return fragmentClass.newInstance();
+    } catch (IllegalAccessException e) {
+      throw new IllegalStateException(e);
+    } catch (InstantiationException e) {
+      throw new IllegalStateException(e);
+    }
+  }
+
+  public void select(Class<? extends Fragment> fragmentClass) {
+    for (Item item : items) {
+      if (item.fragmentClass.equals(fragmentClass)) {
+        list.setItemChecked(items.indexOf(item), true);
+      }
+    }
+  }
+
+  @Override
+  public boolean onOptionsItemSelected(MenuItem item) {
+    if (toggle.onOptionsItemSelected(item)) {
+      return true;
+    }
+    return super.onOptionsItemSelected(item);
+  }
+
+  @Override
+  public void setTitle(CharSequence title) {
+    if (getSupportActionBar() != null) {
+      getSupportActionBar().setTitle(title);
+    }
+  }
+
+  @Override
+  protected void onPostCreate(Bundle savedInstanceState) {
+    super.onPostCreate(savedInstanceState);
+    toggle.syncState();
+  }
+
+  @Override
+  public void onConfigurationChanged(Configuration newConfig) {
+    super.onConfigurationChanged(newConfig);
+    toggle.onConfigurationChanged(newConfig);
+  }
+
+  @Override
+  public boolean dispatchTouchEvent(MotionEvent event) {
+    Fragment fragment = getFragmentManager().findFragmentById(R.id.mainFrame);
+    if (fragment instanceof DispatchTouchEventAware) {
+      ((DispatchTouchEventAware) fragment).dispatchTouchEvent(event);
+    }
+
+    return super.dispatchTouchEvent(event);
+  }
+
+  @Override
+  public void onBackPressed() {
+    Fragment fragment = getFragmentManager().findFragmentById(R.id.mainFrame);
+    if (fragment instanceof OnBackPressedAware) {
+      if (((OnBackPressedAware) fragment).onBackPressed()) {
+        return;
+      }
+    }
+
+    getFragmentManager().executePendingTransactions();
+    int count = getFragmentManager().getBackStackEntryCount();
+    if (count == 0) {
+      super.onBackPressed();
+    } else {
+      getFragmentManager().popBackStack();
+    }
+  }
+
+  private class Item {
+    final Class<? extends Fragment> fragmentClass;
+    final
+    @StringRes
+    int titleId;
+    final
+    @DrawableRes
+    int iconId;
+    Integer count;
+
+    Item(Class<? extends Fragment> fragmentClass, @StringRes int titleId,
+         @DrawableRes int iconId, Integer count) {
+      this.fragmentClass = fragmentClass;
+      this.titleId = titleId;
+      this.iconId = iconId;
+      this.count = count;
+    }
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/OnBackPressedAware.java b/app/src/main/java/com/google/reviewit/OnBackPressedAware.java
new file mode 100644
index 0000000..43c4c4b
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/OnBackPressedAware.java
@@ -0,0 +1,28 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+/**
+ * Interface to be implemented by fragments that want to control the
+ * onBackPressed behaviour.
+ */
+public interface OnBackPressedAware {
+  /**
+   * Invoke when the hardware back button was pressed.
+   *
+   * @return Return true if this event was consumed.
+   */
+  boolean onBackPressed();
+}
diff --git a/app/src/main/java/com/google/reviewit/PostReviewFragment.java b/app/src/main/java/com/google/reviewit/PostReviewFragment.java
new file mode 100644
index 0000000..7dc1560
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/PostReviewFragment.java
@@ -0,0 +1,239 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.os.Bundle;
+import android.support.annotation.DrawableRes;
+import android.support.annotation.LayoutRes;
+import android.view.View;
+import android.view.ViewGroup;
+import android.view.WindowManager;
+import android.widget.ImageView;
+
+import com.google.gerrit.extensions.restapi.RestApiException;
+import com.google.reviewit.app.Change;
+import com.google.reviewit.util.ObservableAsynTask;
+import com.google.reviewit.util.TaskObserver;
+import com.google.reviewit.util.WidgetUtil;
+import com.google.reviewit.widget.ApprovalsView;
+import com.google.reviewit.widget.VoteView;
+import com.urswolfer.gerrit.client.rest.http.HttpStatusException;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import static com.google.reviewit.util.WidgetUtil.setGone;
+import static com.google.reviewit.util.WidgetUtil.setVisible;
+
+/**
+ * Fragment to post a review
+ */
+public class PostReviewFragment extends BaseFragment {
+  private static final String VOTE =
+      "com.google.reviewit.PostReviewFragment.VOTE";
+
+  private Map<String, Integer> selectedValues = new HashMap<>();
+
+  public static PostReviewFragment create(int vote) {
+    PostReviewFragment fragment = new PostReviewFragment();
+    Bundle bundle = new Bundle();
+    bundle.putInt(VOTE, vote);
+    fragment.setArguments(bundle);
+    return fragment;
+  }
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_post_review;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    TaskObserver.enableProgressBar(getWindow());
+
+    // do not show keyboard by default
+    getWindow().setSoftInputMode(
+        WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
+
+    int vote = getArguments().getInt(VOTE);
+    update(vote);
+    Change change = getApp().getActionHandler().getCurrentChange();
+
+    setTitle(getString(R.string.detailed_change_title, change.info._number));
+    init(change);
+    WidgetUtil.setText(v(R.id.subject), change.info.subject);
+    initLabels(change, vote);
+    ((ApprovalsView) v(R.id.approvals)).displayApprovals(getApp(),
+        change.info, this);
+  }
+
+  private void init(final Change change) {
+    v(R.id.expandCommitMessage).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        setGone(v(R.id.expandCommitMessage));
+        setVisible(v(R.id.collapseCommitMessage));
+        WidgetUtil.setText(v(R.id.subject),
+            change.currentRevision().commit.message);
+      }
+    });
+
+    v(R.id.collapseCommitMessage).setOnClickListener(
+        new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        setGone(v(R.id.collapseCommitMessage));
+        setVisible(v(R.id.expandCommitMessage));
+        WidgetUtil.setText(v(R.id.subject), change.info.subject);
+      }
+    });
+
+    v(R.id.postReviewButton).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(final View v) {
+        v.setEnabled(false);
+        v.setBackgroundColor(widgetUtil.color(R.color.buttonDisabled));
+        final String msg = textOf(R.id.changeMessageInput).trim();
+        new ObservableAsynTask<Change, Void, String>() {
+          @Override
+          protected String doInBackground(Change... changes) {
+            Change change = changes[0];
+            try {
+              change.postReview(msg, selectedValues);
+              change.reload();
+              return null;
+            } catch (RestApiException e) {
+              if (e instanceof HttpStatusException) {
+                HttpStatusException se = (HttpStatusException) e;
+                return getString(R.string.review_error, se.getStatusCode(),
+                    se.getStatusText());
+              } else {
+                return e.getMessage();
+              }
+            }
+          }
+
+          @Override
+          protected void postExecute(String errorMsg) {
+            if (errorMsg != null) {
+              v.setEnabled(true);
+              v.setBackgroundColor(widgetUtil.color(R.color.button));
+              widgetUtil.showError(errorMsg);
+            } else {
+              display(SortChangesFragment.class);
+            }
+          }
+        }.execute(change);
+      }
+    });
+
+    v(R.id.postReviewAndSubmitButton).setOnClickListener(
+        new View.OnClickListener() {
+      @Override
+      public void onClick(final View v) {
+        v.setEnabled(false);
+        v.setBackgroundColor(widgetUtil.color(R.color.buttonDisabled));
+        final String msg = textOf(R.id.changeMessageInput).trim();
+        new ObservableAsynTask<Change, Void, String>() {
+          @Override
+          protected String doInBackground(Change... changes) {
+            Change change = changes[0];
+            try {
+              change.postReview(msg, selectedValues);
+            } catch (RestApiException e) {
+              if (e instanceof HttpStatusException) {
+                HttpStatusException se = (HttpStatusException) e;
+                return getString(R.string.review_error, se.getStatusCode(),
+                    se.getStatusText());
+              } else {
+                return e.getMessage();
+              }
+            }
+
+            try {
+              change.submit();
+              change.reload();
+              return null;
+            } catch (RestApiException e) {
+              if (e instanceof HttpStatusException) {
+                HttpStatusException se = (HttpStatusException) e;
+                return getString(R.string.submit_error, se.getStatusCode(),
+                    se.getStatusText());
+              } else {
+                return e.getMessage();
+              }
+            }
+          }
+
+          @Override
+          protected void postExecute(String errorMsg) {
+            if (errorMsg != null) {
+              v.setEnabled(true);
+              v.setBackgroundColor(widgetUtil.color(R.color.button));
+              widgetUtil.showError(errorMsg);
+            } else {
+              display(SortChangesFragment.class);
+            }
+          }
+        }.execute(change);
+      }
+    });
+
+  }
+
+  private void initLabels(Change change, int codeReviewVote) {
+    selectedValues.put("Code-Review", codeReviewVote);
+
+    Map<String, Integer> votes = new HashMap<>();
+    votes.put("Code-Review", codeReviewVote);
+
+    ViewGroup voteInput = vg(R.id.voteInput);
+    VoteView voteView = new VoteView(getContext());
+    voteView.init(change, votes);
+    voteInput.addView(voteView);
+
+    voteView.addOnSelectListener(new VoteView.OnSelectListener() {
+      @Override
+      public void onSelect(String label, int vote) {
+        selectedValues.put(label, vote);
+        if ("Code-Review".equals(label)) {
+          update(vote);
+        }
+      }
+    });
+  }
+
+  private void update(int codeReviewVote) {
+    setGone(v(R.id.postReviewAndSubmitButton));
+
+    @DrawableRes int iconRes;
+    if (codeReviewVote <= -2) {
+      iconRes = R.drawable.ic_sentiment_very_dissatisfied_white_48dp;
+    } else if (codeReviewVote == -1) {
+      iconRes = R.drawable.ic_sentiment_dissatisfied_white_48dp;
+    } else if (codeReviewVote == 0) {
+      iconRes = R.drawable.ic_sentiment_neutral_white_48dp;
+    } else if (codeReviewVote == 1) {
+      iconRes = R.drawable.ic_sentiment_satisfied_white_48dp;
+    } else {
+      iconRes = R.drawable.ic_sentiment_very_satisfied_white_48dp;
+      setVisible(v(R.id.postReviewAndSubmitButton));
+    }
+    ((ImageView) v(R.id.emoticon)).setImageDrawable(
+        widgetUtil.getDrawable(iconRes));
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/PreferencesFragment.java b/app/src/main/java/com/google/reviewit/PreferencesFragment.java
new file mode 100644
index 0000000..95ad634
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/PreferencesFragment.java
@@ -0,0 +1,124 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.os.Bundle;
+import android.support.annotation.IdRes;
+import android.support.annotation.LayoutRes;
+import android.text.InputType;
+import android.view.View;
+import android.widget.CheckBox;
+import android.widget.CompoundButton;
+import android.widget.EditText;
+import android.widget.TextView;
+
+import com.google.reviewit.app.PreferenceManager;
+import com.google.reviewit.app.Preferences;
+import com.google.reviewit.util.WidgetUtil;
+
+/**
+ * Fragment to show the app preferences.
+ */
+public class PreferencesFragment extends BaseFragment {
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_preferences;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    init();
+    displayPrefs(getApp().getPrefs());
+  }
+
+  private void init() {
+    ((CheckBox) v(R.id.autoFontSize)).setOnCheckedChangeListener(
+        new CompoundButton.OnCheckedChangeListener() {
+      @Override
+      public void onCheckedChanged(
+          CompoundButton buttonView, boolean isChecked) {
+        onAutoFontChecked(isChecked);
+      }
+    });
+
+    v(R.id.savePreferences).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        savePreferences();
+      }
+    });
+  }
+
+  private void onAutoFontChecked(boolean isChecked) {
+    EditText fontSizeInput = ((EditText) v(R.id.fontSizeInput));
+    fontSizeInput.setEnabled(!isChecked);
+    TextView fontSize = tv(R.id.fontSize);
+    if (isChecked) {
+      fontSizeInput.setInputType(InputType.TYPE_NULL);
+      fontSize.setTextColor(widgetUtil.color(R.color.text_disabeled));
+    } else {
+      fontSizeInput.setInputType(InputType.TYPE_CLASS_NUMBER);
+      fontSize.setTextColor(widgetUtil.color(R.color.text));
+    }
+  }
+
+  private void savePreferences() {
+    PreferenceManager prefManager = getApp().getPrefManager();
+    prefManager.setPreferences(new Preferences.Builder()
+        .setShowIntro(prefManager.getPreferences().showIntro)
+        .setColorBackground(isChecked(R.id.colorBackgroundPref))
+        .setShowPatchSets(isChecked(R.id.showPatchSetsPref))
+        .setShowPositiveCodeReviewVotes(
+            isChecked(R.id.showPositiveCodeReviewVotesPref))
+        .setShowNegativeCodeReviewVotes(
+            isChecked(R.id.showNegativeCodeReviewVotesPref))
+        .setShowComments(isChecked(R.id.showCommentsPref))
+        .setShowReviewers(isChecked(R.id.showReviewersPref))
+        .setCommitMessageFontSize(isChecked(R.id.autoFontSize)
+            ? -1
+            : Integer.valueOf(textOf(R.id.fontSizeInput)))
+        .build());
+    display(SortChangesFragment.class);
+  }
+
+  private void displayPrefs(Preferences prefs) {
+    setChecked(R.id.colorBackgroundPref, prefs.colorBackground);
+    setChecked(R.id.showPatchSetsPref, prefs.showPatchSets);
+    setChecked(R.id.showPositiveCodeReviewVotesPref,
+        prefs.showPositiveCodeReviewVotes);
+    setChecked(R.id.showNegativeCodeReviewVotesPref,
+        prefs.showNegativeCodeReviewVotes);
+    setChecked(R.id.showCommentsPref, prefs.showComments);
+    setChecked(R.id.showReviewersPref, prefs.showReviewers);
+
+    boolean autoFontSize = prefs.autoFontSizeForCommitMessage();
+    WidgetUtil.setText(v(R.id.fontSizeInput),
+        Integer.toString(autoFontSize
+            ? widgetUtil.spToPx(11)
+            : prefs.commitMessageFontSize));
+    ((CheckBox) v(R.id.autoFontSize)).setChecked(autoFontSize);
+    onAutoFontChecked(autoFontSize);
+  }
+
+  private void setChecked(@IdRes int id, boolean checked) {
+    ((CheckBox) v(id)).setChecked(checked);
+  }
+
+  private boolean isChecked(@IdRes int id) {
+    return ((CheckBox) v(id)).isChecked();
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/RestoreActivity.java b/app/src/main/java/com/google/reviewit/RestoreActivity.java
new file mode 100644
index 0000000..ba729de
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/RestoreActivity.java
@@ -0,0 +1,100 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.app.Fragment;
+import android.os.AsyncTask;
+import android.os.Bundle;
+import android.support.annotation.LayoutRes;
+import android.view.View;
+
+import com.google.gerrit.extensions.restapi.RestApiException;
+import com.google.reviewit.app.Change;
+import com.urswolfer.gerrit.client.rest.http.HttpStatusException;
+
+/**
+ * Fragment to restore a change.
+ */
+public class RestoreActivity extends BaseFragment
+    implements OnBackPressedAware {
+  private static final String ORIGIN =
+      "com.google.reviewit.RestoreActivity.ORIGIN";
+
+  public static RestoreActivity create(Class<? extends Fragment> origin) {
+    RestoreActivity fragment = new RestoreActivity();
+    Bundle bundle = new Bundle();
+    bundle.putSerializable(ORIGIN, origin);
+    fragment.setArguments(bundle);
+    return fragment;
+  }
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_restore;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    Change change = getApp().getActionHandler().getCurrentChange();
+    setTitle(getString(R.string.restore_change_title, change.info._number));
+    init(change);
+  }
+
+  private void init(final Change change) {
+    v(R.id.restoreButton).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(final View v) {
+        v.setEnabled(false);
+        v.setBackgroundColor(widgetUtil.color(R.color.buttonDisabled));
+        new AsyncTask<Change, Void, String>() {
+          @Override
+          protected String doInBackground(Change... changes) {
+            Change change = changes[0];
+            try {
+              change.restore(textOf(R.id.restoreMessageInput).trim());
+              return null;
+            } catch (RestApiException e) {
+              if (e instanceof HttpStatusException) {
+                HttpStatusException se = (HttpStatusException) e;
+                return getString(R.string.restore_error, se.getStatusCode(),
+                    se.getStatusText());
+              } else {
+                return e.getMessage();
+              }
+            }
+          }
+
+          protected void onPostExecute(String errorMsg) {
+            if (errorMsg != null) {
+              v.setEnabled(true);
+              v.setBackgroundColor(widgetUtil.color(R.color.button));
+              widgetUtil.showError(errorMsg);
+            } else {
+              display(SortChangesFragment.class);
+            }
+          }
+        }.execute(change);
+      }
+    });
+  }
+
+  @Override
+  public boolean onBackPressed() {
+    display((Class<? extends Fragment>) getArguments().get(ORIGIN));
+    return true;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/ReviewChangesFragment.java b/app/src/main/java/com/google/reviewit/ReviewChangesFragment.java
new file mode 100644
index 0000000..b38f651
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/ReviewChangesFragment.java
@@ -0,0 +1,25 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.support.annotation.LayoutRes;
+
+public class ReviewChangesFragment extends BaseFragment {
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_review_changes;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/SemiCircleDrawable.java b/app/src/main/java/com/google/reviewit/SemiCircleDrawable.java
new file mode 100644
index 0000000..26d3ecb
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/SemiCircleDrawable.java
@@ -0,0 +1,99 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.graphics.Canvas;
+import android.graphics.ColorFilter;
+import android.graphics.Paint;
+import android.graphics.Rect;
+import android.graphics.RectF;
+import android.graphics.drawable.Drawable;
+
+/**
+ * Drawable for semi circles.
+ */
+public class SemiCircleDrawable extends Drawable {
+  public enum Direction {
+    LEFT,
+    RIGHT,
+    TOP,
+    BOTTOM
+  }
+
+  private Direction angle;
+  private int color;
+  private int borderColor;
+  private Paint paint;
+  private RectF rectF;
+
+  public SemiCircleDrawable(Direction angle, int color, int borderColor) {
+    this.angle = angle;
+    this.color = color;
+    this.borderColor = borderColor;
+    this.paint = new Paint();
+    this.rectF = new RectF();
+  }
+
+  @Override
+  public void draw(Canvas canvas) {
+    canvas.save();
+
+    Rect bounds = getBounds();
+    if (angle == Direction.LEFT || angle == Direction.RIGHT) {
+      canvas.scale(2, 1);
+      if (angle == Direction.RIGHT) {
+        canvas.translate(-(bounds.right / 2), 0);
+      }
+    } else {
+      canvas.scale(1, 2);
+      if (angle == Direction.BOTTOM) {
+        canvas.translate(0, -(bounds.bottom / 2));
+      }
+    }
+
+    rectF.set(bounds);
+    drawArc(canvas, color, Paint.Style.FILL);
+    drawArc(canvas, borderColor, Paint.Style.STROKE);
+  }
+
+  private void drawArc(Canvas canvas, int color, Paint.Style style) {
+    paint.setColor(color);
+    paint.setStyle(style);
+    if (angle == Direction.LEFT) {
+      canvas.drawArc(rectF, 90, 180, true, paint);
+    } else if (angle == Direction.TOP) {
+      canvas.drawArc(rectF, -180, 180, true, paint);
+    } else if (angle == Direction.RIGHT) {
+      canvas.drawArc(rectF, 270, 180, true, paint);
+    } else if (angle == Direction.BOTTOM) {
+      canvas.drawArc(rectF, 0, 180, true, paint);
+    }
+  }
+
+  @Override
+  public void setAlpha(int alpha) {
+    throw new UnsupportedOperationException();
+  }
+
+  @Override
+  public void setColorFilter(ColorFilter cf) {
+    throw new UnsupportedOperationException();
+  }
+
+  @Override
+  public int getOpacity() {
+    return 0;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/ServerListFragment.java b/app/src/main/java/com/google/reviewit/ServerListFragment.java
new file mode 100644
index 0000000..2df4757
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/ServerListFragment.java
@@ -0,0 +1,125 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.app.AlertDialog;
+import android.content.DialogInterface;
+import android.os.Bundle;
+import android.support.annotation.LayoutRes;
+import android.view.View;
+import android.widget.ImageView;
+import android.widget.TableLayout;
+import android.widget.TableRow;
+import android.widget.TextView;
+
+import com.google.reviewit.app.ConfigManager;
+import com.google.reviewit.app.ServerConfig;
+
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapTableLayout;
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapTableRowLayout;
+import static com.google.reviewit.util.LayoutUtil.wrapTableRowLayout;
+
+public class ServerListFragment extends BaseFragment {
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_server_list;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    init();
+    displayServerList();
+  }
+
+  private void init() {
+    v(R.id.add_server).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        display(ServerSettingsFragment.create(ServerListFragment.class));
+      }
+    });
+  }
+
+  private void displayServerList() {
+    ConfigManager cfgManager = getApp().getConfigManager();
+    TableLayout tl = (TableLayout) v(R.id.serverTable);
+    tl.removeAllViews();
+
+    for (final ServerConfig cfg : cfgManager.getServers()) {
+      TableRow tr = new TableRow(getContext());
+      tr.setLayoutParams(matchAndWrapTableRowLayout());
+
+      // edit icon
+      tr.addView(createIcon(R.drawable.ic_create_black_24dp,
+          new View.OnClickListener() {
+        @Override
+        public void onClick(View v) {
+          display(ServerSettingsFragment.create(
+              ServerListFragment.class, cfg.id));
+        }
+      }));
+
+      // delete icon
+      tr.addView(createIcon(R.drawable.ic_clear_black_24dp,
+          new View.OnClickListener() {
+        @Override
+        public void onClick(View v) {
+          removeServer(cfg);
+        }
+      }));
+
+      TextView serverName = new TextView(getContext());
+      serverName.setLayoutParams(wrapTableRowLayout());
+      serverName.setText(cfg.name);
+      tr.addView(serverName);
+
+      tl.addView(tr, matchAndWrapTableLayout());
+    }
+  }
+
+  private ImageView createIcon(
+      int drawableId, View.OnClickListener onClickListener) {
+    ImageView icon = new ImageView(getContext());
+    TableRow.LayoutParams layoutParams = new TableRow.LayoutParams(
+        widgetUtil.dpToPx(20), widgetUtil.dpToPx(20));
+    layoutParams.setMargins(0, 0, widgetUtil.dpToPx(5), 0);
+    icon.setLayoutParams(layoutParams);
+    // TODO use setBackGround(Drawable) with API 16
+    icon.setBackgroundDrawable(widgetUtil.getDrawable(drawableId));
+    icon.setOnClickListener(onClickListener);
+    return icon;
+  }
+
+  private void removeServer(final ServerConfig cfg) {
+    new AlertDialog.Builder(getContext())
+        .setTitle(getString(R.string.server_remove_title))
+        .setMessage(getString(R.string.server_remove_message, cfg.name))
+        .setPositiveButton(android.R.string.yes,
+            new DialogInterface.OnClickListener() {
+      public void onClick(DialogInterface dialog, int which) {
+        getApp().getConfigManager().removeServer(cfg.id);
+        displayServerList();
+      }
+    }).setNegativeButton(android.R.string.no,
+        new DialogInterface.OnClickListener() {
+      public void onClick(DialogInterface dialog, int which) {
+        // do nothing
+      }
+    }).setIcon(android.R.drawable.ic_dialog_alert).show();
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/ServerSettingsFragment.java b/app/src/main/java/com/google/reviewit/ServerSettingsFragment.java
new file mode 100644
index 0000000..a7b4c74
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/ServerSettingsFragment.java
@@ -0,0 +1,408 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.app.AlertDialog;
+import android.app.Fragment;
+import android.content.ClipData;
+import android.content.ClipDescription;
+import android.content.ClipboardManager;
+import android.content.Context;
+import android.content.DialogInterface;
+import android.content.Intent;
+import android.os.AsyncTask;
+import android.os.Bundle;
+import android.support.annotation.LayoutRes;
+import android.text.Editable;
+import android.text.Html;
+import android.text.TextWatcher;
+import android.text.method.LinkMovementMethod;
+import android.util.Log;
+import android.view.View;
+import android.view.inputmethod.InputMethodManager;
+import android.widget.ArrayAdapter;
+import android.widget.AutoCompleteTextView;
+import android.widget.EditText;
+import android.widget.TextView;
+
+import com.google.common.base.Strings;
+import com.google.gerrit.extensions.api.GerritApi;
+import com.google.gerrit.extensions.restapi.RestApiException;
+import com.google.reviewit.app.ConfigManager;
+import com.google.reviewit.app.Preferences;
+import com.google.reviewit.app.QueryConfig;
+import com.google.reviewit.app.ServerConfig;
+import com.google.reviewit.util.FormatUtil;
+import com.google.reviewit.util.WidgetUtil;
+import com.urswolfer.gerrit.client.rest.GerritAuthData;
+import com.urswolfer.gerrit.client.rest.GerritRestApiFactory;
+import com.urswolfer.gerrit.client.rest.http.HttpStatusException;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+
+import static com.google.reviewit.util.WidgetUtil.setGone;
+import static com.google.reviewit.util.WidgetUtil.setInvisible;
+import static com.google.reviewit.util.WidgetUtil.setVisible;
+
+public class ServerSettingsFragment extends BaseFragment {
+  private static final String TAG = ServerSettingsFragment.class.getName();
+  private static final String ORIGIN =
+      "com.google.reviewit.ServerSettingsFragment.ORIGIN";
+  private static final String SERVER_ID =
+      "com.google.reviewit.ServerSettingsFragment.SERVER_ID";
+
+  public static ServerSettingsFragment create(
+      Class<? extends Fragment> origin) {
+    ServerSettingsFragment fragment = new ServerSettingsFragment();
+    Bundle bundle = new Bundle();
+    bundle.putSerializable(ORIGIN, origin);
+    fragment.setArguments(bundle);
+    return fragment;
+  }
+
+  public static ServerSettingsFragment create(
+      Class<? extends Fragment> origin, String serverId) {
+    ServerSettingsFragment fragment = new ServerSettingsFragment();
+    Bundle bundle = new Bundle();
+    bundle.putSerializable(ORIGIN, origin);
+    bundle.putString(SERVER_ID, serverId);
+    fragment.setArguments(bundle);
+    return fragment;
+  }
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_server_settings;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    init();
+    String serverId = getArguments() != null
+        ? getArguments().getString(SERVER_ID)
+        : null;
+    displayServerConfig(serverId != null ? getApp().getConfigManager()
+        .getServerConfig(serverId) : null);
+  }
+
+  private void displayServerConfig(ServerConfig cfg) {
+    if (cfg != null) {
+      WidgetUtil.setText(v(R.id.idInput), cfg.id);
+      WidgetUtil.setText(v(R.id.nameInput), cfg.name);
+      WidgetUtil.setText(v(R.id.urlInput), cfg.url);
+      WidgetUtil.setText(v(R.id.userInput), cfg.user);
+      WidgetUtil.setText(v(R.id.passwordInput), cfg.password);
+
+      displayCredentialsInfo(cfg.url);
+    } else {
+      WidgetUtil.setText(v(R.id.idInput), "");
+      WidgetUtil.setText(v(R.id.nameInput), "");
+      WidgetUtil.setText(v(R.id.urlInput), "");
+      WidgetUtil.setText(v(R.id.userInput), "");
+      WidgetUtil.setText(v(R.id.passwordInput), "");
+
+      displayCredentialsInfo(null);
+    }
+  }
+
+  private void init() {
+    final AutoCompleteTextView urlInput =
+        (AutoCompleteTextView) v(R.id.urlInput);
+    ArrayAdapter<String> adapter =
+        new ArrayAdapter<>(getContext(), android.R.layout.simple_list_item_1,
+            getResources().getStringArray(R.array.urls));
+    urlInput.setAdapter(adapter);
+
+    v(R.id.pasteCredentialsButton).setOnClickListener(
+        new View.OnClickListener() {
+          @Override
+          public void onClick(View v) {
+            ClipboardManager clipboard = (ClipboardManager) getActivity()
+                .getSystemService(Context.CLIPBOARD_SERVICE);
+            if (clipboard.hasPrimaryClip()
+                && clipboard.getPrimaryClipDescription().hasMimeType(
+                ClipDescription.MIMETYPE_TEXT_PLAIN)) {
+              ClipData.Item item = clipboard.getPrimaryClip().getItemAt(0);
+              String pasteData = item.getText().toString();
+              if (!pasteData.contains("/.gitcookies")) {
+                return;
+              }
+
+              pasteData = pasteData.substring(pasteData.indexOf("/.gitcookies"));
+              pasteData = pasteData.substring(pasteData.lastIndexOf(",") + 1);
+              int pos = pasteData.indexOf("=");
+              String user = pasteData.substring(0, pos);
+              pasteData = pasteData.substring(pos + 1);
+              String password = pasteData.substring(0, pasteData.indexOf("\n"));
+              WidgetUtil.setText(v(R.id.userInput), user);
+              WidgetUtil.setText(v(R.id.passwordInput), password);
+
+              // hide keyboard if it is open
+              View view = getActivity().getCurrentFocus();
+              if (view != null) {
+                ((InputMethodManager) getActivity().getSystemService(
+                    Context.INPUT_METHOD_SERVICE))
+                        .hideSoftInputFromWindow(view.getWindowToken(), 0);
+              }
+            }
+          }
+        });
+
+    ((EditText) v(R.id.urlInput)).addTextChangedListener(new TextWatcher() {
+      @Override
+      public void beforeTextChanged(
+          CharSequence s, int start, int count, int after) {
+      }
+
+      @Override
+      public void onTextChanged(
+          CharSequence s, int start, int before, int count) {
+      }
+
+      @Override
+      public void afterTextChanged(Editable s) {
+        if (Strings.isNullOrEmpty(textOf(R.id.nameInput))) {
+          try {
+            String host = new URL(s.toString()).getHost();
+            int pos = host.indexOf(".");
+            WidgetUtil.setText(v(R.id.nameInput),
+                pos > 0
+                    ? host.substring(0, pos)
+                    : host);
+          } catch (MalformedURLException e) {
+            // ignore
+          }
+        }
+        displayCredentialsInfo(s.toString());
+      }
+    });
+
+    v(R.id.saveServerSettings).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        enabledForm(false);
+
+        if (!isServerInputComplete()) {
+          widgetUtil.showError(R.string.incompleteInput);
+          enabledForm(true);
+          return;
+        }
+
+        if (!isUrlValid()) {
+          widgetUtil.showError(R.string.invalidUrl);
+          enabledForm(true);
+          return;
+        }
+
+        if (!hasUniqueName()) {
+          widgetUtil.showError(
+              getString(R.string.duplicate_server_name, textOf(R.id.nameInput)));
+          enabledForm(true);
+          return;
+        }
+
+        setVisible(
+            v(R.id.statusTestConnection, R.id.statusTestConnectionProgress));
+        WidgetUtil.setText(v(R.id.statusTestConnectionText), null);
+        new AsyncTask<Void, Void, String>() {
+          private TextView status;
+          private View statusTestConnectionProgress;
+          private View statusTestConnection;
+
+          @Override
+          protected void onPreExecute() {
+            super.onPreExecute();
+            status = tv(R.id.statusTestConnectionText);
+            statusTestConnectionProgress = v(R.id.statusTestConnectionProgress);
+            statusTestConnection = v(R.id.statusTestConnection);
+          }
+
+          @Override
+          protected String doInBackground(Void... v) {
+            return testConnection();
+          }
+
+          protected void onPostExecute(String errorMsg) {
+            if (errorMsg != null) {
+              enabledForm(true);
+              status.setTextColor(widgetUtil.color(R.color.statusFailed));
+              status.setText(getString(R.string.test_server_connection_failed));
+              setInvisible(statusTestConnectionProgress);
+              new AlertDialog.Builder(getContext())
+                  .setTitle(getString(R.string.error_title))
+                  .setMessage(getString(R.string.connection_failed, errorMsg))
+                  .setPositiveButton(android.R.string.ok,
+                      new DialogInterface.OnClickListener() {
+                        public void onClick(DialogInterface dialog, int which) {
+                          // do nothing
+                        }
+                      }).setNegativeButton(getString(R.string.save_anyway),
+                  new DialogInterface.OnClickListener() {
+                    public void onClick(DialogInterface dialog, int which) {
+                      setGone(statusTestConnection);
+                      onServerSave(saveServerSettings());
+                    }
+                  }).setIcon(android.R.drawable.ic_dialog_alert).show();
+            } else {
+              status.setTextColor(widgetUtil.color(R.color.statusOk));
+              status.setText(getString(R.string.test_server_connection_ok));
+              setGone(statusTestConnection);
+              onServerSave(saveServerSettings());
+            }
+          }
+        }.execute(new Void[]{});
+      }
+    });
+
+    enabledForm(true);
+    setGone(v(R.id.statusTestConnection));
+  }
+
+  private void enabledForm(boolean enable) {
+    v(R.id.urlInput).setEnabled(enable);
+    v(R.id.nameInput).setEnabled(enable);
+    v(R.id.pasteCredentialsButton).setEnabled(enable);
+    v(R.id.userInput).setEnabled(enable);
+    v(R.id.passwordInput).setEnabled(enable);
+    v(R.id.saveServerSettings).setEnabled(enable);
+  }
+
+  private boolean isServerInputComplete() {
+    return !Strings.isNullOrEmpty(textOf(R.id.urlInput))
+        && !Strings.isNullOrEmpty(textOf(R.id.nameInput))
+        && !Strings.isNullOrEmpty(textOf(R.id.userInput))
+        && !Strings.isNullOrEmpty(textOf(R.id.passwordInput));
+  }
+
+  private boolean isUrlValid() {
+    try {
+      new URL(textOf(R.id.urlInput));
+      return true;
+    } catch (MalformedURLException e) {
+      return false;
+    }
+  }
+
+  private boolean hasUniqueName() {
+    if (!Strings.isNullOrEmpty(textOf(R.id.idInput))) {
+      // update of existing entry
+      return true;
+    }
+
+    ServerConfig otherCfg =
+        getApp().getConfigManager().getServerByName(textOf(R.id.nameInput));
+    return otherCfg == null;
+  }
+
+  private String testConnection() {
+    GerritApi api = new GerritRestApiFactory().create(
+        new GerritAuthData.Basic(
+            textOf(R.id.urlInput),
+            textOf(R.id.userInput),
+            textOf(R.id.passwordInput)));
+    try {
+      api.changes().query().withLimit(1).get();
+
+      String version = api.config().server().getVersion();
+      Log.i(TAG, "version of " + textOf(R.id.nameInput) + ": " + version);
+      // TODO check server version (server must support labeled stars and
+      // run notedb)
+      return null;
+    } catch (HttpStatusException e) {
+      return e.getStatusCode() + " " + e.getStatusText();
+    } catch (RestApiException e) {
+      // server not reachable
+      Log.e(TAG, "Request failed", e);
+      if (e.getCause() != null) {
+        return getString(R.string.error_with_cause, e.getMessage(),
+            e.getCause().getMessage());
+      } else {
+        return e.getMessage();
+      }
+    }
+  }
+
+  private void onServerSave(String serverId) {
+    if (getArguments().get(ORIGIN).equals(IntroFragment2.class)) {
+      ConfigManager cfgManager = getApp().getConfigManager();
+      cfgManager.setQueryConfig(
+          new QueryConfig.Builder(cfgManager.getQueryConfig())
+              .setServerId(serverId)
+              .build());
+      getApp().getPrefManager().setPreferences(
+          new Preferences.Builder(getApp().getPrefManager().getPreferences())
+              .setShowIntro(false)
+              .build());
+      startActivity(new Intent(getContext(), MainActivity.class));
+    } else {
+      display(ServerListFragment.class);
+    }
+  }
+
+  private void displayCredentialsInfo(String url) {
+    if (Strings.isNullOrEmpty(url)) {
+      setGone(v(R.id.crendentialsInfo, R.id.credentialsInfoText,
+          R.id.pasteCredentialsButton));
+      return;
+    }
+
+    TextView credentialsInfo = (TextView) v(R.id.credentialsInfoText);
+    credentialsInfo.setMovementMethod(LinkMovementMethod.getInstance());
+    url = FormatUtil.ensureSlash(url);
+
+    String host;
+    try {
+      host = new URL(url).getHost();
+    } catch (MalformedURLException e) {
+      setGone(v(R.id.crendentialsInfo, R.id.credentialsInfoText,
+          R.id.pasteCredentialsButton));
+      return;
+    }
+
+    if (host.endsWith(".googlesource.com")) {
+      url += "new-password";
+      credentialsInfo.setText(Html.fromHtml(
+          getString(R.string.credentials_info_googlesource,
+              createLink(url, getString(R.string.googlesource_obtain_password)))));
+      setVisible(v(R.id.crendentialsInfo, R.id.credentialsInfoText,
+          R.id.pasteCredentialsButton));
+    } else {
+      url += "#/settings/http-password";
+      credentialsInfo.setText(Html.fromHtml(
+          getString(R.string.credentials_info,
+              createLink(url, getString(R.string.http_password)))));
+      setGone(v(R.id.pasteCredentialsButton));
+      setVisible(v(R.id.crendentialsInfo, R.id.credentialsInfoText));
+    }
+  }
+
+  private String createLink(String url, String text) {
+    return "<a href=\"" + url + "\">" + text + "</a>";
+  }
+
+  private String saveServerSettings() {
+    return getApp().getConfigManager().setServerConfig(
+        new ServerConfig.Builder()
+            .setId(textOf(R.id.idInput))
+            .setName(textOf(R.id.nameInput))
+            .setUrl(textOf(R.id.urlInput))
+            .setUser(textOf(R.id.userInput))
+            .setPassword(textOf(R.id.passwordInput))
+            .build());
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/SettingsFragment.java b/app/src/main/java/com/google/reviewit/SettingsFragment.java
new file mode 100644
index 0000000..c81210e
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/SettingsFragment.java
@@ -0,0 +1,68 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.os.Bundle;
+import android.support.annotation.LayoutRes;
+import android.view.Menu;
+import android.view.MenuInflater;
+import android.view.MenuItem;
+import android.view.View;
+
+public class SettingsFragment extends BaseFragment {
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_settings;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    setHasOptionsMenu(true);
+
+    v(R.id.serverConfig).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        display(ServerListFragment.class);
+      }
+    });
+
+    v(R.id.sortConfig).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        display(SortSettingFragment.class);
+      }
+    });
+  }
+
+  @Override
+  public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
+    inflater.inflate(R.menu.menu_settings, menu);
+    super.onCreateOptionsMenu(menu, inflater);
+  }
+
+  @Override
+  public boolean onOptionsItemSelected(MenuItem item) {
+    switch (item.getItemId()) {
+      case R.id.action_clean_avatar_cache:
+        getApp().getAvatarCache().clean();
+        return true;
+      default:
+        return super.onOptionsItemSelected(item);
+    }
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/SortChangesFragment.java b/app/src/main/java/com/google/reviewit/SortChangesFragment.java
new file mode 100644
index 0000000..b310481
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/SortChangesFragment.java
@@ -0,0 +1,660 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.animation.Animator;
+import android.animation.ObjectAnimator;
+import android.animation.ValueAnimator;
+import android.content.Context;
+import android.graphics.Point;
+import android.graphics.drawable.GradientDrawable;
+import android.os.AsyncTask;
+import android.os.Bundle;
+import android.support.annotation.ColorRes;
+import android.support.annotation.IdRes;
+import android.support.annotation.LayoutRes;
+import android.util.Log;
+import android.util.TypedValue;
+import android.view.Menu;
+import android.view.MenuInflater;
+import android.view.MenuItem;
+import android.view.MotionEvent;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.TextView;
+
+import com.google.gerrit.extensions.client.ChangeStatus;
+import com.google.gerrit.extensions.restapi.RestApiException;
+import com.google.reviewit.app.ActionHandler;
+import com.google.reviewit.app.Change;
+import com.google.reviewit.app.ConfigManager;
+import com.google.reviewit.app.QueryConfig;
+import com.google.reviewit.util.ChangeUtil;
+import com.google.reviewit.widget.ChangeBox;
+import com.google.reviewit.util.NoOpAnimatorListener;
+import com.google.reviewit.util.ObservableAsynTask;
+import com.google.reviewit.util.TaskObserver;
+import com.google.reviewit.util.WidgetUtil;
+import com.urswolfer.gerrit.client.rest.http.HttpStatusException;
+
+import static com.google.reviewit.util.WidgetUtil.setGone;
+import static com.google.reviewit.util.WidgetUtil.setInvisible;
+import static com.google.reviewit.util.WidgetUtil.setVisible;
+
+/**
+ * Fragment that presents changes one by one and lets the user decide to
+ * ignore/skip/star each change.
+ */
+public class SortChangesFragment extends BaseFragment
+    implements OnBackPressedAware {
+  private static final String TAG = SortChangesFragment.class.getName();
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_sort_changes;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    setTitle(getString(R.string.app_menu_sort));
+
+    setHasOptionsMenu(true);
+
+    if (getActionHandler().hasCurrentChange()) {
+      getActionHandler().pushBack();
+    }
+
+    TaskObserver.enableProgressBar(getWindow());
+    init();
+    display();
+  }
+
+  @Override
+  public void onAttach(Context context) {
+    super.onAttach(context);
+  }
+
+  private void display() {
+    ConfigManager cfgManager = getApp().getConfigManager();
+    QueryConfig config = cfgManager.getQueryConfig();
+    if (!config.isComplete()) {
+      display(SortSettingFragment.class);
+      return;
+    }
+
+    if (!isOnline()) {
+      setInvisible(v(R.id.progress));
+      WidgetUtil.setText(v(R.id.noResultBoxText),
+          getString(R.string.no_network));
+      setVisible(v(R.id.root, R.id.noResultBox));
+      setGone(v(R.id.resultBox, R.id.loadingBox));
+      return;
+    }
+
+    if (getActionHandler().isQueryNeeded()) {
+      if (v(R.id.changeBox) == null) {
+        setVisible(v(R.id.loadingBox));
+        setInvisible(v(R.id.progress));
+        disableButtons();
+        showButtons(false);
+      } else {
+        setVisible(v(R.id.progress));
+      }
+    } else {
+      Change change = getActionHandler().preview();
+      if (change != null) {
+        ChangeUtil.colorBackground(root, change);
+      }
+    }
+    setVisible(v(R.id.root));
+
+    new AsyncTask<Void, Void, ChangeData>() {
+      private View progress;
+      private View loadingBox;
+      private ViewGroup resultBox;
+      private View noResultBox;
+      private TextView noResultBoxText;
+      private ChangeBox changeBox;
+
+      @Override
+      protected void onPreExecute() {
+        super.onPreExecute();
+        progress = v(R.id.progress);
+        loadingBox = v(R.id.loadingBox);
+        resultBox = vg(R.id.resultBox);
+        noResultBox = v(R.id.noResultBox);
+        noResultBoxText = tv(R.id.noResultBoxText);
+        changeBox = (ChangeBox) v(R.id.changeBox);
+      }
+
+      @Override
+      protected ChangeData doInBackground(Void... v) {
+        try {
+          ActionHandler actionHandler = getActionHandler();
+          if (actionHandler.hasNext()) {
+            Change change = actionHandler.next();
+            int queueSize = actionHandler.getQueueSize();
+            Change nextChange = null;
+            if (queueSize > 0) {
+              nextChange = actionHandler.preview();
+            }
+            return new ChangeData(change, nextChange, queueSize);
+          } else {
+            return ChangeData.empty();
+          }
+        } catch (RestApiException e) {
+          // e.g. server not reachable
+          Log.e(TAG, "Request failed", e);
+          if (e.getCause() != null) {
+            return new ChangeData(getString(R.string.error_with_cause,
+                e.getMessage(), e.getCause().getMessage()));
+          } else {
+            return new ChangeData(e.getMessage());
+          }
+        }
+      }
+
+      protected void onPostExecute(ChangeData changeData) {
+        if (getActivity() == null) {
+          // user navigated away while we were waiting for the request
+          return;
+        }
+
+        getActivity().invalidateOptionsMenu();
+        setInvisible(progress);
+
+        if (changeData.error != null) {
+          noResultBoxText.setTextSize(TypedValue.COMPLEX_UNIT_SP, 15);
+          noResultBoxText.setText(changeData.error);
+          setVisible(noResultBox);
+          setGone(resultBox, loadingBox);
+          return;
+        }
+
+        if (changeData.change != null) {
+          setVisible(resultBox);
+          setGone(noResultBox, loadingBox);
+
+          if (changeBox == null) {
+            changeBox = new ChangeBox(getContext());
+            resultBox.addView(changeBox);
+            changeBox.display(getApp(), changeData.change);
+          }
+          ChangeUtil.colorBackground(root, changeData.change);
+
+          initButtons(changeBox);
+          initSwipeAnimation(changeBox);
+
+          if (changeData.nextChange != null) {
+            ChangeBox changeBox2 = new ChangeBox(getContext());
+            resultBox.addView(changeBox2, resultBox.getChildCount() - 1);
+            changeBox2.display(getApp(), changeData.nextChange);
+          }
+          pageEffect(changeData.queueSize);
+        } else {
+          noResultBoxText.setText(getString(R.string.no_more_changes));
+          setVisible(noResultBox);
+          setGone(resultBox, loadingBox);
+        }
+      }
+    }.execute(new Void[]{});
+  }
+
+  private void init() {
+    v(R.id.reloadButton).setOnClickListener(new View.OnClickListener() {
+      public void onClick(View v) {
+        reloadQuery();
+      }
+    });
+  }
+
+  private void initButtons(final View changeBox) {
+    showButtons(true);
+
+    setButtonBackgroundEnabled(R.id.ignoreLayout,
+        SemiCircleDrawable.Direction.RIGHT);
+    setButtonBackgroundEnabled(R.id.skipButton,
+        SemiCircleDrawable.Direction.TOP);
+    setButtonBackgroundEnabled(R.id.starLayout,
+        SemiCircleDrawable.Direction.LEFT);
+
+    v(R.id.skipButton).setOnClickListener(new View.OnClickListener() {
+      public void onClick(View v) {
+        disableButtons();
+        getActionHandler().skip();
+        animate(changeBox, ActionHandler.Action.SKIP);
+      }
+    });
+
+    View.OnClickListener onStarClickListener = new View.OnClickListener() {
+      public void onClick(View v) {
+        disableButtons();
+        getActionHandler().star();
+        animate(changeBox, ActionHandler.Action.STAR);
+      }
+    };
+    v(R.id.starButton).setOnClickListener(onStarClickListener);
+    v(R.id.starLayout).setOnClickListener(onStarClickListener);
+
+    View.OnClickListener onIgnoreClickListener = new View.OnClickListener() {
+      public void onClick(View v) {
+        disableButtons();
+        getActionHandler().ignore();
+        animate(changeBox, ActionHandler.Action.IGNORE);
+      }
+    };
+    v(R.id.ignoreButton).setOnClickListener(onIgnoreClickListener);
+    v(R.id.ignoreLayout).setOnClickListener(onIgnoreClickListener);
+
+    changeBox.findViewById(R.id.changeBoxLowerPart).setOnClickListener(
+        new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        display(DetailedChangeFragment.class);
+      }
+    });
+  }
+
+  private void disableButtons() {
+    setButtonBackgroundDisabled(R.id.ignoreLayout,
+        SemiCircleDrawable.Direction.RIGHT);
+    setButtonBackgroundDisabled(R.id.skipButton,
+        SemiCircleDrawable.Direction.TOP);
+    setButtonBackgroundDisabled(R.id.starLayout,
+        SemiCircleDrawable.Direction.LEFT);
+
+    v(R.id.skipButton).setOnClickListener(null);
+    v(R.id.starButton).setOnClickListener(null);
+    v(R.id.starLayout).setOnClickListener(null);
+    v(R.id.ignoreButton).setOnClickListener(null);
+    v(R.id.ignoreLayout).setOnClickListener(null);
+  }
+
+  private void showButtons(boolean show) {
+    if (show) {
+      setVisible(v(R.id.skipButton, R.id.starButton, R.id.starLayout,
+          R.id.ignoreButton, R.id.ignoreLayout));
+    } else {
+      setInvisible(v(R.id.skipButton, R.id.starButton, R.id.starLayout,
+          R.id.ignoreButton, R.id.ignoreLayout));
+    }
+  }
+
+  // TODO extract animation into own class
+  private void initSwipeAnimation(final View changeBox) {
+    final Point screenSize = getScreenSize();
+    final int screenCenter = screenSize.x / 2;
+
+    // TODO swipe animation doesn't look good on wide screens,
+    // e.g. when phone is turned horizontally
+    final ViewGroup resultBox = vg(R.id.resultBox);
+    changeBox.findViewById(R.id.changeBoxUpperPart).setOnTouchListener(
+        new View.OnTouchListener() {
+      private ActionHandler.Action action = ActionHandler.Action.NONE;
+      private int x;
+      private int y;
+
+      @Override
+      public boolean onTouch(View v, MotionEvent event) {
+        int eventX = (int) event.getRawX();
+        int eventY = (int) event.getRawY();
+        switch (event.getAction()) {
+          case MotionEvent.ACTION_DOWN:
+            x = (int) event.getRawX();
+            y = (int) event.getRawY();
+            break;
+          case MotionEvent.ACTION_MOVE:
+            changeBox.setX(widgetUtil.getDimension(R.dimen
+                .activity_horizontal_margin) + eventX - x);
+            changeBox.setY(widgetUtil.getDimension(R.dimen
+                .activity_vertical_margin) + eventY - y);
+
+            if (eventX >= screenCenter) {
+              changeBox.setRotation(
+                  (float) ((eventX - screenCenter) * (Math.PI / 32)));
+
+              if (eventX > (screenCenter + (screenCenter / 2))) {
+                ((GradientDrawable) changeBox.getBackground())
+                    .setColor(widgetUtil.color(R.color.commitMessageStar));
+                action = ActionHandler.Action.STAR;
+              } else {
+                action = ActionHandler.Action.NONE;
+                ((GradientDrawable) changeBox.getBackground())
+                    .setColor(widgetUtil.color(R.color.commitMessage));
+              }
+            } else {
+              changeBox.setRotation(
+                  (float) ((eventX - screenCenter) * (Math.PI / 32)));
+              if (eventX < (screenCenter / 2)) {
+                ((GradientDrawable) changeBox.getBackground())
+                    .setColor(widgetUtil.color(R.color.commitMessageIgnore));
+                action = ActionHandler.Action.IGNORE;
+              } else {
+                action = ActionHandler.Action.NONE;
+                ((GradientDrawable) changeBox.getBackground())
+                    .setColor(widgetUtil.color(R.color.commitMessage));
+              }
+            }
+            break;
+          case MotionEvent.ACTION_UP:
+            ((GradientDrawable) changeBox.getBackground())
+                .setColor(widgetUtil.color(R.color.commitMessage));
+            switch (action) {
+              case STAR:
+                getActionHandler().star();
+                resultBox.removeView(changeBox);
+                display();
+                break;
+              case IGNORE:
+                getActionHandler().ignore();
+                resultBox.removeView(changeBox);
+                display();
+                break;
+              case SKIP:
+                getActionHandler().skip();
+                resultBox.removeView(changeBox);
+                display();
+                break;
+              case NONE:
+                WidgetUtil.setXY(changeBox,
+                    widgetUtil.getDimension(R.dimen.activity_horizontal_margin),
+                    widgetUtil.getDimension(R.dimen.activity_vertical_margin));
+                changeBox.setRotation(0);
+                break;
+              default:
+                throw new IllegalStateException("unknown action: " + action);
+            }
+            break;
+          default:
+            break;
+        }
+        return true;
+      }
+    });
+  }
+
+  private void animate(
+      final View changeBox, final ActionHandler.Action action) {
+    final ViewGroup resultBox = vg(R.id.resultBox);
+    Point screenSize = getScreenSize();
+    final int screenCenter = screenSize.x / 2;
+    ObjectAnimator animator;
+    switch (action) {
+      case STAR:
+        animator = ObjectAnimator.ofFloat(changeBox, "x", screenSize.x);
+        break;
+      case IGNORE:
+        animator = ObjectAnimator.ofFloat(changeBox, "x",
+            -changeBox.getWidth());
+        break;
+      case SKIP:
+        animator = ObjectAnimator.ofFloat(changeBox, "alpha", 0);
+        break;
+      case NONE:
+        return;
+      default:
+        throw new IllegalStateException("unknown action: " + action);
+    }
+
+    animator.setDuration(1000);
+    animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
+      @Override
+      public void onAnimationUpdate(ValueAnimator animation) {
+        switch (action) {
+          case STAR:
+            changeBox.setRotation((float) (
+                (changeBox.getX() + changeBox.getWidth() / 2 - screenCenter)
+                    * (Math.PI / 32)));
+            ((GradientDrawable) changeBox.getBackground())
+                .setColor(widgetUtil.color(R.color.commitMessageStar));
+            break;
+          case IGNORE:
+            changeBox.setRotation(
+                (float) ((changeBox.getX() +
+                    changeBox.getWidth() / 2 - screenCenter)
+                        * (Math.PI / 32)));
+            ((GradientDrawable) changeBox.getBackground())
+                .setColor(widgetUtil.color(R.color.commitMessageIgnore));
+            break;
+          case SKIP:
+          case NONE:
+          default:
+            break;
+        }
+      }
+    });
+    animator.addListener(new NoOpAnimatorListener() {
+      @Override
+      public void onAnimationEnd(Animator animation) {
+        switch (action) {
+          case STAR:
+          case IGNORE:
+          case SKIP:
+            resultBox.removeView(changeBox);
+            display();
+          case NONE:
+          default:
+            break;
+        }
+      }
+    });
+    animator.start();
+  }
+
+  private Point getScreenSize() {
+    Point screenSize = new Point();
+    getActivity().getWindowManager().getDefaultDisplay().getSize(screenSize);
+    return screenSize;
+  }
+
+  private void pageEffect(int moreChangesCount) {
+    View page = v(R.id.page);
+    switch (moreChangesCount) {
+      case 0:
+        setGone(page);
+        return;
+      case 1:
+        WidgetUtil.setRightMargin(page,
+            widgetUtil.getDimension(R.dimen.activity_horizontal_margin) - 6);
+        WidgetUtil.setBottomMargin(page,
+            widgetUtil.getDimension(R.dimen.reviewit_bottom_area_height) - 6);
+        setVisible(page);
+        WidgetUtil.setBackground(page,
+            widgetUtil.getDrawable(R.drawable.two_page_border));
+        return;
+      case 2:
+        WidgetUtil.setRightMargin(page,
+            widgetUtil.getDimension(R.dimen.activity_horizontal_margin) - 12);
+        WidgetUtil.setBottomMargin(page,
+            widgetUtil.getDimension(R.dimen.reviewit_bottom_area_height) - 12);
+        setVisible(page);
+        WidgetUtil.setBackground(page,
+            widgetUtil.getDrawable(R.drawable.three_page_border));
+        return;
+      default:
+        WidgetUtil.setRightMargin(page,
+            widgetUtil.getDimension(R.dimen.activity_horizontal_margin) - 18);
+        WidgetUtil.setBottomMargin(page,
+            widgetUtil.getDimension(R.dimen.reviewit_bottom_area_height) - 18);
+        setVisible(page);
+        WidgetUtil.setBackground(page,
+            widgetUtil.getDrawable(R.drawable.multi_page_border));
+    }
+  }
+
+  private void setButtonBackgroundEnabled(
+      @IdRes int id, SemiCircleDrawable.Direction direction) {
+    setButtonBackground(id, direction, R.color.buttonFill,
+        R.color.buttonBorder);
+  }
+
+  private void setButtonBackgroundDisabled(
+      @IdRes int id, SemiCircleDrawable.Direction direction) {
+    setButtonBackground(id, direction, R.color.buttonFillDisabled,
+        R.color.buttonBorderDisabled);
+  }
+
+  private void setButtonBackground(
+      @IdRes int id, SemiCircleDrawable.Direction direction,
+      @ColorRes int fillColorId, @ColorRes int borderColorId) {
+    WidgetUtil.setBackground(v(id), new SemiCircleDrawable(direction,
+        widgetUtil.color(fillColorId), widgetUtil.color(borderColorId)));
+  }
+
+  @Override
+  public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
+    ActionHandler actionHandler = getActionHandler();
+    inflater.inflate(R.menu.menu_sort_changes, menu);
+    for (int i = 0; i < menu.size(); i++) {
+      MenuItem item = menu.getItem(i);
+      if (item.getItemId() == R.id.action_undo) {
+        item.setVisible(actionHandler.undoPossible());
+      } else if (item.getItemId() == R.id.action_add_reviewer) {
+        item.setVisible(actionHandler.hasCurrentChange());
+      } else if (item.getItemId() == R.id.action_abandon) {
+        item.setVisible(actionHandler.hasCurrentChange()
+            && (actionHandler.getCurrentChange().info.status
+                == ChangeStatus.NEW ||
+            actionHandler.getCurrentChange().info.status
+                == ChangeStatus.SUBMITTED));
+      } else if (item.getItemId() == R.id.action_reload_change) {
+        item.setVisible(actionHandler.hasCurrentChange());
+      } else if (item.getItemId() == R.id.action_restore) {
+        item.setVisible(actionHandler.hasCurrentChange() && actionHandler
+            .getCurrentChange().info.status == ChangeStatus.ABANDONED);
+      }
+    }
+    super.onCreateOptionsMenu(menu, inflater);
+  }
+
+  @Override
+  public boolean onOptionsItemSelected(MenuItem item) {
+    switch (item.getItemId()) {
+      case R.id.action_abandon:
+        display(AbandonFragment.create(getClass()));
+        return true;
+      case R.id.action_add_reviewer:
+        display(AddReviewerFragment.create(getClass()));
+        return true;
+      case R.id.action_help:
+        display(HelpFragment.class);
+        return true;
+      case R.id.action_preferences:
+        display(PreferencesFragment.class);
+        return true;
+      case R.id.action_reload_change:
+        reloadChange();
+        return true;
+      case R.id.action_reload_query:
+        reloadQuery();
+        return true;
+      case R.id.action_restore:
+        display(RestoreActivity.create(getClass()));
+        return true;
+      case R.id.action_undo:
+        undo();
+        return true;
+      default:
+        return super.onOptionsItemSelected(item);
+    }
+  }
+
+  private void undo() {
+    ActionHandler actionHandler = getActionHandler();
+    if (!actionHandler.undoPossible()) {
+      return;
+    }
+    actionHandler.undo();
+    ViewGroup resultBox = vg(R.id.resultBox);
+    View changeBox = v(R.id.changeBox);
+    while (changeBox != null) {
+      resultBox.removeView(changeBox);
+      changeBox = v(R.id.changeBox);
+    }
+    display();
+  }
+
+  private void reloadChange() {
+    new ObservableAsynTask<Change, Void, String>() {
+      @Override
+      protected String doInBackground(Change... changes) {
+        Change change = changes[0];
+        try {
+          change.reload();
+          return null;
+        } catch (RestApiException e) {
+          if (e instanceof HttpStatusException) {
+            HttpStatusException se = (HttpStatusException) e;
+            return getString(R.string.reload_error, se.getStatusCode(),
+                se.getStatusText());
+          } else {
+            return e.getMessage();
+          }
+        }
+      }
+
+      @Override
+      protected void postExecute(String errorMsg) {
+        if (errorMsg != null) {
+          widgetUtil.showError(errorMsg);
+        } else {
+          display(SortChangesFragment.class);
+        }
+      }
+    }.execute(getActionHandler().getCurrentChange());
+  }
+
+  private void reloadQuery() {
+    getActionHandler().reset();
+    display(getClass(), false);
+  }
+
+  @Override
+  public boolean onBackPressed() {
+    if (getActionHandler().undoPossible()) {
+      undo();
+      return true;
+    }
+
+    return false;
+  }
+
+  private static class ChangeData {
+    static ChangeData empty() {
+      return new ChangeData(null, null, 0);
+    }
+
+    final Change change;
+    final Change nextChange;
+    final int queueSize;
+    final String error;
+
+    ChangeData(Change change, Change nextChange, int queueSize) {
+      this.change = change;
+      this.nextChange = nextChange;
+      this.queueSize = queueSize;
+      this.error = null;
+    }
+
+    ChangeData(String error) {
+      this.change = null;
+      this.nextChange = null;
+      this.queueSize = 0;
+      this.error = error;
+    }
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/SortSettingFragment.java b/app/src/main/java/com/google/reviewit/SortSettingFragment.java
new file mode 100644
index 0000000..5efb057
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/SortSettingFragment.java
@@ -0,0 +1,123 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.os.Bundle;
+import android.support.annotation.LayoutRes;
+import android.view.View;
+import android.widget.ArrayAdapter;
+import android.widget.Spinner;
+
+import com.google.common.base.Strings;
+import com.google.reviewit.app.QueryConfig;
+import com.google.reviewit.app.ServerConfig;
+import com.google.reviewit.util.WidgetUtil;
+
+public class SortSettingFragment extends BaseFragment {
+  private static final String LABEL_REGEXP = "^[a-zA-Z][a-zA-Z0-9]*$";
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_sort_settings;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    init();
+    displayQueryConfig(getApp().getConfigManager().getQueryConfig());
+  }
+
+  private void init() {
+    v(R.id.edit_server).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        display(ServerListFragment.class);
+      }
+    });
+
+    v(R.id.saveQuerySettings).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        if (!isQueryInputComplete()) {
+          widgetUtil.showError(R.string.incompleteInput);
+          return;
+        }
+
+        // TODO check that query is valid
+
+        if (!isLabelValid()) {
+          widgetUtil.showError(getString(R.string.invalidLabel, LABEL_REGEXP));
+          return;
+        }
+
+        saveQuerySettings();
+      }
+    });
+  }
+
+  private void displayQueryConfig(QueryConfig config) {
+    initServerDropDown();
+
+    v(R.id.incompleteSettings).setVisibility(
+        config.isComplete()
+            ? View.GONE
+            : View.VISIBLE);
+
+    Spinner serverInput = (Spinner) v(R.id.serverIdInput);
+    ServerConfig serverConfig = getApp().getConfigManager().getServerConfig
+        (config.serverId);
+    serverInput.setSelection(
+        ((ArrayAdapter<ServerConfig>) serverInput.getAdapter())
+            .getPosition(serverConfig));
+    WidgetUtil.setText(v(R.id.queryInput), config.query);
+    WidgetUtil.setText(v(R.id.labelInput), config.label);
+  }
+
+  private void initServerDropDown() {
+    Spinner serverInput = (Spinner) v(R.id.serverIdInput);
+    ArrayAdapter<ServerConfig> adapter =
+        new ArrayAdapter<>(getContext(),
+            android.R.layout.simple_spinner_dropdown_item,
+            getApp().getConfigManager().getServers());
+    serverInput.setAdapter(adapter);
+  }
+
+  private boolean isQueryInputComplete() {
+    return !Strings.isNullOrEmpty(getServerId())
+        && !Strings.isNullOrEmpty(textOf(R.id.queryInput))
+        && !Strings.isNullOrEmpty(textOf(R.id.labelInput));
+  }
+
+  private boolean isLabelValid() {
+    return textOf(R.id.labelInput).matches(LABEL_REGEXP);
+  }
+
+  private void saveQuerySettings() {
+    getApp().getConfigManager().setQueryConfig(
+        new QueryConfig.Builder()
+            .setServerId(getServerId())
+            .setQuery(textOf(R.id.queryInput))
+            .setLabel(textOf(R.id.labelInput))
+            .build());
+    display(SortChangesFragment.class);
+  }
+
+  private String getServerId() {
+    Spinner serverInput = (Spinner) v(R.id.serverIdInput);
+    return ((ServerConfig) serverInput.getSelectedItem()).id;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/UnifiedDiffFragment.java b/app/src/main/java/com/google/reviewit/UnifiedDiffFragment.java
new file mode 100644
index 0000000..4db29a2
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/UnifiedDiffFragment.java
@@ -0,0 +1,334 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit;
+
+import android.os.AsyncTask;
+import android.os.Bundle;
+import android.support.annotation.IdRes;
+import android.support.annotation.LayoutRes;
+import android.util.Log;
+import android.view.Gravity;
+import android.view.MotionEvent;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.LinearLayout;
+import android.widget.ProgressBar;
+
+import com.google.gerrit.extensions.common.DiffInfo;
+import com.google.gerrit.extensions.common.FileInfo;
+import com.google.gerrit.extensions.restapi.RestApiException;
+import com.google.reviewit.app.Change;
+import com.google.reviewit.util.FormatUtil;
+import com.google.reviewit.util.LayoutUtil;
+import com.google.reviewit.util.WidgetUtil;
+import com.google.reviewit.widget.PostReviewView;
+import com.google.reviewit.widget.ScrollWithHeadingsView;
+import com.google.reviewit.widget.UnifiedDiffView;
+
+import java.io.File;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Map;
+
+import static com.google.common.base.Preconditions.checkState;
+import static com.google.reviewit.util.LayoutUtil.matchLayout;
+import static com.google.reviewit.util.WidgetUtil.setGone;
+import static com.google.reviewit.util.WidgetUtil.setInvisible;
+import static com.google.reviewit.util.WidgetUtil.setVisible;
+
+/**
+ * Fragment that shows a list of unified diffs for all files of one change.
+ */
+public class UnifiedDiffFragment extends BaseFragment
+    implements OnBackPressedAware, DispatchTouchEventAware {
+  private static final String TAG = UnifiedDiffFragment.class.getName();
+  private static final String PATH =
+      "com.google.reviewit.UnifiedDiffFragment.PATH";
+
+  private ScrollWithHeadingsView root;
+
+  public static UnifiedDiffFragment create(String path) {
+    UnifiedDiffFragment fragment = new UnifiedDiffFragment();
+    Bundle bundle = new Bundle();
+    bundle.putString(PATH, path);
+    fragment.setArguments(bundle);
+    return fragment;
+  }
+
+  @Override
+  protected @LayoutRes int getLayout() {
+    return R.layout.content_unified_diff;
+  }
+
+  @Override
+  public void onActivityCreated(Bundle savedInstanceState) {
+    super.onActivityCreated(savedInstanceState);
+
+    ((MainActivity) getActivity()).getSupportActionBar().hide();
+
+    String path = getArguments() != null
+        ? getArguments().getString(PATH)
+        : null;
+
+    Change change = getApp().getActionHandler().getCurrentChange();
+    checkState(change != null, "Change not set");
+    Map<String, FileInfo> files = change.currentRevision().files;
+    root = (ScrollWithHeadingsView) v(R.id.unifiedDiffRoot);
+    root.setWindow(getWindow());
+
+    if (path != null) {
+      setVisible(v(R.id.navigationButtons));
+      initPostReviewNavPanel(change);
+      FileInfo file = files.get(path);
+      checkState(file != null, "File not found:" + path);
+      init(root, path, change, files);
+      displayFile(root, change, path, file);
+    } else {
+      setGone(v(R.id.navigationButtons));
+      initPostReviewPanel(change);
+      displayFiles(root, change, files);
+    }
+  }
+
+  @Override
+  public void dispatchTouchEvent(MotionEvent event) {
+    root.getZoomHandler().dispatchTouchEvent(event);
+  }
+
+  private void initPostReviewPanel(Change change) {
+    initPostReview(change, R.id.postReview);
+
+    setVisible(v(R.id.postReviewPanel));
+
+    v(R.id.expandPostReviewPanel).setOnClickListener(
+        new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        setGone(v(R.id.expandPostReviewPanel));
+        setVisible(v(R.id.collapsePostReviewPanel, R.id.postReview));
+      }
+    });
+
+    v(R.id.collapsePostReviewPanel).setOnClickListener(
+        new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        setGone(v(R.id.collapsePostReviewPanel, R.id.postReview));
+        setVisible(v(R.id.expandPostReviewPanel));
+      }
+    });
+  }
+
+  private void initPostReviewNavPanel(Change change) {
+    initPostReview(change, R.id.postReviewNav);
+
+    v(R.id.expandPostReviewPanelNav).setOnClickListener(
+        new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        setGone(v(R.id.expandPostReviewPanelNav));
+        setVisible(v(R.id.collapsePostReviewPanelNav, R.id.postReviewNav));
+      }
+    });
+
+    v(R.id.collapsePostReviewPanelNav).setOnClickListener(
+        new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        setGone(v(R.id.collapsePostReviewPanelNav, R.id.postReviewNav));
+        setVisible(v(R.id.expandPostReviewPanelNav));
+      }
+    });
+  }
+
+  private void initPostReview(Change change, @IdRes int id) {
+    PostReviewView postReview = ((PostReviewView) v(id));
+    postReview.setChange(change);
+    postReview.select(change.getVote("Code-Review", getApp().getSelf()));
+    postReview.setOnVoteListener(new PostReviewView.OnVoteListener() {
+      @Override
+      public void vote(int vote) {
+        display(PostReviewFragment.create(vote));
+      }
+    });
+  }
+
+  private void init(ScrollWithHeadingsView root, String path, Change change,
+                    Map<String, FileInfo> files) {
+    String prevPath = null;
+    String nextPath = null;
+    List<String> paths = new ArrayList<>(files.keySet());
+    int i = paths.indexOf(path);
+    if (i > 0) {
+      prevPath = paths.get(i - 1);
+    }
+    if (i < paths.size() - 1) {
+      nextPath = paths.get(i + 1);
+    }
+    root.setNextBackgroundColor(i);
+
+    if (prevPath != null || nextPath != null) {
+      if (prevPath != null) {
+        setVisible(v(R.id.navigationPrev));
+        WidgetUtil.setText(v(R.id.navigationPrevFile),
+            new File(prevPath).getName());
+        setNavigationOnClickListener(R.id.navigationPrev, root, change,
+            prevPath, files);
+      } else {
+        setInvisible(v(R.id.navigationPrev));
+      }
+      if (nextPath != null) {
+        setVisible(v(R.id.navigationNext));
+        WidgetUtil.setText(v(R.id.navigationNextFile),
+            new File(nextPath).getName());
+        setNavigationOnClickListener(R.id.navigationNext, root, change,
+            nextPath, files);
+      } else {
+        setInvisible(v(R.id.navigationNext));
+      }
+    }
+  }
+
+  private void setNavigationOnClickListener(
+      @IdRes int id, final ScrollWithHeadingsView root, final Change change,
+      final String path, final Map<String, FileInfo> files) {
+    v(id).setOnClickListener(new View.OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        root.clear();
+        init(root, path, change, files);
+        displayFile(root, change, path, files.get(path));
+      }
+    });
+  }
+
+  private void displayFile(
+      ScrollWithHeadingsView root, Change change, String path, FileInfo file) {
+    Map<String, FileInfo> files = new HashMap<>();
+    files.put(path, file);
+    displayFiles(root, change, files);
+  }
+
+  private void displayFiles(
+      final ScrollWithHeadingsView root, final Change change,
+      Map<String, FileInfo> files) {
+    final Iterator<Map.Entry<String, FileInfo>> fileEntryIt =
+        files.entrySet().iterator();
+    root.setContent(new Iterator<ScrollWithHeadingsView.Content>() {
+      @Override
+      public boolean hasNext() {
+        return fileEntryIt.hasNext();
+      }
+
+      @Override
+      public ScrollWithHeadingsView.Content next() {
+        Map.Entry<String, FileInfo> fileEntry = fileEntryIt.next();
+        File f = new File(fileEntry.getKey());
+        return new ScrollWithHeadingsView.Content(
+            new ScrollWithHeadingsView.HeadingWithDetails(
+                getContext(), f.getName(), null,
+                FormatUtil.ensureSlash(f.getParent())),
+                createContent(change, fileEntry.getKey(),
+                    fileEntry.getValue()));
+      }
+
+      public View createContent(
+          final Change change, final String path, FileInfo file) {
+        final LinearLayout layout = new LinearLayout(getContext());
+        layout.setLayoutParams(new ViewGroup.LayoutParams(
+            ViewGroup.LayoutParams.MATCH_PARENT, widgetUtil.dpToPx(400)));
+        layout.setPadding(0, widgetUtil.dpToPx(30), 0, widgetUtil.dpToPx(30));
+        layout.setGravity(Gravity.CENTER_HORIZONTAL);
+        final ProgressBar p = new ProgressBar(getContext());
+        p.setLayoutParams(matchLayout());
+        p.setIndeterminate(true);
+        p.getIndeterminateDrawable().setColorFilter(
+            widgetUtil.color(R.color.progressReload),
+            android.graphics.PorterDuff.Mode.SRC_IN);
+        layout.addView(p);
+
+        if (file.binary != null && file.binary) {
+          // TODO
+          return layout;
+        }
+
+        LayoutUtil.addOneTimeOnGlobalLayoutListener(
+            p, new LayoutUtil.OneTimeOnGlobalLayoutListener() {
+          @Override
+          public void onFirstGlobalLayout() {
+            new AsyncTask<String, Void, DiffInfo>() {
+              @Override
+              protected DiffInfo doInBackground(String... paths) {
+                String path = paths[0];
+                try {
+                  return change.diff(path);
+                } catch (RestApiException e) {
+                  Log.e(TAG, "Failed to get diff of file " + path
+                      + " from change " + change.info._number, e);
+                  return null;
+                }
+              }
+
+              protected void onPostExecute(final DiffInfo diff) {
+                layout.removeView(p);
+                layout.setLayoutParams(
+                    new LinearLayout.LayoutParams(
+                        LinearLayout.LayoutParams.MATCH_PARENT,
+                        LinearLayout.LayoutParams.WRAP_CONTENT));
+                layout.setPadding(0,
+                    layout.getPaddingTop() - widgetUtil.dpToPx(20),
+                    0,
+                    layout.getPaddingBottom() - widgetUtil.dpToPx(20));
+                UnifiedDiffView unifiedDiffView = new UnifiedDiffView
+                    (getContext(), diff);
+                layout.addView(unifiedDiffView);
+                LayoutUtil.addOneTimeOnGlobalLayoutListener(
+                    unifiedDiffView,
+                    new LayoutUtil.OneTimeOnGlobalLayoutListener() {
+                      @Override
+                      public void onFirstGlobalLayout() {
+                        root.relayout();
+                      }
+                    });
+                unifiedDiffView.setOnSizeChangedListener(
+                    new UnifiedDiffView.OnSizeChangedListener() {
+                  @Override
+                  public void onSizeChanged() {
+                    root.relayout();
+                  }
+                });
+              }
+            }.executeOnExecutor(getApp().getExecutor(), path);
+          }
+        });
+
+        return layout;
+      }
+
+      @Override
+      public void remove() {
+        throw new UnsupportedOperationException();
+      }
+    });
+  }
+
+  @Override
+  public boolean onBackPressed() {
+    // TODO abort background tasks
+    return false;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/app/ActionHandler.java b/app/src/main/java/com/google/reviewit/app/ActionHandler.java
new file mode 100644
index 0000000..c9a43f2
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/app/ActionHandler.java
@@ -0,0 +1,306 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.app;
+
+import com.google.common.base.Function;
+import com.google.common.base.Predicate;
+import com.google.common.collect.Collections2;
+import com.google.gerrit.extensions.client.ListChangesOption;
+import com.google.gerrit.extensions.common.ChangeInfo;
+import com.google.gerrit.extensions.restapi.RestApiException;
+
+import java.util.LinkedList;
+
+public class ActionHandler {
+  public enum Action {
+    /**
+     * Do nothing.
+     */
+    NONE,
+
+    /**
+     * Star the change by putting a label on it.
+     */
+    STAR,
+
+    /**
+     * Ignore the change by putting the <code>Ignore</code> label on it.
+     */
+    IGNORE,
+
+    /**
+     * Skip the change. The user wants to be asked about this change again,
+     * when there is a new patch set.
+     */
+    SKIP
+  }
+
+  /**
+   * Maximum number of actions that can be undone.
+   */
+  private static final int LIMIT_UNDO = 10;
+
+  /**
+   * Number of changes that should be fetched at once from the server.
+   */
+  private static final int LIMIT_QUERY = 25;
+
+  /**
+   * Number of changes in the queue that triggers fetching more changes from
+   * the server.
+   */
+  private static final int THRESHOLD_QUEUE = 5;
+
+  private final Gerrit gerrit;
+
+  /**
+   * Last actions that have been done. Kept for being able to undo actions.
+   * Contains at most <code>LIMIT_UNDO</code> actions.
+   */
+  private final LinkedList<ChangeActionRecord> done = new LinkedList<>();
+
+  /**
+   * Changes fetched from the server that the user should process.
+   */
+  private final LinkedList<Change> toProcess = new LinkedList<>();
+
+  private QueryConfig config;
+  private Change currentChange;
+
+  /**
+   * Number of changes which should be skipped when querying the next changes
+   * from the server.
+   */
+  private int start = 0;
+
+  /**
+   * Whether there are more changes at the server.
+   */
+  private boolean more = true;
+
+  ActionHandler(ConfigManager cfgManager, Gerrit gerrit) {
+    this.gerrit = gerrit;
+    this.config = cfgManager.getQueryConfig();
+
+    cfgManager.addUpdateListener(new ConfigManager.OnUpdate() {
+      @Override
+      public void onUpdate(QueryConfig cfg) {
+        config = cfg;
+        reset();
+      }
+    });
+  }
+
+  public Change next() {
+    currentChange = toProcess.removeFirst();
+    return currentChange;
+  }
+
+  public Change preview() {
+    if (!toProcess.isEmpty()) {
+      return toProcess.getFirst();
+    } else {
+      return null;
+    }
+  }
+
+  public boolean hasNext() throws RestApiException {
+    queryIfNeeded();
+    return !toProcess.isEmpty();
+  }
+
+  /**
+   * Returns the current size of the queue. There may be more changes
+   * available which have not been fetched from the server yet.
+   * <p/>
+   * The queue is automatically refilled when its size is under the
+   * <code>THRESHOLD_QUEUE</code>. This means if the returned value is
+   * lower than <code>THRESHOLD_QUEUE</code> there are no more changes
+   * available at the server.
+   */
+  public int getQueueSize() throws RestApiException {
+    queryIfNeeded();
+    return toProcess.size();
+  }
+
+  /**
+   * Fetches the next <code>LIMIT_QUERY</code> changes from the server when
+   * the queue size reached the <code>THRESHOLD_QUEUE</code>.
+   */
+  private void queryIfNeeded() throws RestApiException {
+    if (!isQueryNeeded()) {
+      return;
+    }
+
+    toProcess.addAll(Collections2.transform(Collections2.filter(
+        gerrit.api()
+            .changes()
+            .query(encodeQuery(config.query))
+            .withOption(ListChangesOption.ALL_FILES)
+            .withOption(ListChangesOption.CURRENT_COMMIT)
+            .withOption(ListChangesOption.CURRENT_REVISION)
+            .withOption(ListChangesOption.DETAILED_ACCOUNTS)
+            .withOption(ListChangesOption.DETAILED_LABELS)
+            .withLimit(toProcess.isEmpty()
+                ? THRESHOLD_QUEUE
+                : LIMIT_QUERY)
+            .withStart(start)
+            .get(), new Predicate<ChangeInfo>() {
+          @Override
+          public boolean apply(ChangeInfo changeInfo) {
+            // filter out changes with no revisions
+            return changeInfo.revisions != null;
+          }
+        }), new Function<ChangeInfo, Change>() {
+          @Override
+          public Change apply(ChangeInfo changeInfo) {
+            return new Change(gerrit.api(), changeInfo);
+          }
+        }));
+    start += LIMIT_QUERY;
+    more = !toProcess.isEmpty()
+        ? (toProcess.getLast().info._moreChanges != null
+          ? toProcess.getLast().info._moreChanges
+          : false)
+        : false;
+  }
+
+  public boolean isQueryNeeded() {
+    return toProcess.size() < THRESHOLD_QUEUE && more;
+  }
+
+  private static String encodeQuery(String query) {
+    return query.replaceAll(" ", "+");
+  }
+
+  /**
+   * Stars the current change.
+   */
+  public void star() {
+    checkCurrentChange();
+    // TODO star current change
+    recordAction(Action.STAR);
+    currentChange = null;
+  }
+
+  private void undoStar(Change change) {
+    // TODO
+  }
+
+  /**
+   * Ignores the current change.
+   */
+  public void ignore() {
+    checkCurrentChange();
+    // TODO ignore current change
+    recordAction(Action.IGNORE);
+    currentChange = null;
+  }
+
+  private void undoIgnore(Change change) {
+    // TODO
+  }
+
+  /**
+   * Skips the current change.
+   */
+  public void skip() {
+    checkCurrentChange();
+    // TODO skip current change
+    recordAction(Action.SKIP);
+    currentChange = null;
+  }
+
+  private void undoSkip(Change change) {
+    // TODO
+  }
+
+  private void checkCurrentChange() {
+    if (currentChange == null) {
+      throw new IllegalStateException("no current change");
+    }
+  }
+
+  private void recordAction(Action action) {
+    done.add(new ChangeActionRecord(currentChange, action));
+    while (done.size() > LIMIT_UNDO) {
+      done.removeFirst();
+    }
+  }
+
+  public boolean hasCurrentChange() {
+    return currentChange != null;
+  }
+
+  public Change getCurrentChange() {
+    return currentChange;
+  }
+
+  /**
+   * Puts the current change back into the queue.
+   */
+  public Change pushBack() {
+    Change c = currentChange;
+    if (currentChange != null) {
+      toProcess.addFirst(currentChange);
+      currentChange = null;
+    }
+    return c;
+  }
+
+  public boolean undoPossible() {
+    return !done.isEmpty();
+  }
+
+  public void undo() {
+    pushBack();
+    ChangeActionRecord changeActionRecord = done.removeLast();
+    switch (changeActionRecord.action) {
+      case IGNORE:
+        undoIgnore(changeActionRecord.change);
+        break;
+      case SKIP:
+        undoSkip(changeActionRecord.change);
+        break;
+      case STAR:
+        undoStar(changeActionRecord.change);
+        break;
+      case NONE:
+        break;
+      default:
+        throw new IllegalStateException("unknown action: "
+            + changeActionRecord.action);
+    }
+    toProcess.addFirst(changeActionRecord.change);
+  }
+
+  public void reset() {
+    done.clear();
+    toProcess.clear();
+    start = 0;
+    currentChange = null;
+    more = true;
+  }
+
+  private static class ChangeActionRecord {
+    final Change change;
+    final Action action;
+
+    ChangeActionRecord(Change change, Action action) {
+      this.change = change;
+      this.action = action;
+    }
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/app/AvatarCache.java b/app/src/main/java/com/google/reviewit/app/AvatarCache.java
new file mode 100644
index 0000000..b193fc6
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/app/AvatarCache.java
@@ -0,0 +1,149 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.app;
+
+import android.content.Context;
+import android.util.Log;
+
+import com.google.gerrit.extensions.common.AccountInfo;
+
+import java.io.ByteArrayOutputStream;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileNotFoundException;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.util.Arrays;
+import java.util.Comparator;
+
+/**
+ * Cache for the avatar images.
+ */
+public class AvatarCache {
+  private static final String TAG = AvatarCache.class.getName();
+
+  /**
+   * Max size of the cache.
+   */
+  private static final long CACHE_SIZE_BYTES = 10 * 1024 * 1024;
+
+  private final File avatarDir;
+
+  AvatarCache(Context context) {
+    this.avatarDir = new File(context.getCacheDir(), "avatars");
+    if (!avatarDir.exists() && !avatarDir.mkdirs()) {
+      Log.e(TAG, "Failed to create avatar cache directory");
+    }
+  }
+
+  public byte[] getIfExists(AccountInfo account) {
+    String fileName = Integer.toString(account._accountId);
+    File file = new File(avatarDir, fileName);
+    if (!file.exists()) {
+      return null;
+    }
+
+    try {
+      // TODO use try-with-resources with API 19
+      FileInputStream in = new FileInputStream(file);
+      try {
+        ByteArrayOutputStream out = new ByteArrayOutputStream();
+        byte[] buffer = new byte[4096];
+        int read;
+        while ((read = in.read(buffer)) != -1) {
+          out.write(buffer, 0, read);
+        }
+        return out.toByteArray();
+      } catch (IOException e) {
+        Log.e(TAG, "Failed to read cached avatar image for "
+            + account._accountId, e);
+        return null;
+      } finally {
+        try {
+          in.close();
+        } catch (IOException e) {
+          Log.e(TAG, "Failed closing FileInputStream on reading avatar image for "
+              + account._accountId, e);
+        }
+      }
+    } catch (FileNotFoundException e) {
+      return null;
+    }
+  }
+
+  public void putAvatar(AccountInfo account, byte[] avatar) {
+    long size = size();
+    long newSize = avatar.length + size;
+    if (newSize > CACHE_SIZE_BYTES) {
+      clean(newSize - CACHE_SIZE_BYTES);
+    }
+
+    String fileName = Integer.toString(account._accountId);
+    try {
+      File file = new File(avatarDir, fileName);
+
+      // TODO use try-with-resources with API 19
+      FileOutputStream out = new FileOutputStream(file);
+      try {
+        out.write(avatar);
+      } finally {
+        out.close();
+      }
+    } catch (IOException e) {
+      Log.e(TAG, "Failed to cache avatar image for " + account._accountId, e);
+    }
+  }
+
+  /**
+   * Removes all avatar images from the cache.
+   */
+  public void clean() {
+    clean(Long.MAX_VALUE);
+  }
+
+  private void clean(long bytesToDelete) {
+    long bytesDeleted = 0;
+    File[] files = avatarDir.listFiles();
+
+    Arrays.sort(files, new Comparator<File>() {
+      public int compare(File f1, File f2) {
+        return Long.valueOf(f1.lastModified()).compareTo(f2.lastModified());
+      }
+    });
+
+    for (File file : files) {
+      bytesDeleted += file.length();
+      Log.d(TAG, "Clean avatar for " + file.getName());
+      if (!file.delete()) {
+        Log.e(TAG, "Cleaning avatar for " + file.getName() + " failed.");
+      }
+
+      if (bytesDeleted >= bytesToDelete) {
+        break;
+      }
+    }
+  }
+
+  private long size() {
+    long size = 0;
+    File[] files = avatarDir.listFiles();
+    for (File file : files) {
+      if (file.isFile()) {
+        size += file.length();
+      }
+    }
+    return size;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/app/Change.java b/app/src/main/java/com/google/reviewit/app/Change.java
new file mode 100644
index 0000000..e2009d2
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/app/Change.java
@@ -0,0 +1,220 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.app;
+
+import com.google.common.base.Predicate;
+import com.google.common.collect.Collections2;
+import com.google.common.collect.ImmutableList;
+import com.google.gerrit.extensions.api.GerritApi;
+import com.google.gerrit.extensions.api.changes.AbandonInput;
+import com.google.gerrit.extensions.api.changes.RestoreInput;
+import com.google.gerrit.extensions.api.changes.ReviewInput;
+import com.google.gerrit.extensions.client.ChangeStatus;
+import com.google.gerrit.extensions.client.ReviewerState;
+import com.google.gerrit.extensions.common.AccountInfo;
+import com.google.gerrit.extensions.common.ApprovalInfo;
+import com.google.gerrit.extensions.common.ChangeInfo;
+import com.google.gerrit.extensions.common.CommentInfo;
+import com.google.gerrit.extensions.common.DiffInfo;
+import com.google.gerrit.extensions.common.LabelInfo;
+import com.google.gerrit.extensions.common.RevisionInfo;
+import com.google.gerrit.extensions.restapi.RestApiException;
+import com.google.reviewit.util.FormatUtil;
+
+import java.util.Collection;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+public class Change {
+  private final GerritApi api;
+
+  public ChangeInfo info;
+  private Map<String, DiffInfo> diffs = new HashMap<>();
+  private Integer inlineCommentCount;
+
+  public Change(GerritApi api, ChangeInfo info) {
+    this.api = api;
+    this.info = info;
+  }
+
+  public void reload() throws RestApiException {
+    info = api.changes().id(info._number).get();
+    diffs = null;
+    inlineCommentCount = null;
+  }
+
+  public RevisionInfo currentRevision() {
+    return info.revisions.get(info.currentRevision);
+  }
+
+  public Collection<AccountInfo> reviewers(boolean filterOutOwner) {
+    if (info.reviewers == null
+        || !info.reviewers.containsKey(ReviewerState.REVIEWER)) {
+      return Collections.emptySet();
+    }
+
+    Collection<AccountInfo> reviewers =
+        info.reviewers.get(ReviewerState.REVIEWER);
+    if (reviewers != null) {
+      if (filterOutOwner) {
+        return ImmutableList.copyOf(Collections2.filter(reviewers,
+            new Predicate<AccountInfo>() {
+          @Override
+          public boolean apply(AccountInfo r) {
+            return !r._accountId.equals(info.owner._accountId);
+          }
+        }));
+      } else {
+        return ImmutableList.copyOf(reviewers);
+      }
+    } else {
+      return Collections.emptySet();
+    }
+  }
+
+  public Collection<AccountInfo> ccs() {
+    if (info.reviewers == null
+        || !info.reviewers.containsKey(ReviewerState.CC)) {
+      return Collections.emptySet();
+    }
+
+    Collection<AccountInfo> ccs = info.reviewers.get(ReviewerState.CC);
+    if (ccs != null) {
+      return ImmutableList.copyOf(ccs);
+    } else {
+      return Collections.emptySet();
+    }
+  }
+
+  public Voters voters(String label) {
+    Voters voters = new Voters();
+    if (info.labels == null || !info.labels.containsKey(label)) {
+      return voters;
+    }
+
+    List<ApprovalInfo> all = info.labels.get(label).all;
+    if (all == null) {
+      return voters;
+    }
+
+    for (ApprovalInfo a : all) {
+      if (a.value == null) {
+        continue;
+      }
+      if (a.value > 0) {
+        voters.likers.add(a);
+      } else if (a.value < 0) {
+        voters.dislikers.add(a);
+      }
+    }
+    return voters;
+  }
+
+  public int getVote(String label, AccountInfo account) {
+    LabelInfo labelInfo = info.labels.get(label);
+    if (labelInfo == null) {
+      return 0;
+    }
+
+    if (labelInfo.all != null) {
+      for (ApprovalInfo a : labelInfo.all) {
+        if (a._accountId.equals(account._accountId)) {
+          return a.value;
+        }
+      }
+    }
+    return 0;
+  }
+
+  public int getInlineCommentCount() throws RestApiException {
+    if (inlineCommentCount != null) {
+      return inlineCommentCount;
+    }
+
+    int count = 0;
+    // TODO implement commentsAsList in REST API Client
+    for (List<CommentInfo> commentList : api.changes().id(info._number)
+        .revision(info.currentRevision).comments().values()) {
+      count += commentList.size();
+    }
+    inlineCommentCount = count;
+    return inlineCommentCount;
+  }
+
+  public DiffInfo diff(String path) throws RestApiException {
+    DiffInfo diff = diffs.get(path);
+    if (diff != null) {
+      return diff;
+    }
+
+    diff =
+        api.changes()
+            .id(info._number)
+            .revision(info.currentRevision)
+            .file(path)
+            .diffRequest()
+            .withIntraline(true)
+            .get();
+    diffs.put(path, diff);
+    return diff;
+  }
+
+  public void addReviewer(String reviewerId) throws RestApiException {
+    api.changes().id(info._number).addReviewer(reviewerId);
+    reload();
+  }
+
+  public void postReview(String message, Map<String, Integer> votes)
+      throws RestApiException {
+    ReviewInput in = new ReviewInput();
+    in.message(message);
+    in.drafts = ReviewInput.DraftHandling.KEEP;
+    for (Map.Entry<String, Integer> e : votes.entrySet()) {
+      in.label(e.getKey(), e.getValue());
+    }
+    api.changes().id(info._number).current().review(in);
+  }
+
+  public void submit() throws RestApiException {
+    api.changes().id(info._number).current().submit();
+  }
+
+  public void abandon(String message) throws RestApiException {
+    AbandonInput in = new AbandonInput();
+    in.message = message;
+    api.changes().id(info._number).abandon(in);
+    info.status = ChangeStatus.ABANDONED;
+  }
+
+  public void restore(String message) throws RestApiException {
+    RestoreInput in = new RestoreInput();
+    in.message = message;
+    api.changes().id(info._number).restore(in);
+    info.status = ChangeStatus.NEW;
+  }
+
+  public static class Voters {
+    public Set<AccountInfo> likers = new HashSet<>();
+    public Set<AccountInfo> dislikers = new HashSet<>();
+  }
+
+  public String getUrl(String serverUrl) {
+    return FormatUtil.ensureSlash(serverUrl) + "#/c/" + info._number;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/app/ConfigManager.java b/app/src/main/java/com/google/reviewit/app/ConfigManager.java
new file mode 100644
index 0000000..3d5afba
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/app/ConfigManager.java
@@ -0,0 +1,255 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.app;
+
+import android.content.Context;
+import android.content.SharedPreferences;
+import android.preference.PreferenceManager;
+
+import com.google.common.base.Function;
+import com.google.common.base.Strings;
+import com.google.common.collect.Collections2;
+import com.google.reviewit.util.CryptUtil;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import java.util.UUID;
+
+public class ConfigManager {
+  public interface OnUpdate {
+    /**
+     * Invoked when the current query config is updated.
+     */
+    void onUpdate(QueryConfig config);
+  }
+
+  private static final String KEY_SERVERS = "SERVERS";
+  private static final String KEY_SERVER = "SERVER";
+  private static final String KEY_SERVER_ID = "SERVER_ID";
+  private static final String KEY_NAME = "NAME";
+  private static final String KEY_URL = "URL";
+  private static final String KEY_USER = "USER";
+  private static final String KEY_PASSWORD = "PASSWORD";
+  private static final String KEY_QUERY = "QUERY";
+  private static final String KEY_LABEL = "LABEL";
+
+  private static final Set<String> DEFAULT_SERVERS = Collections.emptySet();
+  private static final String DEFAULT_QUERY = "status:open project:gerrit";
+  private static final String DEFAULT_LABEL = "reviewit";
+
+  private final SharedPreferences prefs;
+  private final CryptUtil crypt;
+  private final List<OnUpdate> updateListeners = new ArrayList<>();
+
+  /**
+   * Cached configs.
+   */
+  private QueryConfig queryConfig;
+  private ServerConfig serverConfig;
+  private Map<String, ServerConfig> servers;
+
+  ConfigManager(Context context) {
+    this.prefs = PreferenceManager.getDefaultSharedPreferences(context);
+    this.crypt = CryptUtil.get(context);
+  }
+
+  /**
+   * Returns the current query config.
+   */
+  public QueryConfig getQueryConfig() {
+    if (queryConfig == null) {
+      queryConfig = new QueryConfig.Builder()
+          .setServerId(getString(KEY_SERVER_ID, null))
+          .setQuery(getString(KEY_QUERY, DEFAULT_QUERY))
+          .setLabel(getString(KEY_LABEL, DEFAULT_LABEL))
+          .build();
+    }
+    return queryConfig;
+  }
+
+  private String getString(String key, String defaultValue) {
+    return crypt.decrypt(prefs.getString(key, crypt.encrypt(defaultValue)));
+  }
+
+  /**
+   * Sets/updates the current query config.
+   */
+  public void setQueryConfig(QueryConfig config) {
+    SharedPreferences.Editor editor = prefs.edit();
+    editor.putString(KEY_SERVER_ID, crypt.encrypt(config.serverId));
+    editor.putString(KEY_QUERY, crypt.encrypt(config.query));
+    editor.putString(KEY_LABEL, crypt.encrypt(config.label));
+    editor.apply();
+
+    queryConfig = config;
+
+    for (OnUpdate updateListener : updateListeners) {
+      updateListener.onUpdate(config);
+    }
+  }
+
+  /**
+   * Returns the server config for the current query config.
+   */
+  public ServerConfig getServerConfig() {
+    return getServerConfig(getQueryConfig().serverId);
+  }
+
+  public ServerConfig getServerConfig(String id) {
+    if (serverConfig == null || !serverConfig.id.equals(id)) {
+      if (servers != null) {
+        serverConfig = servers.get(id);
+      } else {
+        serverConfig = readServerConfig(id);
+      }
+    }
+    return serverConfig;
+  }
+
+  private ServerConfig readServerConfig(String id) {
+    return new ServerConfig.Builder()
+        .setId(id)
+        .setName(getString(serverKey(id, KEY_NAME), null))
+        .setUrl(getString(serverKey(id, KEY_URL), null))
+        .setUser(getString(serverKey(id, KEY_USER), null))
+        .setPassword(getString(serverKey(id, KEY_PASSWORD), null))
+        .build();
+  }
+
+  /**
+   * Adds/updates a server config.
+   */
+  public String setServerConfig(ServerConfig config) {
+    SharedPreferences.Editor editor = prefs.edit();
+    String id = config.id;
+    if (Strings.isNullOrEmpty(id)) {
+      id = UUID.randomUUID().toString();
+      addServerId(editor, id);
+    }
+    editor.putString(serverKey(id, KEY_NAME), crypt.encrypt(config.name));
+    editor.putString(serverKey(id, KEY_URL), crypt.encrypt(config.url));
+    editor.putString(serverKey(id, KEY_USER), crypt.encrypt(config.user));
+    editor.putString(serverKey(id, KEY_PASSWORD),
+        crypt.encrypt(config.password));
+    editor.apply();
+
+    serverConfig = config;
+    if (servers != null) {
+      servers.put(id, config);
+    }
+
+    QueryConfig queryConfig = getQueryConfig();
+    for (OnUpdate updateListener : updateListeners) {
+      updateListener.onUpdate(queryConfig);
+    }
+    return id;
+  }
+
+  private Collection<String> addServerId(
+      SharedPreferences.Editor editor, String id) {
+    Set<String> servers = new HashSet<>(readServerIds());
+    servers.add(id);
+    storeServerIds(editor, servers);
+    return servers;
+  }
+
+  /**
+   * Removes a server config.
+   */
+  public void removeServer(String id) {
+    if (serverConfig != null && serverConfig.id.equals(id)) {
+      serverConfig = null;
+    }
+    if (servers != null) {
+      servers.remove(id);
+    }
+
+    SharedPreferences.Editor editor = prefs.edit();
+    removeServerId(editor, id);
+    editor.remove(serverKey(id, KEY_NAME));
+    editor.remove(serverKey(id, KEY_URL));
+    editor.remove(serverKey(id, KEY_USER));
+    editor.remove(serverKey(id, KEY_PASSWORD));
+    editor.apply();
+  }
+
+  private Collection<String> removeServerId(
+      SharedPreferences.Editor editor, String id) {
+    Set<String> servers = new HashSet<>(readServerIds());
+    servers.remove(id);
+    storeServerIds(editor, servers);
+    return servers;
+  }
+
+  /**
+   * Finds a server config by server name.
+   */
+  public ServerConfig getServerByName(String name) {
+    for (ServerConfig cfg : getServers()) {
+      if (name.equals(cfg.name)) {
+        return cfg;
+      }
+    }
+    return null;
+  }
+
+  public List<ServerConfig> getServers() {
+    if (servers == null) {
+      servers = new HashMap<>();
+      for (String id : readServerIds()) {
+        servers.put(id, readServerConfig(id));
+      }
+    }
+    List<ServerConfig> list = new ArrayList<>(servers.values());
+    Collections.sort(list);
+    return list;
+  }
+
+  private Collection<String> readServerIds() {
+    return Collections2.transform(
+        prefs.getStringSet(KEY_SERVERS, DEFAULT_SERVERS),
+        new Function<String, String>() {
+      @Override
+      public String apply(String s) {
+        return crypt.decrypt(s);
+      }
+    });
+  }
+
+  private void storeServerIds(
+      SharedPreferences.Editor editor, Collection<String> servers) {
+    editor.putStringSet(KEY_SERVERS, new HashSet<>(
+        Collections2.transform(servers, new Function<String, String>() {
+      @Override
+      public String apply(String s) {
+        return crypt.encrypt(s);
+      }
+    })));
+  }
+
+  private static String serverKey(String name, String key) {
+    return KEY_SERVER + "_" + name + "_" + key;
+  }
+
+  public void addUpdateListener(OnUpdate listener) {
+    updateListeners.add(listener);
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/app/Gerrit.java b/app/src/main/java/com/google/reviewit/app/Gerrit.java
new file mode 100644
index 0000000..1771c55
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/app/Gerrit.java
@@ -0,0 +1,46 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.app;
+
+import com.google.gerrit.extensions.api.GerritApi;
+import com.urswolfer.gerrit.client.rest.GerritAuthData;
+import com.urswolfer.gerrit.client.rest.GerritRestApiFactory;
+
+public class Gerrit {
+  private com.google.gerrit.extensions.api.GerritApi api;
+
+  Gerrit(final ConfigManager cfgManager) {
+    QueryConfig queryCfg = cfgManager.getQueryConfig();
+    ServerConfig serverCfg = cfgManager.getServerConfig(queryCfg.serverId);
+    api = connect(serverCfg);
+    cfgManager.addUpdateListener(new ConfigManager.OnUpdate() {
+      @Override
+      public void onUpdate(QueryConfig queryCfg) {
+        ServerConfig serverCfg = cfgManager.getServerConfig(queryCfg.serverId);
+        api = connect(serverCfg);
+      }
+    });
+  }
+
+  private GerritApi connect(ServerConfig serverCfg) {
+    return new GerritRestApiFactory().create(
+        new GerritAuthData.Basic(
+            serverCfg.url, serverCfg.user, serverCfg.password));
+  }
+
+  public GerritApi api() {
+    return api;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/app/PreferenceManager.java b/app/src/main/java/com/google/reviewit/app/PreferenceManager.java
new file mode 100644
index 0000000..229f4df
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/app/PreferenceManager.java
@@ -0,0 +1,81 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.app;
+
+import android.content.Context;
+import android.content.SharedPreferences;
+
+public class PreferenceManager {
+  private static final String KEY_SHOW_INTRO = "SHOW_INTRO";
+  private static final String KEY_COLOR_BACKGROUND = "COLOR_BACKGROUND";
+  private final static String KEY_SHOW_PATCH_SETS = "SHOW_PATCH_SETS";
+  private final static String KEY_SHOW_POSITIVE_CODE_REVIEW_VOTES =
+      "SHOW_POSITIVE_CODE_REVIEW_VOTES";
+  private final static String KEY_SHOW_NEGATIVE_CODE_REVIEW_VOTES =
+      "SHOW_NEGATIVE_CODE_REVIEW_VOTES";
+  private final static String KEY_SHOW_COMMENTS = "SHOW_COMMENTS";
+  private final static String KEY_SHOW_REVIEWERS = "SHOW_REVIEWERS";
+  private final static String KEY_COMMIT_MESSAGE_FONT_SIZE =
+      "COMMIT_MESSAGE_FONT_SIZE";
+
+  private final SharedPreferences prefs;
+
+  /**
+   * Cached preferences.
+   */
+  private Preferences preferences;
+
+  PreferenceManager(Context context) {
+    this.prefs = android.preference.PreferenceManager
+        .getDefaultSharedPreferences(context);
+  }
+
+  public Preferences getPreferences() {
+    if (preferences == null) {
+      preferences = new Preferences.Builder()
+          .setShowIntro(prefs.getBoolean(KEY_SHOW_INTRO, true))
+          .setColorBackground(prefs.getBoolean(KEY_COLOR_BACKGROUND, true))
+          .setShowPatchSets(prefs.getBoolean(KEY_SHOW_PATCH_SETS, true))
+          .setShowPositiveCodeReviewVotes(
+              prefs.getBoolean(KEY_SHOW_POSITIVE_CODE_REVIEW_VOTES, true))
+          .setShowNegativeCodeReviewVotes(
+              prefs.getBoolean(KEY_SHOW_NEGATIVE_CODE_REVIEW_VOTES, true))
+          .setShowComments(prefs.getBoolean(KEY_SHOW_COMMENTS, true))
+          .setShowReviewers(prefs.getBoolean(KEY_SHOW_REVIEWERS, true))
+          .setCommitMessageFontSize(
+              prefs.getInt(KEY_COMMIT_MESSAGE_FONT_SIZE, -1))
+          .build();
+    }
+    return preferences;
+  }
+
+  public void setPreferences(Preferences preferences) {
+    SharedPreferences.Editor editor = prefs.edit();
+    editor.putBoolean(KEY_SHOW_INTRO, preferences.showIntro);
+    editor.putBoolean(KEY_COLOR_BACKGROUND, preferences.colorBackground);
+    editor.putBoolean(KEY_SHOW_PATCH_SETS, preferences.showPatchSets);
+    editor.putBoolean(KEY_SHOW_POSITIVE_CODE_REVIEW_VOTES,
+        preferences.showPositiveCodeReviewVotes);
+    editor.putBoolean(KEY_SHOW_NEGATIVE_CODE_REVIEW_VOTES,
+        preferences.showNegativeCodeReviewVotes);
+    editor.putBoolean(KEY_SHOW_COMMENTS, preferences.showComments);
+    editor.putBoolean(KEY_SHOW_REVIEWERS, preferences.showReviewers);
+    editor.putInt(KEY_COMMIT_MESSAGE_FONT_SIZE,
+        preferences.commitMessageFontSize);
+    editor.apply();
+
+    this.preferences = preferences;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/app/Preferences.java b/app/src/main/java/com/google/reviewit/app/Preferences.java
new file mode 100644
index 0000000..fe95b29
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/app/Preferences.java
@@ -0,0 +1,154 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.app;
+
+/**
+ * User preferences.
+ */
+public class Preferences {
+  /**
+   * Whether the app introduction should be shown on app startup.
+   */
+  public final boolean showIntro;
+
+  /**
+   * Whether the background should be colored to indicate Verified votings
+   * and change states.
+   */
+  public final boolean colorBackground;
+
+  /**
+   * Whether the number of patch sets should be shown.
+   */
+  public final boolean showPatchSets;
+
+  /**
+   * Whether the number of positive Code-Review votes should be shown.
+   */
+  public final boolean showPositiveCodeReviewVotes;
+
+  /**
+   * Whether the number of negative Code-Review votes should be shown.
+   */
+  public final boolean showNegativeCodeReviewVotes;
+
+  /**
+   * Whether the number of inline comments should be shown.
+   */
+  public final boolean showComments;
+
+  /**
+   * Whether the number of reviewers should be shown.
+   */
+  public final boolean showReviewers;
+
+  /**
+   * Font size for the commit message.
+   * <code>-1</code> means that the font size should be as large as
+   * possible without breaking lines.
+   */
+  public final int commitMessageFontSize;
+
+  private Preferences(
+      boolean showIntro, boolean colorBackground, boolean showPatchSets,
+      boolean showPositiveCodeReviewVotes, boolean showNegativeCodeReviewVotes,
+      boolean showComments, boolean showReviewers, int commitMessageFontSize) {
+    this.showIntro = showIntro;
+    this.colorBackground = colorBackground;
+    this.showPatchSets = showPatchSets;
+    this.showPositiveCodeReviewVotes = showPositiveCodeReviewVotes;
+    this.showNegativeCodeReviewVotes = showNegativeCodeReviewVotes;
+    this.showComments = showComments;
+    this.showReviewers = showReviewers;
+    this.commitMessageFontSize = commitMessageFontSize;
+  }
+
+  public boolean autoFontSizeForCommitMessage() {
+    return Integer.valueOf(commitMessageFontSize).equals(-1);
+  }
+
+  public static class Builder {
+    private boolean showIntro;
+    private boolean colorBackground;
+    private boolean showPatchSets;
+    private boolean showPositiveCodeReviewVotes;
+    private boolean showNegativeCodeReviewVotes;
+    private boolean showComments;
+    private boolean showReviewers;
+    private int commitMessageFontSize;
+
+    public Builder() {
+    }
+
+    public Builder(Preferences prefs) {
+      this.showIntro = prefs.showIntro;
+      this.colorBackground = prefs.colorBackground;
+      this.showPatchSets = prefs.showPatchSets;
+      this.showPositiveCodeReviewVotes = prefs.showPositiveCodeReviewVotes;
+      this.showNegativeCodeReviewVotes = prefs.showNegativeCodeReviewVotes;
+      this.showComments = prefs.showComments;
+      this.showReviewers = prefs.showReviewers;
+      this.commitMessageFontSize = prefs.commitMessageFontSize;
+    }
+
+    public Builder setShowIntro(boolean showIntro) {
+      this.showIntro = showIntro;
+      return this;
+    }
+
+    public Builder setColorBackground(boolean colorBackground) {
+      this.colorBackground = colorBackground;
+      return this;
+    }
+
+    public Builder setShowPatchSets(boolean showPatchSets) {
+      this.showPatchSets = showPatchSets;
+      return this;
+    }
+
+    public Builder setShowPositiveCodeReviewVotes(
+        boolean showPositiveCodeReviewVotes) {
+      this.showPositiveCodeReviewVotes = showPositiveCodeReviewVotes;
+      return this;
+    }
+
+    public Builder setShowNegativeCodeReviewVotes(
+        boolean showNegativeCodeReviewVotes) {
+      this.showNegativeCodeReviewVotes = showNegativeCodeReviewVotes;
+      return this;
+    }
+
+    public Builder setShowComments(boolean showComments) {
+      this.showComments = showComments;
+      return this;
+    }
+
+    public Builder setShowReviewers(boolean showReviewers) {
+      this.showReviewers = showReviewers;
+      return this;
+    }
+
+    public Builder setCommitMessageFontSize(int commitMessageFontSize) {
+      this.commitMessageFontSize = commitMessageFontSize;
+      return this;
+    }
+
+    public Preferences build() {
+      return new Preferences(showIntro, colorBackground, showPatchSets,
+          showPositiveCodeReviewVotes, showNegativeCodeReviewVotes,
+          showComments, showReviewers, commitMessageFontSize);
+    }
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/app/QueryConfig.java b/app/src/main/java/com/google/reviewit/app/QueryConfig.java
new file mode 100644
index 0000000..ea87e08
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/app/QueryConfig.java
@@ -0,0 +1,69 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.app;
+
+import com.google.common.base.Strings;
+
+public class QueryConfig {
+  public final String serverId;
+  public final String query;
+  public final String label;
+
+  private QueryConfig(String serverId, String query, String label) {
+    this.serverId = serverId;
+    this.query = query;
+    this.label = label;
+  }
+
+  public boolean isComplete() {
+    return !Strings.isNullOrEmpty(serverId)
+        && !Strings.isNullOrEmpty(query)
+        && !Strings.isNullOrEmpty(label);
+  }
+
+  public static class Builder {
+    private String serverId;
+    private String query;
+    private String label;
+
+    public Builder() {
+    }
+
+    public Builder(QueryConfig cfg) {
+      this.serverId = cfg.serverId;
+      this.query = cfg.query;
+      this.label = cfg.label;
+    }
+
+    public Builder setServerId(String serverId) {
+      this.serverId = serverId;
+      return this;
+    }
+
+    public Builder setQuery(String query) {
+      this.query = query;
+      return this;
+    }
+
+    public Builder setLabel(String label) {
+      this.label = label;
+      return this;
+    }
+
+    public QueryConfig build() {
+      return new QueryConfig(serverId, query, label);
+    }
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/app/ReviewItApp.java b/app/src/main/java/com/google/reviewit/app/ReviewItApp.java
new file mode 100644
index 0000000..10fb519
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/app/ReviewItApp.java
@@ -0,0 +1,157 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.app;
+
+import android.app.Activity;
+import android.app.Application;
+import android.app.FragmentManager;
+import android.os.Bundle;
+import android.util.Log;
+
+import com.google.gerrit.extensions.api.GerritApi;
+import com.google.gerrit.extensions.common.AccountInfo;
+import com.google.gerrit.extensions.restapi.RestApiException;
+import com.google.reviewit.ErrorFragment;
+import com.google.reviewit.R;
+
+import java.util.concurrent.ExecutorService;
+import java.util.concurrent.Executors;
+
+public class ReviewItApp extends Application {
+  private static final String TAG = ReviewItApp.class.getName();
+
+  private ActionHandler actionHandler;
+  private AvatarCache avatarCache;
+  private ConfigManager cfgManager;
+  private ExecutorService executor;
+  private Gerrit gerrit;
+  private PreferenceManager prefManager;
+  private AccountInfo self;
+  private Activity currentActivity;
+
+  @Override
+  public void onCreate() {
+    registerActivityLifecycleCallbacks(new ActivityLifecycleCallbacks() {
+      @Override
+      public void onActivityCreated(
+          Activity activity, Bundle savedInstanceState) {
+        currentActivity = activity;
+      }
+
+      @Override
+      public void onActivityStarted(Activity activity) {
+      }
+
+      @Override
+      public void onActivityResumed(Activity activity) {
+      }
+
+      @Override
+      public void onActivityPaused(Activity activity) {
+      }
+
+      @Override
+      public void onActivityStopped(Activity activity) {
+      }
+
+      @Override
+      public void onActivitySaveInstanceState(
+          Activity activity, Bundle outState) {
+      }
+
+      @Override
+      public void onActivityDestroyed(Activity activity) {
+        currentActivity = null;
+      }
+    });
+
+    Thread.setDefaultUncaughtExceptionHandler(
+        new Thread.UncaughtExceptionHandler() {
+      @Override
+      public void uncaughtException(Thread thread, Throwable t) {
+        Log.e(TAG, "Application failure", t);
+        if (currentActivity != null) {
+          FragmentManager fragmentManager =
+              currentActivity.getFragmentManager();
+          fragmentManager.beginTransaction()
+              .replace(R.id.mainFrame, ErrorFragment.create(t))
+              .commit();
+        }
+      }
+    });
+    super.onCreate();
+  }
+
+  public ActionHandler getActionHandler() {
+    if (actionHandler == null) {
+      actionHandler = new ActionHandler(getConfigManager(), getGerrit());
+    }
+    return actionHandler;
+  }
+
+  public AvatarCache getAvatarCache() {
+    if (avatarCache == null) {
+      avatarCache = new AvatarCache(this);
+    }
+    return avatarCache;
+  }
+
+  public ConfigManager getConfigManager() {
+    if (cfgManager == null) {
+      cfgManager = new ConfigManager(this);
+    }
+    return cfgManager;
+  }
+
+  public GerritApi getApi() {
+    return getGerrit().api();
+  }
+
+  private Gerrit getGerrit() {
+    if (gerrit == null) {
+      gerrit = new Gerrit(getConfigManager());
+    }
+    return gerrit;
+  }
+
+  public ExecutorService getExecutor() {
+    if (executor == null) {
+      executor = Executors.newFixedThreadPool(10);
+    }
+    return executor;
+  }
+
+  public Preferences getPrefs() {
+    return getPrefManager().getPreferences();
+  }
+
+  public PreferenceManager getPrefManager() {
+    if (prefManager == null) {
+      prefManager = new PreferenceManager(this);
+    }
+    return prefManager;
+  }
+
+  public AccountInfo getSelf() {
+    if (self == null) {
+      try {
+        self = getApi().accounts().self().get();
+      } catch (RestApiException e) {
+        Log.e(TAG, "Failed to get self", e);
+      }
+    }
+    return self;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/app/ReviewItBaseActivity.java b/app/src/main/java/com/google/reviewit/app/ReviewItBaseActivity.java
new file mode 100644
index 0000000..4831f9e
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/app/ReviewItBaseActivity.java
@@ -0,0 +1,101 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.app;
+
+import android.os.Bundle;
+import android.support.annotation.ColorRes;
+import android.support.annotation.IdRes;
+import android.support.v7.app.AppCompatActivity;
+import android.util.TypedValue;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.TextView;
+
+import com.google.reviewit.R;
+import com.google.reviewit.util.WidgetUtil;
+
+/**
+ * Base for all activities.
+ */
+public class ReviewItBaseActivity extends AppCompatActivity {
+  protected WidgetUtil widgetUtil;
+
+  @Override
+  protected void onCreate(Bundle savedInstanceState) {
+    super.onCreate(savedInstanceState);
+    getWindow().setBackgroundDrawable(getDrawable(R.drawable.app_screen));
+    widgetUtil = new WidgetUtil(this);
+  }
+
+  protected ReviewItApp getApp() {
+    return ((ReviewItApp) getApplication());
+  }
+
+  protected int color(@ColorRes int id) {
+    // TODO use getResources().getColor(id, null) with API 23
+    return getResources().getColor(id);
+  }
+
+  protected int dpToPx(int dp) {
+    return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp,
+        getResources().getDisplayMetrics());
+  }
+
+  protected int spToPx(int sp) {
+    return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, sp,
+        getResources().getDisplayMetrics());
+  }
+
+  protected String textOf(@IdRes int id) {
+    View view = findViewById(id);
+    if (view instanceof TextView) {
+      return ((TextView) view).getText().toString();
+    } else {
+      throw new IllegalStateException("unexpected view type "
+          + view.getClass().getName() + " for id " + id);
+    }
+  }
+
+  protected void setOnClickListener(
+      @IdRes int id, View.OnClickListener listener) {
+    findViewById(id).setOnClickListener(listener);
+  }
+
+  protected ViewGroup findViewGroupById(int id) {
+    return (ViewGroup) findViewById(id);
+  }
+
+  protected void setGone(@IdRes int... ids) {
+    for (int id : ids) {
+      findViewById(id).setVisibility(View.GONE);
+    }
+  }
+
+  protected void setVisible(@IdRes int... ids) {
+    for (int id : ids) {
+      findViewById(id).setVisibility(View.VISIBLE);
+    }
+  }
+
+  protected void setInvisible(@IdRes int... ids) {
+    for (int id : ids) {
+      findViewById(id).setVisibility(View.INVISIBLE);
+    }
+  }
+
+  protected String createLink(String url, String text) {
+    return "<a href=\"" + url + "\">" + text + "</a>";
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/app/ServerConfig.java b/app/src/main/java/com/google/reviewit/app/ServerConfig.java
new file mode 100644
index 0000000..e6e8421
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/app/ServerConfig.java
@@ -0,0 +1,92 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.app;
+
+import android.support.annotation.NonNull;
+
+public class ServerConfig implements Comparable<ServerConfig> {
+  public final String id;
+  public final String name;
+  public final String url;
+  public final String user;
+  public final String password;
+
+  private ServerConfig(
+      String id, String name, String url, String user, String password) {
+    this.id = id;
+    this.name = name;
+    this.url = url;
+    this.user = user;
+    this.password = password;
+  }
+
+  @Override
+  public String toString() {
+    return name;
+  }
+
+  @Override
+  public boolean equals(Object o) {
+    return o instanceof ServerConfig
+        && ((ServerConfig) o).id.equals(id);
+  }
+
+  @Override
+  public int hashCode() {
+    return id.hashCode();
+  }
+
+  @Override
+  public int compareTo(@NonNull ServerConfig another) {
+    return name.compareTo(another.name);
+  }
+
+  public static class Builder {
+    private String id;
+    private String name;
+    private String url;
+    private String user;
+    private String password;
+
+    public Builder setId(String id) {
+      this.id = id;
+      return this;
+    }
+
+    public Builder setName(String name) {
+      this.name = name;
+      return this;
+    }
+
+    public Builder setUrl(String url) {
+      this.url = url;
+      return this;
+    }
+
+    public Builder setUser(String user) {
+      this.user = user;
+      return this;
+    }
+
+    public Builder setPassword(String password) {
+      this.password = password;
+      return this;
+    }
+
+    public ServerConfig build() {
+      return new ServerConfig(id, name, url, user, password);
+    }
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/util/ChangeUtil.java b/app/src/main/java/com/google/reviewit/util/ChangeUtil.java
new file mode 100644
index 0000000..bd7a174
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/util/ChangeUtil.java
@@ -0,0 +1,45 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.util;
+
+import android.view.View;
+
+import com.google.gerrit.extensions.client.ChangeStatus;
+import com.google.reviewit.R;
+import com.google.reviewit.app.Change;
+
+public class ChangeUtil {
+  /**
+   * Set the background color depending on the Verified votes and the
+   * change state.
+   */
+  public static void colorBackground(View root, Change change) {
+    WidgetUtil widgetUtil = new WidgetUtil(root.getContext());
+    Change.Voters verifiedVoters = change.voters("Verified");
+    if (ChangeStatus.ABANDONED.equals(change.info.status)) {
+      widgetUtil.setBackgroundColor(root, R.color.abandoned);
+    } else if (ChangeStatus.MERGED.equals(change.info.status)) {
+      widgetUtil.setBackgroundColor(root, R.color.merged);
+    } else if (verifiedVoters.dislikers.size() > 0) {
+      widgetUtil.setBackgroundColor(root, R.color.verifiedMinusOne);
+    } else if (change.info.mergeable != null && !change.info.mergeable) {
+      widgetUtil.setBackgroundColor(root, R.color.nonMergable);
+    } else if (verifiedVoters.likers.size() > 0) {
+      widgetUtil.setBackgroundColor(root, R.color.verifiedPlusOne);
+    } else {
+      widgetUtil.setBackgroundColor(root, R.color.noState);
+    }
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/util/CryptUtil.java b/app/src/main/java/com/google/reviewit/util/CryptUtil.java
new file mode 100644
index 0000000..17881d1
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/util/CryptUtil.java
@@ -0,0 +1,117 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.util;
+
+import android.content.Context;
+import android.provider.Settings;
+import android.util.Base64;
+import android.util.Log;
+
+import java.io.UnsupportedEncodingException;
+import java.security.InvalidAlgorithmParameterException;
+import java.security.InvalidKeyException;
+import java.security.NoSuchAlgorithmException;
+import java.security.spec.InvalidKeySpecException;
+
+import javax.crypto.BadPaddingException;
+import javax.crypto.Cipher;
+import javax.crypto.IllegalBlockSizeException;
+import javax.crypto.NoSuchPaddingException;
+import javax.crypto.SecretKey;
+import javax.crypto.SecretKeyFactory;
+import javax.crypto.spec.PBEKeySpec;
+import javax.crypto.spec.PBEParameterSpec;
+
+/**
+ * Utility to encrypt/decrypt.
+ */
+public class CryptUtil {
+  private static final String TAG = CryptUtil.class.getName();
+
+  private static CryptUtil INSTANCE;
+
+  private static final char[] SEKRIT = ("kbj0-IKCsajm =90fs0VALK Caoo" +
+      "(*^Y98chac0yhCh>HCXZC<CLKJC>LJ>CL>Zj<adsadsiuotpl;m ncads")
+      .toCharArray();
+
+  // TODO use java.nio.charset.StandardCharsets.UTF_8 with API 19
+  private static final String UTF_8 = "utf-8";
+
+  private static final String PBEW_CIPHER_TRANSFORMATION = "PBEWithMD5AndDES";
+
+  private final String androidId;
+  private final Cipher pbeCipherEncrypt;
+  private final Cipher pbeCipherDecrypt;
+
+  public static CryptUtil get(Context context) {
+    if (INSTANCE == null) {
+      String androidId = Settings.Secure.getString(
+          context.getContentResolver(), Settings.Secure.ANDROID_ID);
+      INSTANCE = new CryptUtil(androidId);
+    }
+    return INSTANCE;
+  }
+
+  private CryptUtil(String androidId) {
+    this.androidId = androidId;
+    this.pbeCipherEncrypt = initPbeCipher(Cipher.ENCRYPT_MODE);
+    this.pbeCipherDecrypt = initPbeCipher(Cipher.DECRYPT_MODE);
+  }
+
+  private Cipher initPbeCipher(int mode) {
+    try {
+      SecretKeyFactory keyFactory = SecretKeyFactory.getInstance
+          (PBEW_CIPHER_TRANSFORMATION);
+      SecretKey key = keyFactory.generateSecret(new PBEKeySpec(SEKRIT));
+      Cipher pbeCipher = Cipher.getInstance(PBEW_CIPHER_TRANSFORMATION);
+      pbeCipher.init(mode, key, new PBEParameterSpec(
+          androidId.getBytes(UTF_8), 20));
+      return pbeCipher;
+    } catch (NoSuchAlgorithmException | InvalidKeySpecException
+        | NoSuchPaddingException | UnsupportedEncodingException
+        | InvalidAlgorithmParameterException | InvalidKeyException e) {
+      Log.e(TAG, "Failed to init pbe cipher", e);
+      throw new RuntimeException(e);
+    }
+  }
+
+  public String encrypt(String value) {
+    try {
+      byte[] bytes = value != null
+          ? value.getBytes(UTF_8)
+          : new byte[0];
+      return new String(
+          Base64.encode(pbeCipherEncrypt.doFinal(bytes), Base64.NO_WRAP),
+          UTF_8);
+    } catch (IllegalBlockSizeException | BadPaddingException |
+        UnsupportedEncodingException e) {
+      Log.e(TAG, "Failed to encrypt preference value", e);
+      throw new RuntimeException(e);
+    }
+  }
+
+  public String decrypt(String value) {
+    try {
+      byte[] bytes = value != null
+          ? Base64.decode(value, Base64.DEFAULT)
+          : new byte[0];
+      return new String(pbeCipherDecrypt.doFinal(bytes), UTF_8);
+    } catch (IllegalBlockSizeException | BadPaddingException |
+        UnsupportedEncodingException e) {
+      Log.e(TAG, "Failed to decrypt preference value", e);
+      throw new RuntimeException(e);
+    }
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/util/FormatUtil.java b/app/src/main/java/com/google/reviewit/util/FormatUtil.java
new file mode 100644
index 0000000..5772ff1
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/util/FormatUtil.java
@@ -0,0 +1,99 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.util;
+
+import android.content.Context;
+
+import com.google.gerrit.extensions.common.AccountInfo;
+import com.google.reviewit.app.Change;
+
+import java.text.DecimalFormat;
+import java.util.Date;
+
+public class FormatUtil {
+  public static String formatBytes(long bytes) {
+    return formatBytes(bytes, false);
+  }
+
+  private static String formatBytes(long bytes, boolean abs) {
+    bytes = abs ? Math.abs(bytes) : bytes;
+
+    if (bytes == 0) {
+      return abs ? "0 B" : "+/- 0 B";
+    }
+
+    if (Math.abs(bytes) < 1024) {
+      return (bytes > 0 && !abs ? "+" : "") + bytes + " B";
+    }
+
+    int exp = (int) (Math.log(Math.abs(bytes)) / Math.log(1024));
+    return (bytes > 0 && !abs ? "+" : "")
+        + new DecimalFormat("#.0").format(bytes / Math.pow(1024, exp))
+        + " KMGTPE".charAt(exp - 1) + "iB";
+  }
+
+  public static String ensureSlash(String in) {
+    if (in != null && !in.endsWith("/")) {
+      return in + "/";
+    }
+    return in;
+  }
+
+  public static String formatLabelName(String labelName) {
+    StringBuilder abbrev = new StringBuilder();
+    if (labelName != null) {
+      for (String t : labelName.split("-")) {
+        abbrev.append(t.substring(0, 1).toUpperCase());
+      }
+    }
+    return abbrev.toString();
+  }
+
+  public static String formatLabelValue(int value) {
+    if (value < 0) {
+      return Integer.toString(value);
+    } else if (value == 0) {
+      return "\u00B10";
+    } else {
+      return "+" + Integer.toString(value);
+    }
+  }
+
+  public static String format(AccountInfo account) {
+    if (account.name != null) {
+      return account.name;
+    } else if (account.email != null) {
+      return account.email;
+    } else if (account.username != null) {
+      return account.username;
+    } else {
+      return format(account._accountId);
+    }
+  }
+
+  public static String format(int i) {
+    return Integer.toString(i);
+  }
+
+  public static String formatMessage(Change change) {
+    String message = change.currentRevision().commit.message;
+    message = message.substring(change.info.subject.length());
+    return message.trim();
+  }
+
+  public static String formatDate(Context context, Date date) {
+    return (new RelativeDateFormatter(context)).format(date);
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/util/LayoutUtil.java b/app/src/main/java/com/google/reviewit/util/LayoutUtil.java
new file mode 100644
index 0000000..907ea6c
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/util/LayoutUtil.java
@@ -0,0 +1,103 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.util;
+
+import android.os.Build;
+import android.view.View;
+import android.view.ViewGroup;
+import android.view.ViewTreeObserver;
+import android.widget.TableLayout;
+import android.widget.TableRow;
+
+public class LayoutUtil {
+  public static ViewGroup.LayoutParams matchLayout() {
+    return new ViewGroup.LayoutParams(
+        ViewGroup.LayoutParams.MATCH_PARENT,
+        ViewGroup.LayoutParams.MATCH_PARENT);
+  }
+
+  public static ViewGroup.LayoutParams matchAndWrapLayout() {
+    return new ViewGroup.LayoutParams(
+        ViewGroup.LayoutParams.MATCH_PARENT,
+        ViewGroup.LayoutParams.WRAP_CONTENT);
+  }
+
+  public static TableLayout.LayoutParams matchAndWrapTableLayout() {
+    return new TableLayout.LayoutParams(
+        TableLayout.LayoutParams.MATCH_PARENT,
+        TableLayout.LayoutParams.WRAP_CONTENT);
+  }
+
+  public static TableRow.LayoutParams matchAndWrapTableRowLayout() {
+    return new TableRow.LayoutParams(
+        TableRow.LayoutParams.MATCH_PARENT,
+        TableRow.LayoutParams.WRAP_CONTENT);
+  }
+
+  public static TableRow.LayoutParams wrapTableRowLayout() {
+    return new TableRow.LayoutParams(
+        TableRow.LayoutParams.WRAP_CONTENT,
+        TableRow.LayoutParams.WRAP_CONTENT);
+  }
+
+  public static TableRow.LayoutParams wrapTableRowLayout(int span) {
+    TableRow.LayoutParams params = new TableRow.LayoutParams(
+        TableRow.LayoutParams.WRAP_CONTENT,
+        TableRow.LayoutParams.WRAP_CONTENT);
+    params.span = span;
+    return params;
+  }
+
+  public static void addOneTimeOnGlobalLayoutListener(final View view, final
+  OneTimeOnGlobalLayoutListener oneTimeOnGlobalLayoutListener) {
+    view.getViewTreeObserver().addOnGlobalLayoutListener(
+        new ViewTreeObserver.OnGlobalLayoutListener() {
+      @Override
+      public void onGlobalLayout() {
+        oneTimeOnGlobalLayoutListener.onFirstGlobalLayout();
+
+        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
+          view.getViewTreeObserver().removeOnGlobalLayoutListener(this);
+        } else {
+          view.getViewTreeObserver().removeGlobalOnLayoutListener(this);
+        }
+      }
+    });
+  }
+
+  /**
+   * <code>OnGlobalLayoutListener</code> which is invoked only once.
+   */
+  public interface OneTimeOnGlobalLayoutListener {
+    void onFirstGlobalLayout();
+  }
+
+  public static void addOnHeightListener(final View view, final
+  OnHeightListener onHeightListener) {
+    addOneTimeOnGlobalLayoutListener(view, new OneTimeOnGlobalLayoutListener() {
+      @Override
+      public void onFirstGlobalLayout() {
+        onHeightListener.onHeight(view.getHeight());
+      }
+    });
+  }
+
+  /**
+   * Listener that is invoked once the height of the widget is known.
+   */
+  public interface OnHeightListener {
+    void onHeight(int height);
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/util/NoOpAnimatorListener.java b/app/src/main/java/com/google/reviewit/util/NoOpAnimatorListener.java
new file mode 100644
index 0000000..cdf06e1
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/util/NoOpAnimatorListener.java
@@ -0,0 +1,35 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.util;
+
+import android.animation.Animator;
+
+public class NoOpAnimatorListener implements Animator.AnimatorListener {
+  @Override
+  public void onAnimationStart(Animator animation) {
+  }
+
+  @Override
+  public void onAnimationEnd(Animator animation) {
+  }
+
+  @Override
+  public void onAnimationCancel(Animator animation) {
+  }
+
+  @Override
+  public void onAnimationRepeat(Animator animation) {
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/util/ObservableAsynTask.java b/app/src/main/java/com/google/reviewit/util/ObservableAsynTask.java
new file mode 100644
index 0000000..f9939fb
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/util/ObservableAsynTask.java
@@ -0,0 +1,41 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.util;
+
+import android.os.AsyncTask;
+
+public abstract class ObservableAsynTask<Params, Progress, Result>
+    extends AsyncTask<Params, Progress, Result> {
+
+  @Override
+  protected final void onPreExecute() {
+    super.onPreExecute();
+    preExecute();
+    TaskObserver.get().taskStarted();
+  }
+
+  protected void preExecute() {
+  }
+
+  @Override
+  protected final void onPostExecute(Result result) {
+    super.onPostExecute(result);
+    postExecute(result);
+    TaskObserver.get().taskDone();
+  }
+
+  protected void postExecute(Result result) {
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/util/RelativeDateFormatter.java b/app/src/main/java/com/google/reviewit/util/RelativeDateFormatter.java
new file mode 100644
index 0000000..7cda282
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/util/RelativeDateFormatter.java
@@ -0,0 +1,149 @@
+// Copyright (C) 2013 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.util;
+
+import android.content.Context;
+
+import com.google.reviewit.R;
+
+import java.util.Date;
+
+/**
+ * Formatter to format timestamps relative to the current time using time units
+ * in the format defined by {@code git log --relative-date}.
+ */
+public class RelativeDateFormatter {
+  static final long SECOND_IN_MILLIS = 1000;
+  static final long MINUTE_IN_MILLIS = 60 * SECOND_IN_MILLIS;
+  static final long HOUR_IN_MILLIS = 60 * MINUTE_IN_MILLIS;
+  static final long DAY_IN_MILLIS = 24 * HOUR_IN_MILLIS;
+  static final long WEEK_IN_MILLIS = 7 * DAY_IN_MILLIS;
+  static final long MONTH_IN_MILLIS = 30 * DAY_IN_MILLIS;
+  static final long YEAR_IN_MILLIS = 365 * DAY_IN_MILLIS;
+
+  private final Context context;
+
+  public RelativeDateFormatter(Context context) {
+    this.context = context;
+  }
+
+  /**
+   * @param when {@link Date} to format
+   * @return age of given {@link Date} compared to now formatted in the same
+   * relative format as returned by {@code git log --relative-date}
+   */
+  @SuppressWarnings("boxing")
+  public String format(Date when) {
+    long ageMillis = (new Date()).getTime() - when.getTime();
+
+    // shouldn't happen in a perfect world
+    if (ageMillis < 0) {
+      return context.getString(R.string.in_the_future);
+    }
+
+    // seconds
+    if (ageMillis < upperLimit(MINUTE_IN_MILLIS)) {
+      long seconds = round(ageMillis, SECOND_IN_MILLIS);
+      if (seconds == 1) {
+        return context.getString(R.string.one_second_ago);
+      } else {
+
+        return context.getString(R.string.seconds_ago, seconds);
+      }
+    }
+
+    // minutes
+    if (ageMillis < upperLimit(HOUR_IN_MILLIS)) {
+      long minutes = round(ageMillis, MINUTE_IN_MILLIS);
+      if (minutes == 1) {
+        return context.getString(R.string.one_minute_ago);
+      } else {
+        return context.getString(R.string.minutes_ago, minutes);
+      }
+    }
+
+    // hours
+    if (ageMillis < upperLimit(DAY_IN_MILLIS)) {
+      long hours = round(ageMillis, HOUR_IN_MILLIS);
+      if (hours == 1) {
+        return context.getString(R.string.one_hour_ago);
+      } else {
+        return context.getString(R.string.hours_ago, hours);
+      }
+    }
+
+    // up to 14 days use days
+    if (ageMillis < 14 * DAY_IN_MILLIS) {
+      long days = round(ageMillis, DAY_IN_MILLIS);
+      if (days == 1) {
+        return context.getString(R.string.one_day_ago);
+      } else {
+        return context.getString(R.string.days_ago, days);
+      }
+    }
+
+    // up to 10 weeks use weeks
+    if (ageMillis < 10 * WEEK_IN_MILLIS) {
+      long weeks = round(ageMillis, WEEK_IN_MILLIS);
+      if (weeks == 1) {
+        return context.getString(R.string.one_week_ago);
+      } else {
+        return context.getString(R.string.weeks_ago, weeks);
+      }
+    }
+
+    // months
+    if (ageMillis < YEAR_IN_MILLIS) {
+      long months = round(ageMillis, MONTH_IN_MILLIS);
+      if (months == 1) {
+        return context.getString(R.string.one_month_ago);
+      } else {
+        return context.getString(R.string.months_ago, months);
+      }
+    }
+
+    // up to 5 years use "year, months" rounded to months
+    if (ageMillis < 5 * YEAR_IN_MILLIS) {
+      long years = ageMillis / YEAR_IN_MILLIS;
+      String yearLabel = (years > 1) ? context.getString(R.string.years) :
+          context.getString(R.string.year);
+      long months = round(ageMillis % YEAR_IN_MILLIS, MONTH_IN_MILLIS);
+      String monthLabel = (months > 1) ? context.getString(R.string.months) :
+          (months == 1 ? context.getString(R.string.month) : "");
+      if (months == 0) {
+        return context.getString(R.string.years_0_months_ago, years, yearLabel);
+      } else {
+        return context.getString(R.string.years_months_ago, years, yearLabel,
+            months, monthLabel);
+      }
+    }
+
+    // years
+    long years = round(ageMillis, YEAR_IN_MILLIS);
+    if (years == 1) {
+      return context.getString(R.string.one_year_ago);
+    } else {
+      return context.getString(R.string.years_ago, years);
+    }
+  }
+
+  private static long upperLimit(long unit) {
+    return unit + unit / 2;
+  }
+
+  private static long round(long n, long unit) {
+    return (n + unit / 2) / unit;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/util/TaskObserver.java b/app/src/main/java/com/google/reviewit/util/TaskObserver.java
new file mode 100644
index 0000000..4089b87
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/util/TaskObserver.java
@@ -0,0 +1,72 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.util;
+
+import android.view.View;
+import android.view.Window;
+
+import com.google.reviewit.R;
+
+import java.util.concurrent.atomic.AtomicInteger;
+
+public class TaskObserver {
+  private final AtomicInteger runningTasks = new AtomicInteger(0);
+  private OnChangeListener listener;
+
+  private static TaskObserver INSTANCE = new TaskObserver();
+
+  public static TaskObserver get() {
+    return INSTANCE;
+  }
+
+  public static void enableProgressBar(final Window window) {
+    get().setOnChangeListener(new TaskObserver.OnChangeListener() {
+      @Override
+      public void onChange(int running) {
+        if (running > 0) {
+          window.findViewById(R.id.progress).setVisibility(View.VISIBLE);
+        } else {
+          window.findViewById(R.id.progress).setVisibility(View.INVISIBLE);
+        }
+      }
+    });
+  }
+
+  public static void clear() {
+    get().setOnChangeListener(null);
+  }
+
+  public void taskStarted() {
+    int running = runningTasks.addAndGet(1);
+    if (listener != null) {
+      listener.onChange(running);
+    }
+  }
+
+  public void taskDone() {
+    int running = runningTasks.addAndGet(-1);
+    if (listener != null) {
+      listener.onChange(running);
+    }
+  }
+
+  public void setOnChangeListener(OnChangeListener onChangeListener) {
+    listener = onChangeListener;
+  }
+
+  public interface OnChangeListener {
+    void onChange(int running);
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/util/WidgetUtil.java b/app/src/main/java/com/google/reviewit/util/WidgetUtil.java
new file mode 100644
index 0000000..df03587
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/util/WidgetUtil.java
@@ -0,0 +1,197 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.util;
+
+import android.app.AlertDialog;
+import android.content.Context;
+import android.content.DialogInterface;
+import android.graphics.Paint;
+import android.graphics.drawable.Drawable;
+import android.support.annotation.ColorInt;
+import android.support.annotation.ColorRes;
+import android.support.annotation.DimenRes;
+import android.support.annotation.DrawableRes;
+import android.support.annotation.IdRes;
+import android.support.annotation.StringRes;
+import android.text.Html;
+import android.text.method.LinkMovementMethod;
+import android.util.TypedValue;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.ImageView;
+import android.widget.TableRow;
+import android.widget.TextView;
+
+import com.google.gerrit.extensions.common.AccountInfo;
+import com.google.reviewit.AvatarTask;
+import com.google.reviewit.R;
+import com.google.reviewit.app.ReviewItApp;
+
+import static com.google.reviewit.util.LayoutUtil.wrapTableRowLayout;
+
+public class WidgetUtil {
+  private final Context context;
+
+  public WidgetUtil(Context context) {
+    this.context = context;
+  }
+
+  public
+  @ColorInt
+  int color(@ColorRes int id) {
+    // TODO use getResources().getColor(id, null) with API 23
+    return context.getResources().getColor(id);
+  }
+
+  public int spToPx(int sp) {
+    return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, sp,
+        context.getResources().getDisplayMetrics());
+  }
+
+  public int dpToPx(int dp) {
+    return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp,
+        context.getResources().getDisplayMetrics());
+  }
+
+  public Drawable getDrawable(@DrawableRes int id) {
+    return context.getResources().getDrawable(id);
+  }
+
+  public View tableRowRightMargin(View view, int rightMarginDp) {
+    TableRow.LayoutParams layoutParams =
+        (TableRow.LayoutParams) view.getLayoutParams();
+    layoutParams.rightMargin = dpToPx(rightMarginDp);
+    view.setLayoutParams(layoutParams);
+    return view;
+  }
+
+  public TextView createTextView(String text, int textSizeSp) {
+    return createTextView(text, textSizeSp, false);
+  }
+
+  public TextView createTextView(String text, int textSizeSp, boolean isHtlm) {
+    TextView textView = new TextView(context);
+    textView.setLayoutParams(wrapTableRowLayout());
+    textView.setText(isHtlm ? Html.fromHtml(text) : text);
+    textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, textSizeSp);
+    if (isHtlm) {
+      textView.setLinkTextColor(color(R.color.hyperlink));
+      textView.setMovementMethod(LinkMovementMethod.getInstance());
+    }
+    return textView;
+  }
+
+  public static void underline(TextView textView) {
+    textView.setPaintFlags(textView.getPaintFlags()
+        | Paint.UNDERLINE_TEXT_FLAG);
+  }
+
+  public void showError(@StringRes int id) {
+    showError(context.getString(id));
+  }
+
+  public void showError(String msg) {
+    new AlertDialog.Builder(context)
+        .setTitle(context.getString(R.string.error_title))
+        .setMessage(msg)
+        .setPositiveButton(android.R.string.ok,
+            new DialogInterface.OnClickListener() {
+          public void onClick(DialogInterface dialog, int which) {
+            // do nothing
+          }
+        }).setIcon(android.R.drawable.ic_dialog_alert).show();
+  }
+
+  public int getDimension(@DimenRes int id) {
+    return (int) context.getResources().getDimension(id);
+  }
+
+  public void setBackgroundColor(View view, @ColorRes int colorId) {
+    view.setBackgroundColor(color(colorId));
+  }
+
+  public static void setBackground(View view, Drawable drawable) {
+    // TODO use setBackGround(Drawable) with API 16
+    view.setBackgroundDrawable(drawable);
+  }
+
+  public static void setXY(View view, int x, int y) {
+    view.setX(x);
+    view.setY(y);
+  }
+
+  public static void setRightMargin(View view, int margin) {
+    ViewGroup.MarginLayoutParams layoutParams =
+        (ViewGroup.MarginLayoutParams) view.getLayoutParams();
+    layoutParams.rightMargin = margin;
+  }
+
+  public static View setBottomMargin(View view, int margin) {
+    ViewGroup.MarginLayoutParams layoutParams =
+        (ViewGroup.MarginLayoutParams) view.getLayoutParams();
+    layoutParams.bottomMargin = margin;
+    return view;
+  }
+
+  public static void setText(View view, String text) {
+    if (view instanceof TextView) {
+      ((TextView) view).setText(text);
+    } else {
+      throw new IllegalStateException("unexpected view type "
+          + view.getClass().getName() + " for id " + view.getId());
+    }
+  }
+
+  public static void setText(View base, @IdRes int id, String text) {
+    View view = base.findViewById(id);
+    if (view instanceof TextView) {
+      ((TextView) view).setText(text);
+    } else {
+      throw new IllegalStateException("unexpected view type "
+          + view.getClass().getName() + " for id " + id);
+    }
+  }
+
+  public static void displayAvatar(
+      ReviewItApp app, AccountInfo account, ImageView avatar) {
+    new AvatarTask(app, avatar).executeOnExecutor(app.getExecutor(), account);
+  }
+
+  public static void setGone(View... views) {
+    for (View view : views) {
+      view.setVisibility(View.GONE);
+    }
+  }
+
+  public static void setInvisible(View... views) {
+    for (View view : views) {
+      view.setVisibility(View.INVISIBLE);
+    }
+  }
+
+  public static void setVisible(View... views) {
+    for (View view : views) {
+      view.setVisibility(View.VISIBLE);
+    }
+  }
+
+  public static void setVisible(boolean visible, View... views) {
+    if (visible) {
+      setVisible(views);
+    } else {
+      setGone(views);
+    }
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/widget/ApprovalsView.java b/app/src/main/java/com/google/reviewit/widget/ApprovalsView.java
new file mode 100644
index 0000000..7b4d5ea
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/widget/ApprovalsView.java
@@ -0,0 +1,267 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.widget;
+
+import android.content.Context;
+import android.util.AttributeSet;
+import android.view.Gravity;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.ImageView;
+import android.widget.LinearLayout;
+import android.widget.TableLayout;
+import android.widget.TableRow;
+import android.widget.TextView;
+
+import com.google.gerrit.extensions.client.ReviewerState;
+import com.google.gerrit.extensions.common.AccountInfo;
+import com.google.gerrit.extensions.common.ApprovalInfo;
+import com.google.gerrit.extensions.common.ChangeInfo;
+import com.google.gerrit.extensions.common.LabelInfo;
+import com.google.reviewit.AddReviewerFragment;
+import com.google.reviewit.AvatarTask;
+import com.google.reviewit.BaseFragment;
+import com.google.reviewit.R;
+import com.google.reviewit.app.ReviewItApp;
+import com.google.reviewit.util.FormatUtil;
+import com.google.reviewit.util.WidgetUtil;
+
+import java.util.Comparator;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import java.util.TreeMap;
+import java.util.TreeSet;
+
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapTableLayout;
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapTableRowLayout;
+import static com.google.reviewit.util.LayoutUtil.wrapTableRowLayout;
+
+public class ApprovalsView extends TableLayout {
+  private final WidgetUtil widgetUtil;
+
+  public ApprovalsView(Context context) {
+    this(context, null);
+  }
+
+  public ApprovalsView(Context context, AttributeSet attrs) {
+    super(context, attrs);
+
+    this.widgetUtil = new WidgetUtil(context);
+
+    setColumnStretchable(1, true);
+    setColumnShrinkable(1, true);
+    WidgetUtil.setBackground(this,
+        widgetUtil.getDrawable(R.drawable.info_table));
+  }
+
+  public void displayApprovals(
+      ReviewItApp app, ChangeInfo change, final BaseFragment origin) {
+    TableRow headerRow = new TableRow(getContext());
+    headerRow.setLayoutParams(matchAndWrapTableRowLayout());
+    LinearLayout l = new LinearLayout(getContext());
+    l.setLayoutParams(wrapTableRowLayout(2));
+    ImageView addReviewerButton = new ImageView(getContext());
+    ViewGroup.MarginLayoutParams params =
+        new ViewGroup.MarginLayoutParams(
+            widgetUtil.dpToPx(24), widgetUtil.dpToPx(24));
+    params.bottomMargin = widgetUtil.dpToPx(3);
+    addReviewerButton.setLayoutParams(params);
+    addReviewerButton.setClickable(true);
+    addReviewerButton.setOnClickListener(new OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        AddReviewerFragment f = AddReviewerFragment.create(origin.getClass());
+        if (origin.getArguments() != null) {
+          f.getArguments().putAll(origin.getArguments());
+        }
+        origin.display(f, false);
+      }
+    });
+
+    WidgetUtil.setBackground(addReviewerButton,
+        widgetUtil.getDrawable(R.drawable.ic_person_add_black_18dp));
+    l.addView(addReviewerButton);
+    l.addView(WidgetUtil.setBottomMargin(
+        widgetUtil.createTextView(
+            origin.getString(R.string.approvals), 20), widgetUtil.dpToPx(5)));
+    headerRow.addView(l);
+    addView(headerRow, matchAndWrapTableLayout());
+
+    Set<AccountInfo> reviewers = new TreeSet<>(new Comparator<AccountInfo>() {
+      @Override
+      public int compare(AccountInfo account1, AccountInfo account2) {
+        return FormatUtil.format(account1).compareTo(
+            FormatUtil.format(account2));
+      }
+    });
+    if (change.reviewers != null
+        && change.reviewers.containsKey(ReviewerState.REVIEWER)) {
+      reviewers.addAll(change.reviewers.get(ReviewerState.REVIEWER));
+    }
+    Map<String, LabelInfo> labels = new TreeMap<>();
+    TreeMap<String, Map<Integer, ApprovalInfo>> approvalsByLabel =
+        new TreeMap<>();
+    for (Map.Entry<String, LabelInfo> label : change.labels.entrySet()) {
+      Map<Integer, ApprovalInfo> approvalsByAccount = new HashMap<>();
+      labels.put(label.getKey(), label.getValue());
+      approvalsByLabel.put(label.getKey(), approvalsByAccount);
+      List<ApprovalInfo> all = change.labels.get(label.getKey()).all;
+      if (all != null) {
+        for (ApprovalInfo approval : all) {
+          reviewers.add(approval);
+          approvalsByAccount.put(approval._accountId, approval);
+        }
+      }
+    }
+
+    for (String labelName : labels.keySet()) {
+      headerRow.addView(center(widgetUtil.createTextView(
+          FormatUtil.formatLabelName(labelName), 16)));
+    }
+
+    for (AccountInfo account : reviewers) {
+      addApprovalRow(app, account, labels, approvalsByLabel);
+    }
+  }
+
+  private void addApprovalRow(
+      ReviewItApp app, AccountInfo account, Map<String, LabelInfo> labels,
+      TreeMap<String, Map<Integer, ApprovalInfo>> approvalsByLabel) {
+    TableRow tr = new TableRow(getContext());
+    tr.setLayoutParams(matchAndWrapTableRowLayout());
+    int textSizeSp = 14;
+
+    tr.addView(bottomMargin(widgetUtil.tableRowRightMargin(
+        createAvatar(app, account), 4), 5));
+    tr.addView(bottomMargin(widgetUtil.tableRowRightMargin(
+        widgetUtil.createTextView(
+            FormatUtil.format(account), textSizeSp), 4), 5));
+
+    for (Map.Entry<String, Map<Integer, ApprovalInfo>> e
+        : approvalsByLabel.entrySet()) {
+      String labelName = e.getKey();
+      LabelInfo label = labels.get(labelName);
+
+      if (label.approved != null
+          && label.approved._accountId.equals(account._accountId)) {
+        tr.addView(createPositiveVoteIcon());
+      } else if (label.rejected != null
+          && label.rejected._accountId.equals(account._accountId)) {
+        tr.addView(createNegativeVoteIcon());
+      } else {
+        ApprovalInfo approval = e.getValue().get(account._accountId);
+        if (approval != null && approval.value != null) {
+          if (isMax(label, approval.value)) {
+            tr.addView(createPositiveVoteIcon());
+          } else if (isMin(label, approval.value)) {
+            tr.addView(createNegativeVoteIcon());
+          } else {
+            TextView text = widgetUtil.createTextView(
+                FormatUtil.formatLabelValue(approval.value), textSizeSp);
+            tr.addView(bottomMargin(center(text), 5));
+            if (approval.value > 0) {
+              text.setTextColor(widgetUtil.color(R.color.votePositive));
+            } else if (approval.value < 0) {
+              text.setTextColor(widgetUtil.color(R.color.voteNegative));
+            } else {
+              text.setText("0");
+            }
+          }
+        } else {
+          tr.addView(bottomMargin(center(
+              widgetUtil.createTextView("0", textSizeSp)), 5));
+        }
+      }
+    }
+    addView(tr, matchAndWrapTableLayout());
+  }
+
+  private boolean isMax(LabelInfo label, int value) {
+    Integer max = null;
+    for (String rangeValue : label.values.keySet()) {
+      Integer v = Integer.parseInt(rangeValue.trim());
+      if (max == null || v.intValue() > max.intValue()) {
+        max = v;
+      }
+    }
+    return max != null && max.equals(Integer.valueOf(value));
+  }
+
+  private boolean isMin(LabelInfo label, int value) {
+    Integer min = null;
+    for (String rangeValue : label.values.keySet()) {
+      Integer v = Integer.parseInt(rangeValue.trim());
+      if (min == null || v.intValue() < min.intValue()) {
+        min = v;
+      }
+    }
+    return min != null && min.equals(Integer.valueOf(value));
+  }
+
+  private ImageView createAvatar(ReviewItApp app, AccountInfo account) {
+    ImageView avatar = createImageView();
+    TableRow.LayoutParams layoutParams =
+        (TableRow.LayoutParams) avatar.getLayoutParams();
+    layoutParams.width = widgetUtil.dpToPx(24);
+    layoutParams.height = widgetUtil.dpToPx(24);
+    avatar.setLayoutParams(layoutParams);
+    new AvatarTask(app, avatar).executeOnExecutor(app.getExecutor(), account);
+    return avatar;
+  }
+
+  private ImageView createPositiveVoteIcon() {
+    ImageView image = createImageView();
+    image.setImageDrawable(
+        widgetUtil.getDrawable(R.drawable.ic_done_black_18dp));
+    image.setColorFilter(widgetUtil.color(R.color.votePositive));
+    center(image);
+    bottomMargin(image, 5);
+    return image;
+  }
+
+  private ImageView createNegativeVoteIcon() {
+    ImageView image = createImageView();
+    image.setImageDrawable(widgetUtil.getDrawable(
+        R.drawable.ic_clear_black_18dp));
+    image.setColorFilter(widgetUtil.color(R.color.voteNegative));
+    center(image);
+    bottomMargin(image, 5);
+    return image;
+  }
+
+  private View bottomMargin(View view, int bottomMarginDp) {
+    TableRow.LayoutParams layoutParams =
+        (TableRow.LayoutParams) view.getLayoutParams();
+    layoutParams.bottomMargin = widgetUtil.dpToPx(bottomMarginDp);
+    view.setLayoutParams(layoutParams);
+    return view;
+  }
+
+  private ImageView createImageView() {
+    ImageView imageView = new ImageView(getContext());
+    imageView.setLayoutParams(wrapTableRowLayout());
+    return imageView;
+  }
+
+  private View center(View view) {
+    TableRow.LayoutParams layoutParams =
+        (TableRow.LayoutParams) view.getLayoutParams();
+    layoutParams.gravity = Gravity.CENTER_HORIZONTAL;
+    view.setLayoutParams(layoutParams);
+    return view;
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/widget/ChangeBox.java b/app/src/main/java/com/google/reviewit/widget/ChangeBox.java
new file mode 100644
index 0000000..bab77d8
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/widget/ChangeBox.java
@@ -0,0 +1,227 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.widget;
+
+import android.content.Context;
+import android.graphics.drawable.GradientDrawable;
+import android.support.annotation.ColorRes;
+import android.support.annotation.IdRes;
+import android.util.AttributeSet;
+import android.util.Log;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.ImageView;
+import android.widget.RelativeLayout;
+import android.widget.TextView;
+
+import com.google.gerrit.extensions.common.AccountInfo;
+import com.google.gerrit.extensions.common.ChangeInfo;
+import com.google.gerrit.extensions.restapi.RestApiException;
+import com.google.reviewit.R;
+import com.google.reviewit.app.Change;
+import com.google.reviewit.app.Preferences;
+import com.google.reviewit.app.ReviewItApp;
+import com.google.reviewit.util.FormatUtil;
+import com.google.reviewit.util.ObservableAsynTask;
+import com.google.reviewit.util.WidgetUtil;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.List;
+
+public class ChangeBox extends RelativeLayout {
+  private static final String TAG = ChangeBox.class.getName();
+
+  private final WidgetUtil widgetUtil;
+
+  public ChangeBox(Context context) {
+    this(context, null);
+  }
+
+  public ChangeBox(Context context, AttributeSet attrs) {
+    super(context, attrs);
+
+    this.widgetUtil = new WidgetUtil(context);
+
+    inflate(context, R.layout.change_box, this);
+    RelativeLayout.LayoutParams layoutParams =
+        new RelativeLayout.LayoutParams(
+            ViewGroup.LayoutParams.MATCH_PARENT,
+            ViewGroup.LayoutParams.MATCH_PARENT);
+    int activityHorizontalMargin = widgetUtil.getDimension(
+        R.dimen.activity_horizontal_margin);
+    int activityVerticalMargin = widgetUtil.getDimension(
+        R.dimen.activity_vertical_margin);
+    int reviewitBottomAreaHeight = widgetUtil.getDimension(
+        R.dimen.reviewit_bottom_area_height);
+    layoutParams.setMargins(activityHorizontalMargin, activityVerticalMargin,
+        activityHorizontalMargin, reviewitBottomAreaHeight);
+    setLayoutParams(layoutParams);
+
+    if (getId() < 0) {
+      setId(R.id.changeBox);
+    }
+
+    GradientDrawable gd = new GradientDrawable();
+    gd.setColor(widgetUtil.color(R.color.commitMessage));
+    gd.setCornerRadius(widgetUtil.dpToPx(20));
+    gd.setStroke(1, widgetUtil.color(R.color.commitMessage4));
+    WidgetUtil.setBackground(this, gd);
+  }
+
+  public void display(ReviewItApp app, Change change) {
+    configureInfo(app);
+
+    ChangeInfo info = change.info;
+    WidgetUtil.setText(v(R.id.project), info.project);
+    WidgetUtil.setText(v(R.id.branch), info.branch);
+    WidgetUtil.setText(v(R.id.topic), info.topic);
+    WidgetUtil.setText(v(R.id.age),
+        FormatUtil.formatDate(getContext(), info.updated));
+    WidgetUtil.setText(v(R.id.subject), info.subject);
+    WidgetUtil.setText(v(R.id.commitMessage),
+        FormatUtil.formatMessage(change));
+    displayAvatar(app, info.owner);
+    WidgetUtil.setText(v(R.id.owner), FormatUtil.format(info.owner));
+    WidgetUtil.setText(v(R.id.patchsets),
+        FormatUtil.format(change.currentRevision()._number));
+    setInlineCommentCount(app, change);
+    Change.Voters codeReviewVoters = change.voters("Code-Review");
+    WidgetUtil.setText(this, R.id.likes,
+        FormatUtil.format(codeReviewVoters.likers.size()));
+    WidgetUtil.setText(this, R.id.dislikes,
+        FormatUtil.format(codeReviewVoters.dislikers.size()));
+    Collection<AccountInfo> reviewers = change.reviewers(true);
+    WidgetUtil.setText(v(R.id.reviewers),
+        FormatUtil.format(reviewers.size()));
+    setCommitMessageFont(app);
+    colorIcons(app, codeReviewVoters, reviewers);
+  }
+
+  private void configureInfo(ReviewItApp app) {
+    Preferences prefs = app.getPrefs();
+    WidgetUtil.setVisible(prefs.showPatchSets,
+        v(R.id.patchsets, R.id.patchSetIcon));
+    WidgetUtil.setVisible(prefs.showPositiveCodeReviewVotes,
+        v(R.id.likes, R.id.positiveReviewIcon));
+    WidgetUtil.setVisible(prefs.showNegativeCodeReviewVotes,
+        v(R.id.dislikes, R.id.negativeReviewIcon));
+    WidgetUtil.setVisible(prefs.showComments,
+        v(R.id.comments, R.id.commentIcon));
+    WidgetUtil.setVisible(prefs.showReviewers,
+        v(R.id.reviewers, R.id.reviewerIcon));
+  }
+
+  private void setCommitMessageFont(ReviewItApp app) {
+    Preferences prefs = app.getPrefs();
+    if (!prefs.autoFontSizeForCommitMessage()) {
+      MaxFontSizeTextView commitMessage =
+          ((MaxFontSizeTextView) v(R.id.commitMessage));
+      commitMessage.setMinTextSize(prefs.commitMessageFontSize);
+      commitMessage.setMaxTextSize(prefs.commitMessageFontSize);
+    }
+  }
+
+  /**
+   * Highlight icons for the current user by a different color.
+   */
+  private void colorIcons(
+      ReviewItApp app, Change.Voters codeReviewVoters,
+      Collection<AccountInfo> reviewers) {
+    colorIcon(R.id.positiveReviewIcon,
+        containsSelf(app, codeReviewVoters.likers)
+            ? R.color.iconHighlightedGreen
+            : R.color.icon);
+    colorIcon(R.id.negativeReviewIcon,
+        containsSelf(app, codeReviewVoters.dislikers)
+            ? R.color.iconHighlightedRed
+            : R.color.icon);
+    colorIcon(R.id.commentIcon, R.color.icon);
+    colorIcon(R.id.reviewerIcon,
+        containsSelf(app, reviewers)
+            ? R.color.iconHighlightedGreen
+            : R.color.icon);
+  }
+
+  private void colorIcon(@IdRes int id, @ColorRes int colorId) {
+    ((ImageView) v(id)).setColorFilter(widgetUtil.color(colorId));
+  }
+
+  private void setInlineCommentCount(final ReviewItApp app, Change change) {
+    new ObservableAsynTask<Change, Void, Integer>() {
+      private TextView comments;
+
+      @Override
+      protected void preExecute() {
+        super.preExecute();
+        comments = (TextView) v(R.id.comments);
+      }
+
+      @Override
+      protected Integer doInBackground(Change... changes) {
+        Change change = changes[0];
+        try {
+          return change.getInlineCommentCount();
+        } catch (RestApiException e) {
+          Log.e(TAG, "Failed to count inline comments of change "
+              + change.info._number, e);
+          return null;
+        }
+      }
+
+      @Override
+      protected void postExecute(Integer count) {
+        if (count == null) {
+          return;
+        }
+        comments.setText(FormatUtil.format(count));
+        if (app.getPrefs().showComments) {
+          WidgetUtil.setVisible(comments);
+        }
+      }
+    }.executeOnExecutor(app.getExecutor(), change);
+  }
+
+  private boolean containsSelf(
+      ReviewItApp app, Collection<AccountInfo> accounts) {
+    AccountInfo self = app.getSelf();
+    if (self == null) {
+      return false;
+    }
+    for (AccountInfo account : accounts) {
+      if (self._accountId.equals(account._accountId)) {
+        return true;
+      }
+    }
+    return false;
+  }
+
+  private void displayAvatar(ReviewItApp app,AccountInfo account) {
+    WidgetUtil.displayAvatar(app, account, (ImageView) v(R.id.avatar));
+  }
+
+  private View v(@IdRes int id) {
+    return findViewById(id);
+  }
+
+  private View[] v(@IdRes int id, @IdRes int... moreIds) {
+    List<View> views = new ArrayList<>(moreIds.length + 1);
+    views.add(v(id));
+    for (@IdRes int yaId : moreIds) {
+      views.add(v(yaId));
+    }
+    return views.toArray(new View[views.size()]);
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/widget/MaxFontSizeTextView.java b/app/src/main/java/com/google/reviewit/widget/MaxFontSizeTextView.java
new file mode 100644
index 0000000..f9a0920
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/widget/MaxFontSizeTextView.java
@@ -0,0 +1,192 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.widget;
+
+import android.content.Context;
+import android.content.res.TypedArray;
+import android.graphics.Paint;
+import android.text.Layout;
+import android.util.AttributeSet;
+import android.util.TypedValue;
+import android.view.View;
+import android.widget.TextView;
+
+import com.google.reviewit.R;
+
+/**
+ * TextView that automatically sets the font size as large as possible
+ * without additional line breaks.
+ */
+public class MaxFontSizeTextView extends TextView {
+  private static final float THRESHOLD = 0.5f;
+  private static final float MIN_TEXT_SIZE_DEFAULT = 2;
+  private static final float MAX_TEXT_SIZE_DEFAULT = 100;
+
+  private float minTextSize;
+  private float maxTextSize;
+  private final int maxLineLength;
+  private Paint paint;
+  private String text;
+
+  public MaxFontSizeTextView(Context context) {
+    this(context, null);
+  }
+
+  public MaxFontSizeTextView(Context context, AttributeSet attrs) {
+    super(context, attrs);
+    TypedArray a = context.getTheme().obtainStyledAttributes(attrs,
+        R.styleable.MaxFontSizeTextView, 0, 0);
+    maxLineLength = a.getInteger(R.styleable
+        .MaxFontSizeTextView_maxLineLength, 0);
+    minTextSize = readAttr(a.getString(
+        R.styleable.MaxFontSizeTextView_minTextSize), MIN_TEXT_SIZE_DEFAULT);
+    maxTextSize = readAttr(a.getString(
+        R.styleable.MaxFontSizeTextView_maxTextSize), MAX_TEXT_SIZE_DEFAULT);
+
+    paint = new Paint();
+
+    if (a.getBoolean(R.styleable.MaxFontSizeTextView_ellipsize, false)) {
+      addOnLayoutChangeListener(new OnLayoutChangeListener() {
+        @Override
+        public void onLayoutChange(View v, int left, int top, int right, int
+            bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) {
+          Layout layout = getLayout();
+          if (layout == null) {
+            return;
+          }
+          // TODO the computation doesn't work when the min font size
+          // is larger than the computed max font or when some
+          // lines exceed maxLineLength, because then there are
+          // additional line breaks
+          int lastVisibleLine = layout.getLineForVertical(getHeight());
+          if (getLineCount() > lastVisibleLine + 1) {
+            int lines = 1;
+            StringBuilder b = new StringBuilder();
+            for (String line : text.split("\n")) {
+              if (lines == lastVisibleLine) {
+                b.append("...");
+                setText(b.toString());
+                return;
+              }
+              b.append(line);
+              b.append("\n");
+              lines++;
+            }
+          }
+        }
+      });
+    }
+  }
+
+  private float readAttr(String attr, float defaultValue) {
+    if (attr == null) {
+      return defaultValue;
+    }
+    try {
+      if (attr.endsWith("sp")) {
+        attr = attr.substring(0, attr.length() - 2).trim();
+        return spToPx(Integer.valueOf(attr));
+      } else if (attr.endsWith("px")) {
+        attr = attr.substring(0, attr.length() - 2).trim();
+        return Integer.valueOf(attr);
+      } else {
+        return Integer.valueOf(attr);
+      }
+    } catch (NumberFormatException e) {
+      return defaultValue;
+    }
+  }
+
+  public void setMinTextSize(float minTextSize) {
+    this.minTextSize = minTextSize;
+  }
+
+  public void setMaxTextSize(float maxTextSize) {
+    this.maxTextSize = maxTextSize;
+  }
+
+  private void refitText(CharSequence text, int textWidth) {
+    if (textWidth <= 0) {
+      return;
+    }
+    int width = textWidth - getPaddingLeft() - getPaddingRight();
+
+    paint.set(getPaint());
+
+    // TODO works only for monospace font
+    String longestLine = null;
+    for (String line : text.toString().split("\n")) {
+      if (longestLine != null && line.length() <= longestLine.length()) {
+        continue;
+      }
+      longestLine = line;
+    }
+    if (longestLine == null) {
+      return;
+    }
+
+    if (Float.valueOf(minTextSize).equals(maxTextSize)) {
+      setTextSize(TypedValue.COMPLEX_UNIT_PX, minTextSize);
+      return;
+    }
+
+    if (maxLineLength > 0 && longestLine.length() > maxLineLength) {
+      longestLine = longestLine.substring(0, maxLineLength);
+    }
+
+    float high = maxTextSize;
+    float low = minTextSize;
+    while ((high - low) > THRESHOLD) {
+      float size = (high + low) / 2;
+      paint.setTextSize(size);
+      if (paint.measureText(longestLine) >= width) {
+        // font size too big
+        high = size;
+      } else {
+        // font size too small
+        low = size;
+      }
+    }
+    setTextSize(TypedValue.COMPLEX_UNIT_PX, low);
+  }
+
+  @Override
+  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
+    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
+    int parentWidth = MeasureSpec.getSize(widthMeasureSpec);
+    refitText(getText(), parentWidth);
+    setMeasuredDimension(parentWidth, getMeasuredHeight());
+  }
+
+  @Override
+  protected void onTextChanged(
+      CharSequence text, int start, int before, int after) {
+    this.text = text.toString();
+    refitText(text, this.getWidth());
+  }
+
+  @Override
+  protected void onSizeChanged(
+      int width, int height, int oldWidth, int oldHeight) {
+    if (width != oldWidth) {
+      refitText(getText(), width);
+    }
+  }
+
+  private int spToPx(int sp) {
+    return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, sp,
+        getResources().getDisplayMetrics());
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/widget/PostReviewView.java b/app/src/main/java/com/google/reviewit/widget/PostReviewView.java
new file mode 100644
index 0000000..3dd59bb
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/widget/PostReviewView.java
@@ -0,0 +1,423 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.widget;
+
+import android.content.Context;
+import android.graphics.Canvas;
+import android.graphics.ColorFilter;
+import android.graphics.Paint;
+import android.graphics.Rect;
+import android.graphics.RectF;
+import android.graphics.drawable.Drawable;
+import android.support.annotation.ColorRes;
+import android.support.annotation.DrawableRes;
+import android.util.AttributeSet;
+import android.view.Gravity;
+import android.view.MotionEvent;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.ImageView;
+import android.widget.LinearLayout;
+import android.widget.RelativeLayout;
+
+import com.google.common.base.Function;
+import com.google.common.collect.Collections2;
+import com.google.reviewit.R;
+import com.google.reviewit.app.Change;
+import com.google.reviewit.util.WidgetUtil;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.List;
+
+import static com.google.common.base.Preconditions.checkState;
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapLayout;
+import static com.google.reviewit.util.LayoutUtil.matchLayout;
+
+/**
+ * View to post a review on a change (summary comment + Code-Review vote).
+ */
+public class PostReviewView extends LinearLayout {
+  private final WidgetUtil widgetUtil;
+  private final List<VotingButton> votingButtons = new ArrayList<>();
+  private final ImageView emoticon;
+
+  private Change change;
+  private OnVoteListener onVoteListener = null;
+
+  public PostReviewView(Context context) {
+    this(context, null);
+  }
+
+  public PostReviewView(Context context, AttributeSet attrs) {
+    super(context, attrs);
+
+    this.widgetUtil = new WidgetUtil(context);
+
+    setOrientation(VERTICAL);
+
+    RelativeLayout votingPanel = new RelativeLayout(context);
+    votingPanel.setLayoutParams(new RelativeLayout.LayoutParams(
+        ViewGroup.LayoutParams.MATCH_PARENT, widgetUtil.dpToPx(200)));
+    addView(votingPanel);
+
+    VotingButton voteMinus1 = new VotingButton(context,
+        Background.Corner.LEFT_TOP,
+        R.drawable.ic_exposure_neg_1_white_48dp,
+        R.drawable.ic_sentiment_dissatisfied_white_48dp,
+        R.color.votingNegative,
+        R.color.votingNegativeSelected,
+        -1);
+    VotingButton voteMinus2 = new VotingButton(context,
+        Background.Corner.LEFT_BOTTOM,
+        R.drawable.ic_exposure_neg_2_white_48dp,
+        R.drawable.ic_sentiment_very_dissatisfied_white_48dp,
+        R.color.votingNegative,
+        R.color.votingNegativeSelected,
+        -2);
+    VotingButton votePlus1 = new VotingButton(context,
+        Background.Corner.RIGHT_TOP,
+        R.drawable.ic_exposure_plus_1_white_48dp,
+        R.drawable.ic_sentiment_satisfied_white_48dp,
+        R.color.votingPositive,
+        R.color.votingPositiveSelected,
+        1);
+    VotingButton votePlus2 = new VotingButton(context,
+        Background.Corner.RIGHT_BOTTOM,
+        R.drawable.ic_exposure_plus_2_white_48dp,
+        R.drawable.ic_sentiment_very_satisfied_white_48dp,
+        R.color.votingPositive,
+        R.color.votingPositiveSelected,
+        2);
+    votingButtons.addAll(
+        Arrays.asList(voteMinus1, voteMinus2, votePlus1, votePlus2));
+
+    LinearLayout votePanels = new LinearLayout(context);
+    votePanels.setLayoutParams(matchLayout());
+    votePanels.setOrientation(LinearLayout.VERTICAL);
+    votingPanel.addView(votePanels);
+
+    LinearLayout votePanel1 = new LinearLayout(context);
+    votePanel1.setLayoutParams(matchAndWrapLayout());
+    votePanel1.setOrientation(LinearLayout.HORIZONTAL);
+    votePanels.addView(votePanel1);
+    votePanel1.addView(voteMinus1);
+    votePanel1.addView(votePlus1);
+
+    LinearLayout votePanel2 = new LinearLayout(context);
+    votePanel2.setLayoutParams(matchAndWrapLayout());
+    votePanel2.setOrientation(LinearLayout.HORIZONTAL);
+    votePanels.addView(votePanel2);
+    votePanel2.addView(voteMinus2);
+    votePanel2.addView(votePlus2);
+
+    emoticon = new ImageView(context);
+    RelativeLayout.LayoutParams emoticonParams =
+        new RelativeLayout.LayoutParams(
+            widgetUtil.dpToPx(110), widgetUtil.dpToPx(110));
+    emoticonParams.addRule(RelativeLayout.CENTER_IN_PARENT,
+        RelativeLayout.TRUE);
+    emoticon.setLayoutParams(emoticonParams);
+    emoticon.setImageDrawable(
+        widgetUtil.getDrawable(R.drawable.ic_sentiment_neutral_white_48dp));
+    emoticon.setColorFilter(
+        widgetUtil.color(R.color.votingNeutral));
+    votingPanel.addView(emoticon);
+
+    setOnTouchListener(new OnTouchListener() {
+      @Override
+      public boolean onTouch(View v, MotionEvent event) {
+        Rect emoticonBounds = new Rect(emoticon.getLeft(), emoticon.getTop(),
+            emoticon.getRight(), emoticon.getBottom());
+        switch (event.getAction()) {
+          case MotionEvent.ACTION_DOWN:
+          case MotionEvent.ACTION_MOVE:
+            if (applyEvent(emoticonBounds, event)) {
+              emoticon.setImageDrawable(widgetUtil.getDrawable(
+                  R.drawable.ic_sentiment_neutral_white_48dp));
+              emoticon.setColorFilter(widgetUtil.color(R.color.votingNeutral));
+              for (VotingButton b : votingButtons) {
+                if (!b.isDisabled()) {
+                  WidgetUtil.setBackground(b, b.getBackgroundDrawable());
+                }
+              }
+            } else {
+              boolean selected = false;
+              for (VotingButton b : votingButtons) {
+                if (!b.isDisabled()) {
+                  if (applyEvent(b, event)) {
+                    WidgetUtil.setBackground(b,
+                        b.getBackgroundDrawableSelected());
+                    b.applyIcon(emoticon);
+                    selected = true;
+                  } else {
+                    WidgetUtil.setBackground(b, b.getBackgroundDrawable());
+                  }
+                }
+                if (!selected) {
+                  emoticon.setImageDrawable(widgetUtil.getDrawable(
+                      R.drawable.ic_sentiment_neutral_white_48dp));
+                  emoticon.setColorFilter(
+                      widgetUtil.color(R.color.votingNeutral));
+                }
+              }
+            }
+            break;
+          case MotionEvent.ACTION_UP:
+            checkState(change != null, "Change not set");
+            Integer vote = null;
+            if (applyEvent(emoticonBounds, event)) {
+              vote = 0;
+            } else {
+              for (VotingButton b : votingButtons) {
+                if (!b.isDisabled() && applyEvent(b, event)) {
+                  vote = b.getVote();
+                }
+              }
+            }
+            if (vote != null && onVoteListener != null) {
+              onVoteListener.vote(vote);
+            }
+            break;
+          default:
+            break;
+        }
+        return true;
+      }
+
+      private boolean applyEvent(VotingButton b, MotionEvent event) {
+        return applyEvent(b.getBounds(), event);
+      }
+
+      private boolean applyEvent(Rect bounds, MotionEvent event) {
+        return bounds.contains((int) event.getX() - getPaddingLeft(),
+            (int) event.getY() - getPaddingTop());
+      }
+    });
+  }
+
+  public void setChange(Change change) {
+    this.change = change;
+
+    Collection<Integer> voteableValues = Collections2.transform(
+        change.info.permittedLabels.get("Code-Review"),
+        new Function<String, Integer>() {
+      @Override
+      public Integer apply(String value) {
+        return Integer.parseInt(value.trim());
+      }
+    });
+    for (VotingButton b : votingButtons) {
+      if (!voteableValues.contains(b.getVote())) {
+        b.setDisabled(true);
+        WidgetUtil.setBackground(b, b.getBackgroundDrawableDisabled());
+      }
+    }
+  }
+
+  public void select(int vote) {
+    for (VotingButton b : votingButtons) {
+      if (b.getVote() == vote) {
+        WidgetUtil.setBackground(b, b.getBackgroundDrawableSelected());
+        b.applyIcon(emoticon);
+      }
+    }
+  }
+
+  public void setOnVoteListener(OnVoteListener onVoteListener) {
+    this.onVoteListener = onVoteListener;
+  }
+
+  private class VotingButton extends LinearLayout {
+    private final Background.Corner corner;
+    private final Background background;
+    private final Background backgroundSelected;
+    private final Background backgroundDisabled;
+    private final
+    @ColorRes
+    int colorSelected;
+    private final
+    @DrawableRes
+    int iconResSelected;
+    private final int vote;
+    private boolean disabled;
+
+    public VotingButton(
+        Context context, Background.Corner corner, @DrawableRes int iconRes,
+        @DrawableRes int iconResSelected, @ColorRes int color,
+        @ColorRes int colorSelected, int vote) {
+      super(context);
+      LinearLayout.LayoutParams params =
+          new LinearLayout.LayoutParams(
+              ViewGroup.LayoutParams.WRAP_CONTENT, widgetUtil.dpToPx(100));
+      params.weight = 1;
+      setLayoutParams(params);
+
+      this.corner = corner;
+      this.background = new Background(widgetUtil.color(color), corner);
+      this.backgroundSelected = new Background(
+          widgetUtil.color(colorSelected), corner);
+      this.backgroundDisabled = new Background(
+          widgetUtil.color(R.color.disabled), corner);
+      this.colorSelected = colorSelected;
+      this.iconResSelected = iconResSelected;
+      this.vote = vote;
+
+      WidgetUtil.setBackground(this, background);
+
+      ImageView icon = new ImageView(context);
+      icon.setImageDrawable(widgetUtil.getDrawable(iconRes));
+      LinearLayout.LayoutParams iconParams =
+          new LinearLayout.LayoutParams(
+              widgetUtil.dpToPx(60), widgetUtil.dpToPx(60));
+      switch (corner) {
+        case LEFT_TOP:
+          iconParams.topMargin = widgetUtil.dpToPx(8);
+          iconParams.leftMargin = widgetUtil.dpToPx(8);
+          break;
+        case LEFT_BOTTOM:
+          iconParams.bottomMargin = widgetUtil.dpToPx(8);
+          iconParams.leftMargin = widgetUtil.dpToPx(8);
+          iconParams.gravity = Gravity.BOTTOM;
+          break;
+        case RIGHT_TOP:
+          iconParams.topMargin = widgetUtil.dpToPx(8);
+          iconParams.rightMargin = widgetUtil.dpToPx(8);
+          setGravity(Gravity.END);
+          break;
+        case RIGHT_BOTTOM:
+          iconParams.bottomMargin = widgetUtil.dpToPx(8);
+          iconParams.rightMargin = widgetUtil.dpToPx(8);
+          iconParams.gravity = Gravity.BOTTOM;
+          setGravity(Gravity.END);
+          break;
+        default:
+          break;
+      }
+      icon.setLayoutParams(iconParams);
+      addView(icon);
+    }
+
+    public void setDisabled(boolean disabled) {
+      this.disabled = disabled;
+    }
+
+    public boolean isDisabled() {
+      return disabled;
+    }
+
+    public int getVote() {
+      return vote;
+    }
+
+    public Background getBackgroundDrawable() {
+      return background;
+    }
+
+    public Background getBackgroundDrawableSelected() {
+      return backgroundSelected;
+    }
+
+    public Background getBackgroundDrawableDisabled() {
+      return backgroundDisabled;
+    }
+
+    public void applyIcon(ImageView image) {
+      image.setImageDrawable(widgetUtil.getDrawable(iconResSelected));
+      image.setColorFilter(widgetUtil.color(colorSelected));
+    }
+
+    public Rect getBounds() {
+      if (corner == Background.Corner.LEFT_BOTTOM
+          || corner == Background.Corner.RIGHT_BOTTOM) {
+        return new Rect(getLeft(), getHeight() + getTop(), getRight(),
+            getHeight() + getBottom());
+      } else {
+        return new Rect(getLeft(), getTop(), getRight(), getBottom());
+      }
+    }
+  }
+
+  private static class Background extends Drawable {
+    public enum Corner {
+      LEFT_TOP,
+      LEFT_BOTTOM,
+      RIGHT_TOP,
+      RIGHT_BOTTOM
+    }
+
+    private final int color;
+    private final Corner corner;
+
+    public Background(int color, Corner corner) {
+      this.color = color;
+      this.corner = corner;
+    }
+
+    @Override
+    public void draw(Canvas canvas) {
+      canvas.save();
+
+      Paint paint = new Paint();
+      paint.setColor(color);
+      paint.setStyle(Paint.Style.FILL);
+
+      Rect bounds = getBounds();
+      float lamda = (float) Math.toDegrees(
+          Math.atan((float) (bounds.height()) / (float) (bounds.width())));
+      switch (corner) {
+        case LEFT_TOP:
+          lamda = 180 - lamda;
+          break;
+        case LEFT_BOTTOM:
+          // lamda = lamda;
+          break;
+        case RIGHT_TOP:
+          lamda = 180 + lamda;
+          break;
+        case RIGHT_BOTTOM:
+          lamda = -lamda;
+          break;
+        default:
+          throw new IllegalStateException();
+      }
+      canvas.rotate(lamda, bounds.width() / 2, bounds.height() / 2);
+      canvas.translate(-bounds.width() / 3, bounds.height() / 3);
+      canvas.drawRect(new RectF(0, 0, bounds.width() * 2,
+          bounds.height() * 2), paint);
+      canvas.restore();
+    }
+
+    @Override
+    public void setAlpha(int alpha) {
+      throw new UnsupportedOperationException();
+    }
+
+    @Override
+    public void setColorFilter(ColorFilter cf) {
+      throw new UnsupportedOperationException();
+    }
+
+    @Override
+    public int getOpacity() {
+      return 0;
+    }
+  }
+
+  public interface OnVoteListener {
+    void vote(int vote);
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/widget/ScrollWithHeadingsView.java b/app/src/main/java/com/google/reviewit/widget/ScrollWithHeadingsView.java
new file mode 100644
index 0000000..0c1fdbc
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/widget/ScrollWithHeadingsView.java
@@ -0,0 +1,510 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.widget;
+
+import android.content.Context;
+import android.graphics.drawable.ColorDrawable;
+import android.os.Build;
+import android.support.annotation.ColorInt;
+import android.support.annotation.ColorRes;
+import android.util.AttributeSet;
+import android.view.Gravity;
+import android.view.View;
+import android.view.ViewGroup;
+import android.view.ViewTreeObserver;
+import android.view.Window;
+import android.widget.LinearLayout;
+import android.widget.RelativeLayout;
+import android.widget.ScrollView;
+import android.widget.TextView;
+
+import com.google.reviewit.R;
+import com.google.reviewit.util.LayoutUtil;
+import com.google.reviewit.util.WidgetUtil;
+
+import java.util.ArrayList;
+import java.util.Iterator;
+import java.util.List;
+
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapLayout;
+import static com.google.reviewit.util.LayoutUtil.matchLayout;
+
+/**
+ * Scroll view that displays a list of views that each have a heading.
+ * While scrolling the heading of the current view is fixed at the top.
+ */
+public class ScrollWithHeadingsView extends RelativeLayout {
+  private static final
+  @ColorRes
+  int[] BACKGROUND_COLORS = new int[] {
+      R.color.heading1, R.color.heading2, R.color.heading3, R.color.heading4,
+      R.color.heading5, R.color.heading6, R.color.heading7, R.color.heading8,
+      R.color.heading9, R.color.heading10, R.color.heading11, R.color.heading12};
+
+  private final ScrollView scroll;
+  private final LinearLayout scrollContent;
+  private final List<Content> contents = new ArrayList<>();
+  private final ZoomHandler zoomHandler;
+
+  private Window window;
+  private int nextBackgroundColor = 0;
+  private ViewTreeObserver.OnScrollChangedListener onScrollListener;
+
+  public ScrollWithHeadingsView(Context context) {
+    this(context, null);
+  }
+
+  public ScrollWithHeadingsView(Context context, AttributeSet attrs) {
+    super(context, attrs);
+
+    scroll = new ScrollView(context);
+    scroll.setLayoutParams(matchLayout());
+    addView(scroll);
+
+    scrollContent = new LinearLayout(context);
+    scrollContent.setOrientation(LinearLayout.VERTICAL);
+    scrollContent.setLayoutParams(matchLayout());
+    scroll.addView(scrollContent);
+
+    zoomHandler = new ZoomHandler(this);
+  }
+
+  public ZoomHandler getZoomHandler() {
+    return zoomHandler;
+  }
+
+  public void setWindow(Window window) {
+    this.window = window;
+  }
+
+  public void setContent(Iterator<Content> contentProvider) {
+    Content prevContent = null;
+    Content nextContent = contentProvider.hasNext()
+        ? contentProvider.next()
+        : null;
+    while (nextContent != null) {
+      final Content content = nextContent;
+      contents.add(content);
+      nextContent = contentProvider.hasNext()
+          ? contentProvider.next()
+          : null;
+      final boolean setWindowColor = prevContent == null;
+      post(new Runnable() {
+        @Override
+        public void run() {
+          addHeading(content);
+          if (setWindowColor) {
+            setWindowColor(content.getHeading());
+          }
+          scrollContent.addView(content.getContent());
+        }
+      });
+      prevContent = content;
+    }
+
+    onScrollListener = new ViewTreeObserver.OnScrollChangedListener() {
+      @Override
+      public void onScrollChanged() {
+        Iterator<Content> it = contents.iterator();
+        Content prevContent = null;
+        Content nextContent = it.hasNext() ? it.next() : null;
+        while (nextContent != null) {
+          Content content = nextContent;
+          nextContent = it.hasNext() ? it.next() : null;
+          ScrollWithHeadingsView.this.onScrollChanged(
+              content, prevContent, nextContent);
+          prevContent = content;
+        }
+      }
+    };
+    scroll.getViewTreeObserver().addOnScrollChangedListener(onScrollListener);
+
+    LayoutUtil.addOneTimeOnGlobalLayoutListener(scroll,
+        new LayoutUtil.OneTimeOnGlobalLayoutListener() {
+      @Override
+      public void onFirstGlobalLayout() {
+        relayout();
+      }
+    });
+  }
+
+  public void clear() {
+    for (Content content : contents) {
+      removeView(content.getHeading().getView());
+      scrollContent.removeView(content.getContent());
+    }
+    contents.clear();
+    scroll.getViewTreeObserver()
+        .removeOnScrollChangedListener(onScrollListener);
+    onScrollListener = null;
+  }
+
+  public void relayout() {
+    // hack to refresh the view, this ensures that the headers are positioned
+    // correctly
+    scroll.setScrollY(scroll.getScrollY() + 1);
+    scroll.setScrollY(scroll.getScrollY() - 1);
+  }
+
+  private void addHeading(final Content content) {
+    final Heading heading = content.getHeading();
+    heading.setBackgroundColor(getNextBackgroundColor());
+    addView(heading.getView());
+
+    final View contentView = content.getContent();
+    heading.addOnHeightListener(new LayoutUtil.OnHeightListener() {
+      @Override
+      public void onHeight(int height) {
+        contentView.setPadding(contentView.getPaddingLeft(),
+            contentView.getPaddingTop() + height,
+            contentView.getPaddingRight(),
+            contentView.getPaddingBottom());
+      }
+    });
+
+    LayoutUtil.addOneTimeOnGlobalLayoutListener(contentView,
+        new LayoutUtil.OneTimeOnGlobalLayoutListener() {
+          @Override
+          public void onFirstGlobalLayout() {
+            heading.getView().setTranslationY(
+                contentView.getTop() - scroll.getScrollY());
+          }
+        });
+  }
+
+  private void onScrollChanged(
+      Content content, final Content prevContent, final Content nextContent) {
+    final View contentView = content.getContent();
+    final Heading heading = content.getHeading();
+    final Heading prevHeading =
+        prevContent != null
+            ? prevContent.getHeading()
+            : null;
+    final Heading nextHeading =
+        nextContent != null
+            ? nextContent.getHeading()
+            : null;
+    if (scroll.getScrollY() >= contentView.getTop()) {
+      int scrollYRelativeToContentView =
+          scroll.getScrollY() - contentView.getTop();
+      if (scrollYRelativeToContentView < heading.getSquishableHeight()) {
+        fixHeadingAtTop(heading, scrollYRelativeToContentView);
+      } else {
+        if (nextHeading != null
+            && nextHeading.getView().getTranslationY() > 0) {
+          // the position of nextHeading is only updated after this
+          // onScrollChanged callback, but we need its correct position
+          // now, hence update its position now
+          nextHeading.getView().setTranslationY(
+              nextContent.getContent().getTop() - scroll.getScrollY());
+        }
+        if ((nextHeading != null
+            && nextHeading.getView().getTranslationY() <= 0)
+            || (prevHeading != null
+                && prevHeading.getView().getTranslationY() >= 0)) {
+          heading.squish(heading.getSquishableHeight());
+          heading.getView().setTranslationY(
+              contentView.getTop() - scroll.getScrollY());
+        } else {
+          fixHeadingAtTop(heading, heading.getSquishableHeight());
+        }
+      }
+    } else {
+      heading.squish(0);
+      heading.getView().setTranslationY(
+          contentView.getTop() - scroll.getScrollY());
+
+      if (prevHeading != null) {
+        if (prevHeading.getView().getHeight()
+            > heading.getView().getTranslationY()) {
+          prevHeading.getView().setTranslationY(
+              heading.getView().getTranslationY()
+                  - prevHeading.getView().getHeight());
+        }
+      }
+    }
+  }
+
+  @Override
+  protected void onDetachedFromWindow() {
+    super.onDetachedFromWindow();
+    clear();
+  }
+
+  private void fixHeadingAtTop(Heading heading, int heightToSquish) {
+    heading.squish(heightToSquish);
+    heading.getView().setTranslationY(0);
+    setWindowColor(heading);
+  }
+
+  private void setWindowColor(Heading heading) {
+    if (window != null
+        && Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
+      if (heading.getView().isAttachedToWindow()) {
+        window.setStatusBarColor(heading.getBackgroundColor());
+      }
+    }
+  }
+
+  private
+  @ColorRes
+  int getNextBackgroundColor() {
+    if (nextBackgroundColor >= BACKGROUND_COLORS.length) {
+      nextBackgroundColor = 0;
+    }
+    return BACKGROUND_COLORS[nextBackgroundColor++];
+  }
+
+  public void setNextBackgroundColor(int nextBackgroundColor) {
+    if (nextBackgroundColor < 0) {
+      return;
+    }
+
+    while (nextBackgroundColor > BACKGROUND_COLORS.length) {
+      nextBackgroundColor -= BACKGROUND_COLORS.length;
+    }
+
+    this.nextBackgroundColor = nextBackgroundColor;
+  }
+
+  public static class Content {
+    private final Heading heading;
+    private final View content;
+
+    public Content(Heading heading, View content) {
+      this.heading = heading;
+      this.content = content;
+    }
+
+    public Heading getHeading() {
+      return heading;
+    }
+
+    public View getContent() {
+      return content;
+    }
+  }
+
+  public interface Heading {
+    /**
+     * Get the view that implements the heading.
+     */
+    View getView();
+
+    /**
+     * The max height that the heading view can be squished.
+     */
+    int getSquishableHeight();
+
+    /**
+     * Squishes the heading view.
+     */
+    void squish(int heightToSquish);
+
+    /**
+     * Set the background color of the heading view.
+     */
+    void setBackgroundColor(@ColorRes int color);
+
+    /**
+     * Get the background color of the heading view.
+     */
+    @ColorInt
+    int getBackgroundColor();
+
+    /**
+     * Register callback that is invoked once when the height of the
+     * heading is known.
+     */
+    void addOnHeightListener(LayoutUtil.OnHeightListener onHeightListener);
+  }
+
+  public static class TextHeading implements Heading {
+    protected final Context context;
+    protected final WidgetUtil widgetUtil;
+    protected final View headingView;
+    protected final int headingPaddingMin;
+    protected final int headingPaddingMax;
+
+    public TextHeading(Context context, String headingText) {
+      this.context = context;
+      this.widgetUtil = new WidgetUtil(context);
+      this.headingPaddingMin = widgetUtil.spToPx(12);
+      this.headingPaddingMax = widgetUtil.spToPx(50);
+      this.headingView = createHeadingView(headingText);
+    }
+
+    private View createHeadingView(String headingText) {
+      MaxFontSizeTextView headingView = new MaxFontSizeTextView(context);
+      headingView.setLayoutParams(matchAndWrapLayout());
+      headingView.setText(headingText);
+      headingView.setTextColor(widgetUtil.color(R.color.headingFont));
+      headingView.setMinTextSize(widgetUtil.spToPx(10));
+      headingView.setMaxTextSize(widgetUtil.spToPx(30));
+      headingView.setGravity(Gravity.CENTER_HORIZONTAL);
+      headingView.setPadding(5, headingPaddingMax, 5, headingPaddingMax);
+      headingView.setIncludeFontPadding(false);
+      return headingView;
+    }
+
+    @Override
+    public View getView() {
+      return headingView;
+    }
+
+    @Override
+    public int getSquishableHeight() {
+      return 2 * (headingPaddingMax - headingPaddingMin);
+    }
+
+    @Override
+    public void squish(int heightToSquish) {
+      if (heightToSquish > getSquishableHeight()) {
+        heightToSquish = getSquishableHeight();
+      }
+
+      int paddingTop = headingPaddingMax - heightToSquish / 2;
+      int paddingBottom = 2 * headingPaddingMax - heightToSquish - paddingTop;
+      headingView.setPadding(headingView.getPaddingLeft(), paddingTop,
+          headingView.getPaddingRight(), paddingBottom);
+    }
+
+    @Override
+    public void setBackgroundColor(@ColorRes int color) {
+      headingView.setBackgroundColor(widgetUtil.color(color));
+    }
+
+    @Override
+    public
+    @ColorInt
+    int getBackgroundColor() {
+      return ((ColorDrawable) headingView.getBackground()).getColor();
+    }
+
+    @Override
+    public void addOnHeightListener(
+        LayoutUtil.OnHeightListener onHeightListener) {
+      LayoutUtil.addOnHeightListener(headingView, onHeightListener);
+    }
+  }
+
+  public static class HeadingWithDetails extends TextHeading {
+    private final RelativeLayout layout;
+    private final TextView detailsTop;
+    private final TextView detailsBottom;
+    private int height;
+
+    // TODO make top/bottom heading smaller if there are no top/bottom
+    // details
+    public HeadingWithDetails(
+        Context context, String headingText, String detailsTopText,
+        String detailsBottomText) {
+      super(context, headingText);
+
+      LayoutUtil.addOneTimeOnGlobalLayoutListener(headingView,
+          new LayoutUtil.OneTimeOnGlobalLayoutListener() {
+        @Override
+        public void onFirstGlobalLayout() {
+          height = headingView.getHeight();
+          layout.getLayoutParams().height = height;
+        }
+      });
+
+      layout = new RelativeLayout(context);
+      layout.setLayoutParams(matchAndWrapLayout());
+
+      detailsTop = createDetailsView(detailsTopText);
+      layout.addView(detailsTop);
+
+      layout.addView(headingView);
+
+      detailsBottom = createDetailsView(detailsBottomText);
+      layout.addView(gravityBottom(detailsBottom));
+    }
+
+    private TextView createDetailsView(String detailsText) {
+      final MaxFontSizeTextView detailsView =
+          new MaxFontSizeTextView(context);
+      detailsView.setLayoutParams(matchAndWrapLayout());
+      detailsView.setText(detailsText);
+      detailsView.setTextColor(widgetUtil.color(R.color.headingFont));
+      detailsView.setMinTextSize(widgetUtil.spToPx(5));
+      detailsView.setMaxTextSize(widgetUtil.spToPx(15));
+      detailsView.setGravity(Gravity.CENTER_HORIZONTAL);
+
+      LayoutUtil.addOnHeightListener(detailsView,
+          new LayoutUtil.OnHeightListener() {
+        @Override
+        public void onHeight(int height) {
+          // +8 to center it correctly, don't understand why it's not
+          // correct otherwise
+          int padding = (headingPaddingMax - height) / 2 + 8;
+          detailsView.setPadding(5, padding, 5, padding);
+        }
+      });
+
+      return detailsView;
+    }
+
+    private View gravityBottom(View view) {
+      LinearLayout l = new LinearLayout(context);
+      l.setOrientation(LinearLayout.VERTICAL);
+      l.setLayoutParams(matchLayout());
+      l.setGravity(Gravity.CENTER_HORIZONTAL);
+      View spacer = new View(context);
+      spacer.setLayoutParams(new LinearLayout.LayoutParams(
+          ViewGroup.LayoutParams.MATCH_PARENT,
+          ViewGroup.LayoutParams.WRAP_CONTENT, 1f));
+      l.addView(spacer);
+      l.addView(view);
+      return l;
+    }
+
+    @Override
+    public View getView() {
+      return layout;
+    }
+
+    @Override
+    public void squish(int heightToSquish) {
+      super.squish(heightToSquish);
+
+      float paddingSquish = heightToSquish / 2;
+      if (paddingSquish > headingPaddingMax / 3) {
+        detailsTop.setAlpha(0f);
+        detailsBottom.setAlpha(0f);
+      } else if (paddingSquish > 0) {
+        float alpha = 1 - paddingSquish / (headingPaddingMax / 3);
+        detailsTop.setAlpha(alpha);
+        detailsBottom.setAlpha(alpha);
+      } else {
+        detailsTop.setAlpha(1f);
+        detailsBottom.setAlpha(1f);
+      }
+
+      layout.getLayoutParams().height = height - heightToSquish;
+
+    }
+
+    public void setBackgroundColor(@ColorRes int color) {
+      layout.setBackgroundColor(widgetUtil.color(color));
+    }
+
+    @Override
+    public @ColorInt int getBackgroundColor() {
+      return ((ColorDrawable) layout.getBackground()).getColor();
+    }
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/widget/UnifiedDiffView.java b/app/src/main/java/com/google/reviewit/widget/UnifiedDiffView.java
new file mode 100644
index 0000000..936218d
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/widget/UnifiedDiffView.java
@@ -0,0 +1,648 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.widget;
+
+import android.content.Context;
+import android.graphics.Paint;
+import android.graphics.Typeface;
+import android.text.Spannable;
+import android.text.SpannableStringBuilder;
+import android.text.style.BackgroundColorSpan;
+import android.util.AttributeSet;
+import android.util.Log;
+import android.util.TypedValue;
+import android.view.View;
+import android.widget.Button;
+import android.widget.LinearLayout;
+import android.widget.TableLayout;
+import android.widget.TableRow;
+import android.widget.TextView;
+
+import com.google.gerrit.extensions.common.DiffInfo;
+import com.google.reviewit.R;
+import com.google.reviewit.util.WidgetUtil;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import static com.google.common.base.Preconditions.checkArgument;
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapTableLayout;
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapTableRowLayout;
+import static com.google.reviewit.util.LayoutUtil.matchLayout;
+import static com.google.reviewit.util.LayoutUtil.wrapTableRowLayout;
+
+/**
+ * View that shows the unified diff for one file.
+ */
+public class UnifiedDiffView extends TableLayout {
+  private static final String TAG = UnifiedDiffView.class.getName();
+
+  private static int CONTEXT_LINES = 10;
+
+  private enum LineChangeType {
+    ADD('+'), DELETE('-'), NO_CHANGE(' ');
+
+    private final char prefix;
+
+    LineChangeType(char prefix) {
+      this.prefix = prefix;
+    }
+
+    public String getPrefix() {
+      return Character.toString(prefix);
+    }
+  }
+
+  private final WidgetUtil widgetUtil;
+  private OnSizeChangedListener onSizeChangedListener;
+
+  public UnifiedDiffView(Context context, DiffInfo diff) {
+    this(context, null, diff);
+  }
+
+  public UnifiedDiffView(Context context, AttributeSet attrs, DiffInfo diff) {
+    super(context, attrs);
+
+    this.widgetUtil = new WidgetUtil(context);
+
+    setLayoutParams(matchLayout());
+    setColumnStretchable(3, true);
+    setColumnShrinkable(3, true);
+
+    int a = 0;
+    int b = 0;
+    for (int i = 0; i < diff.content.size(); i++) {
+      DiffInfo.ContentEntry content = diff.content.get(i);
+      if (content.common != null && content.common) {
+        a += addDeletedLines(
+            a, content.a, getIntraline(content.a, content.b, content.editA));
+        b += addAddedLines(
+            b, content.b, getIntraline(content.b, content.a, content.editB));
+      } else {
+        a += addDeletedLines(
+            a, content.a, getIntraline(content.a, content.b, content.editA));
+        b += addAddedLines(
+            b, content.b, getIntraline(content.b, content.a, content.editB));
+      }
+
+      int count = addUnchangedLines(a, b, content.ab, CONTEXT_LINES, i == 0,
+          i == diff.content.size() - 1);
+      a += count;
+      b += count;
+
+      if (content.skip != null) {
+        a += content.skip;
+        b += content.skip;
+      }
+    }
+  }
+
+  private List<List<Integer>> getIntraline(List<String> lines, List<String>
+      otherLines, List<List<Integer>> intraline) {
+    if (lines == null) {
+      return null;
+    }
+
+    if (intraline != null || otherLines != null) {
+      return intraline;
+    }
+
+    int length = 0;
+    for (String line : lines) {
+      length += line.length() + 1; // +1 for newline character
+    }
+
+    // blocks which are completely deleted or newly added should be highlighted
+    List<Integer> list = new ArrayList<>();
+    list.add(0); // skip nothing
+    list.add(length); // mark all
+    intraline = new ArrayList<>();
+    intraline.add(list);
+    return intraline;
+  }
+
+  public void setOnSizeChangedListener(
+      OnSizeChangedListener onSizeChangedListener) {
+    this.onSizeChangedListener = onSizeChangedListener;
+  }
+
+  private int addUnchangedLines(int a, int b, List<String> lines, int
+      contextLines, boolean isFirst, boolean isLast) {
+    if (lines == null) {
+      return 0;
+    }
+
+    if (isFirst) {
+      if (lines.size() < contextLines + 1) {
+        addUnchangedLines(a, b, lines);
+      } else {
+        int skipped = lines.size() - contextLines;
+        addSkippedRow(a, b, lines.subList(0, skipped), true, isLast);
+        a += skipped;
+        b += skipped;
+        for (int i = skipped; i < lines.size(); i++) {
+          addRow(++a, ++b, LineChangeType.NO_CHANGE, lines.get(i), null);
+        }
+      }
+    } else if (isLast) {
+      if (lines.size() < contextLines + 1) {
+        addUnchangedLines(a, b, lines);
+      } else {
+        for (int i = 0; i < contextLines; i++) {
+          addRow(++a, ++b, LineChangeType.NO_CHANGE, lines.get(i), null);
+        }
+        addSkippedRow(
+            a, b, lines.subList(contextLines, lines.size()), false, true);
+      }
+    } else {
+      if (lines.size() < 2 * contextLines + 1) {
+        addUnchangedLines(a, b, lines);
+      } else {
+        for (int i = 0; i < contextLines; i++) {
+          addRow(++a, ++b, LineChangeType.NO_CHANGE, lines.get(i), null);
+        }
+        int skipped = lines.size() - 2 * contextLines;
+        addSkippedRow(
+            a, b, lines.subList(contextLines, lines.size() - contextLines),
+            false, false);
+        a += skipped;
+        b += skipped;
+        for (int i = contextLines + skipped; i < lines.size(); i++) {
+          addRow(++a, ++b, LineChangeType.NO_CHANGE, lines.get(i), null);
+        }
+      }
+    }
+
+    return lines.size();
+  }
+
+  private int addUnchangedLines(int a, int b, List<String> lines) {
+    return addUnchangedLines(a, b, lines, -1);
+  }
+
+  private int addUnchangedLines(
+      int a, int b, List<String> lines, int position) {
+    if (lines == null) {
+      return 0;
+    }
+
+    for (int i = 0; i < lines.size(); i++) {
+      addRow(++a, ++b, LineChangeType.NO_CHANGE, lines.get(i), null, position);
+      if (position != -1) {
+        position++;
+      }
+    }
+
+    return lines.size();
+  }
+
+  private int addAddedLines(int b, List<String> lines, List<List<Integer>>
+      intraline) {
+    if (lines == null) {
+      return 0;
+    }
+
+    Map<Integer, Intraline> intralineByLine = intralineByLine(lines, intraline);
+    for (int i = 0; i < lines.size(); i++) {
+      addRow(-1, ++b, LineChangeType.ADD, lines.get(i), intralineByLine.get(i));
+    }
+    return lines.size();
+  }
+
+  private int addDeletedLines(
+      int a, List<String> lines, List<List<Integer>> intraline) {
+    if (lines == null) {
+      return 0;
+    }
+
+    Map<Integer, Intraline> intralineByLine = intralineByLine(lines, intraline);
+    for (int i = 0; i < lines.size(); i++) {
+      addRow(++a, -1, LineChangeType.DELETE, lines.get(i),
+          intralineByLine.get(i));
+    }
+    return lines.size();
+  }
+
+  private Map<Integer, Intraline> intralineByLine(
+      List<String> lines, List<List<Integer>> intraline) {
+    if (intraline == null) {
+      return Collections.emptyMap();
+    }
+
+    int line = 0;
+    int posInLine = 0;
+    Map<Integer, Intraline> byLine = new HashMap<>();
+    for (List<Integer> intralineEntry : intraline) {
+      int skip = intralineEntry.get(0);
+      int mark = intralineEntry.get(1);
+      while (mark > 0) {
+        int lineLength = lines.get(line).length();
+        // +1 for newline character
+        while (skip >= lineLength + 1 - posInLine) {
+          skip -= (lineLength + 1 - posInLine);
+          line++;
+          posInLine = 0;
+          lineLength = lines.get(line).length();
+        }
+        if (skip + mark <= lineLength - posInLine) {
+          Intraline i = byLine.get(line);
+          if (i == null) {
+            i = new Intraline(lineLength);
+            byLine.put(line, i);
+          }
+          i.addRange(posInLine + skip, posInLine + skip + mark);
+          posInLine += skip + mark;
+          mark = 0;
+          skip = 0;
+        } else {
+          Intraline i = byLine.get(line);
+          if (i == null) {
+            i = new Intraline(lineLength);
+            byLine.put(line, i);
+          }
+          i.addRange(posInLine + skip, lineLength);
+          i.setHighlightNewline(true);
+          // +1 for newline character
+          mark -= (lineLength + 1) - posInLine - skip;
+          skip = 0;
+          line++;
+          posInLine = 0;
+        }
+      }
+    }
+
+    return byLine;
+  }
+
+  private void addRow(
+      int a, int b, LineChangeType changeType, String line,
+      Intraline intraline) {
+    addRow(a, b, changeType, line, intraline, -1);
+  }
+
+  private void addRow(
+      int a, int b, LineChangeType changeType, String line, Intraline intraline,
+      int position) {
+    TableRow tr = new TableRow(getContext());
+    tr.setLayoutParams(matchAndWrapTableRowLayout());
+
+    String lineNumberA = a > 0 ? Integer.toString(a) : "";
+    TextView lineNumberAText = createTextView(lineNumberA, 7);
+    lineNumberAText.setPadding(
+        widgetUtil.dpToPx(2), 0, widgetUtil.dpToPx(2), 0);
+    lineNumberAText.setTextColor(widgetUtil.color(R.color.lineNumbers));
+    tr.addView(lineNumberAText);
+
+    String lineNumberB = b > 0 ? Integer.toString(b) : "";
+    TextView lineNumberBText = createTextView(lineNumberB, 7);
+    lineNumberBText.setPadding(
+        widgetUtil.dpToPx(2), 0, widgetUtil.dpToPx(2), 0);
+    lineNumberBText.setTextColor(widgetUtil.color(R.color.lineNumbers));
+    tr.addView(lineNumberBText);
+
+    TextView changeTypeText = createTextView(changeType.getPrefix(), 7);
+    changeTypeText.setPadding(
+        widgetUtil.dpToPx(2), 0, widgetUtil.dpToPx(2), 0);
+    switch (changeType) {
+      case ADD:
+        changeTypeText.setTextColor(
+            widgetUtil.color(R.color.lineAddedIntraline));
+        changeTypeText.setBackgroundColor(widgetUtil.color(R.color.lineAdded));
+        break;
+      case DELETE:
+        changeTypeText.setTextColor(
+            widgetUtil.color(R.color.lineDeletedIntraline));
+        changeTypeText.setBackgroundColor(
+            widgetUtil.color(R.color.lineDeleted));
+        break;
+      case NO_CHANGE:
+      default:
+        break;
+    }
+    tr.addView(changeTypeText);
+
+    TextView lineText =
+        createLineWithIntralineDiffs(line, changeType, intraline, 7);
+    tr.addView(lineText);
+
+    if (position == -1) {
+      addView(tr, matchAndWrapTableLayout());
+    } else {
+      addView(tr, position, matchAndWrapTableLayout());
+    }
+  }
+
+  private void addSkippedRow(
+      int a, int b, List<String> skippedLines, boolean isFirst,
+      boolean isLast) {
+    final TableRow tr = new TableRow(getContext());
+    tr.setLayoutParams(matchAndWrapTableRowLayout());
+
+    tr.setTag(R.id.UNIFIED_DIFF_A, a);
+    tr.setTag(R.id.UNIFIED_DIFF_B, b);
+    tr.setTag(R.id.UNIFIED_DIFF_LINES, skippedLines);
+
+    final LinearLayout l = new LinearLayout(getContext());
+    l.setOrientation(HORIZONTAL);
+    TableRow.LayoutParams params = matchAndWrapTableRowLayout();
+    params.span = 4;
+    l.setLayoutParams(params);
+    l.setBackgroundColor(widgetUtil.color(R.color.lineSkipped));
+
+    LinearLayout spacerLeft = new LinearLayout(getContext());
+    params = wrapTableRowLayout();
+    params.weight = 1;
+    spacerLeft.setLayoutParams(params);
+    l.addView(spacerLeft);
+
+    final Button expandBeforeButton = createHyperlinkButton(
+        getContext().getString(R.string.expand_before, CONTEXT_LINES));
+    final Button expandAllButton = createHyperlinkButton(
+        getContext().getString(
+            R.string.skipped_common_lines, skippedLines.size()));
+    final Button expandAfterButton = createHyperlinkButton(
+        getContext().getString(R.string.expand_after, CONTEXT_LINES));
+
+    if (!isFirst && skippedLines.size() > 2 * CONTEXT_LINES) {
+      expandBeforeButton.setOnClickListener(new OnClickListener() {
+        @Override
+        public void onClick(View v) {
+          int row = indexOfChild(tr);
+          int a = (int) tr.getTag(R.id.UNIFIED_DIFF_A);
+          int b = (int) tr.getTag(R.id.UNIFIED_DIFF_B);
+          List<String> lines =
+              (List<String>) tr.getTag(R.id.UNIFIED_DIFF_LINES);
+          List<String> linesToShow = lines.subList(0, CONTEXT_LINES);
+          List<String> skippedLines =
+              lines.subList(CONTEXT_LINES, lines.size());
+          addUnchangedLines(a, b, linesToShow, row);
+          tr.setTag(R.id.UNIFIED_DIFF_A, a + CONTEXT_LINES);
+          tr.setTag(R.id.UNIFIED_DIFF_B, b + CONTEXT_LINES);
+          tr.setTag(R.id.UNIFIED_DIFF_LINES, skippedLines);
+          expandAllButton.setText(getContext()
+              .getString(R.string.skipped_common_lines, skippedLines.size()));
+          if (skippedLines.size() <= 2 * CONTEXT_LINES) {
+            l.removeView(expandBeforeButton);
+            l.removeView(expandAfterButton);
+          }
+          if (onSizeChangedListener != null) {
+            onSizeChangedListener.onSizeChanged();
+          }
+        }
+      });
+      l.addView(expandBeforeButton);
+    }
+
+    expandAllButton.setOnClickListener(new OnClickListener() {
+      @Override
+      public void onClick(View v) {
+        int row = indexOfChild(tr);
+        int a = (int) tr.getTag(R.id.UNIFIED_DIFF_A);
+        int b = (int) tr.getTag(R.id.UNIFIED_DIFF_B);
+        List<String> lines = (List<String>) tr.getTag(R.id.UNIFIED_DIFF_LINES);
+        removeView(tr);
+        addUnchangedLines(a, b, lines, row);
+        if (onSizeChangedListener != null) {
+          onSizeChangedListener.onSizeChanged();
+        }
+      }
+    });
+    l.addView(expandAllButton);
+
+    if (!isLast && skippedLines.size() > 2 * CONTEXT_LINES) {
+      expandAfterButton.setOnClickListener(new OnClickListener() {
+        @Override
+        public void onClick(View v) {
+          int row = indexOfChild(tr);
+          int a = (int) tr.getTag(R.id.UNIFIED_DIFF_A);
+          int b = (int) tr.getTag(R.id.UNIFIED_DIFF_B);
+          List<String> lines =
+              (List<String>) tr.getTag(R.id.UNIFIED_DIFF_LINES);
+          int skip = lines.size() - CONTEXT_LINES;
+          List<String> linesToShow = lines.subList(skip, lines.size());
+          List<String> skippedLines = lines.subList(0, skip);
+          addUnchangedLines(a + skip, b + skip, linesToShow, row + 1);
+          tr.setTag(R.id.UNIFIED_DIFF_LINES, skippedLines);
+          expandAllButton.setText(getContext()
+              .getString(R.string.skipped_common_lines, skippedLines.size()));
+          if (skippedLines.size() <= 2 * CONTEXT_LINES) {
+            l.removeView(expandBeforeButton);
+            l.removeView(expandAfterButton);
+          }
+          if (onSizeChangedListener != null) {
+            onSizeChangedListener.onSizeChanged();
+          }
+        }
+      });
+      l.addView(expandAfterButton);
+    }
+
+    LinearLayout spacerRight = new LinearLayout(getContext());
+    params = wrapTableRowLayout();
+    params.weight = 1;
+    spacerRight.setLayoutParams(params);
+    l.addView(spacerRight);
+
+    tr.addView(l);
+
+    addView(tr, matchAndWrapTableLayout());
+  }
+
+  private Button createHyperlinkButton(String text) {
+    Button b = new Button(getContext());
+    TableRow.LayoutParams params = wrapTableRowLayout();
+    params.topMargin = -1 * widgetUtil.dpToPx(17);
+    params.bottomMargin = params.topMargin;
+    params.rightMargin = -1 * widgetUtil.dpToPx(13);
+    params.leftMargin = params.rightMargin;
+    b.setLayoutParams(params);
+    b.setTextColor(widgetUtil.color(R.color.hyperlink));
+    b.setTextSize(TypedValue.COMPLEX_UNIT_SP, 9);
+    b.setTypeface(Typeface.MONOSPACE);
+    b.setPaintFlags(b.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
+    b.setBackgroundColor(widgetUtil.color(R.color.transparent));
+    b.setAllCaps(false);
+    b.setText(text);
+    return b;
+  }
+
+  private TextView createLineWithIntralineDiffs(
+      String line, LineChangeType changeType, Intraline intraline,
+      int textSizeSp) {
+    SpannableStringBuilder b = new SpannableStringBuilder(line);
+
+    boolean invert = intraline != null && intraline.isHighlightNewline();
+    int lineBackgroundColorId = -1;
+    switch (changeType) {
+      case ADD:
+        lineBackgroundColorId = invert
+            ? R.color.lineAddedIntraline
+            : R.color.lineAdded;
+        break;
+      case DELETE:
+        lineBackgroundColorId = invert
+            ? R.color.lineDeletedIntraline
+            : R.color.lineDeleted;
+        break;
+      case NO_CHANGE:
+      default:
+        break;
+    }
+
+
+    if (intraline != null) {
+      try {
+        List<Range> ranges = invert
+            ? intraline.getInvertedRanges()
+            : intraline.getRanges();
+        for (Range range : ranges) {
+          switch (changeType) {
+            case ADD:
+              BackgroundColorSpan addedSpan =
+                  new BackgroundColorSpan(widgetUtil.color(
+                      invert
+                          ? R.color.lineAdded
+                          : R.color.lineAddedIntraline));
+              b.setSpan(addedSpan, range.from, range.to,
+                  Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
+              break;
+            case DELETE:
+              BackgroundColorSpan deletedSpan =
+                  new BackgroundColorSpan(widgetUtil.color(
+                      invert
+                          ? R.color.lineDeleted
+                          : R.color.lineDeletedIntraline));
+              b.setSpan(deletedSpan, range.from, range.to,
+                  Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
+              break;
+            case NO_CHANGE:
+            default:
+              break;
+          }
+        }
+      } catch (Throwable t) {
+        Log.e(TAG, "Failed to render intraline diff " + intraline
+            + " for line '" + line + "'", t);
+      }
+    }
+
+    TextView textView = new TextView(getContext());
+    textView.setLayoutParams(wrapTableRowLayout());
+    textView.setText(b);
+    textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, textSizeSp);
+    textView.setTypeface(Typeface.MONOSPACE);
+
+    if (lineBackgroundColorId != -1) {
+      textView.setBackgroundColor(widgetUtil.color(lineBackgroundColorId));
+    }
+
+    return textView;
+  }
+
+  private TextView createTextView(String text, int textSizeSp) {
+    TextView textView = new TextView(getContext());
+    textView.setLayoutParams(wrapTableRowLayout());
+    textView.setText(text);
+    textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, textSizeSp);
+    textView.setTypeface(Typeface.MONOSPACE);
+    return textView;
+  }
+
+  public interface OnSizeChangedListener {
+    void onSizeChanged();
+  }
+
+  private static class Range {
+    final int from;
+    final int to;
+
+    Range(int from, int to) {
+      this.from = from;
+      this.to = to;
+    }
+  }
+
+  private static class Intraline {
+    private final int lineLength;
+    private final List<Range> ranges;
+
+    private boolean highlightNewline;
+
+    Intraline(int lineLength) {
+      this.lineLength = lineLength;
+      this.ranges = new ArrayList<>();
+    }
+
+    void addRange(int from, int to) {
+      checkArgument(from <= to, "invalid range: {from: %s, to: %s}", from, to);
+      ranges.add(new Range(from, to));
+    }
+
+    public List<Range> getRanges() {
+      return ranges;
+    }
+
+    public void setHighlightNewline(boolean highlightNewline) {
+      this.highlightNewline = highlightNewline;
+    }
+
+    public boolean isHighlightNewline() {
+      return highlightNewline;
+    }
+
+    private List<Range> getInvertedRanges() {
+      if (ranges.isEmpty()) {
+        return ranges;
+      }
+
+      List<Range> invertedRanges = new ArrayList<>(ranges.size() + 1);
+      int from = 0;
+      for (Range range : ranges) {
+        if (from != range.from) {
+          invertedRanges.add(new Range(from, range.from));
+        }
+        from = range.to;
+      }
+      if (from != lineLength) {
+        invertedRanges.add(new Range(from, lineLength));
+      }
+      return invertedRanges;
+    }
+
+    public String toString() {
+      StringBuilder b = new StringBuilder();
+      b.append("{lineLength: ")
+          .append(lineLength)
+          .append(", ranges[");
+      for (int i = 0; i < ranges.size(); i++) {
+        Range range = ranges.get(i);
+        b.append("{from: ")
+            .append(range.from)
+            .append(", to:")
+            .append(range.to)
+            .append("}");
+        if (i < ranges.size() - 1) {
+          b.append(", ");
+        }
+      }
+      b.append("]}");
+
+      return b.toString();
+    }
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/widget/VoteView.java b/app/src/main/java/com/google/reviewit/widget/VoteView.java
new file mode 100644
index 0000000..d5233ca
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/widget/VoteView.java
@@ -0,0 +1,172 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.widget;
+
+import android.content.Context;
+import android.graphics.Typeface;
+import android.util.AttributeSet;
+import android.util.TypedValue;
+import android.view.Gravity;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.LinearLayout;
+import android.widget.RadioButton;
+import android.widget.RadioGroup;
+import android.widget.TableLayout;
+import android.widget.TableRow;
+import android.widget.TextView;
+
+import com.google.gerrit.extensions.common.LabelInfo;
+import com.google.reviewit.app.Change;
+import com.google.reviewit.util.FormatUtil;
+import com.google.reviewit.util.WidgetUtil;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
+import java.util.TreeSet;
+
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapLayout;
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapTableLayout;
+import static com.google.reviewit.util.LayoutUtil.matchAndWrapTableRowLayout;
+import static com.google.reviewit.util.LayoutUtil.wrapTableRowLayout;
+
+public class VoteView extends TableLayout {
+  private List<OnSelectListener> listeners = new ArrayList<>();
+
+  public VoteView(Context context) {
+    this(context, null);
+  }
+
+  public VoteView(Context context, AttributeSet attrs) {
+    super(context, attrs);
+
+    setLayoutParams(matchAndWrapLayout());
+    setColumnShrinkable(2, true);
+  }
+
+  public void init(final Change change, Map<String, Integer> votes) {
+    final WidgetUtil widgetUtil = new WidgetUtil(getContext());
+
+    TreeSet<Integer> allVotingValues = new TreeSet<>();
+    for (Map.Entry<String, LabelInfo> e : change.info.labels.entrySet()) {
+      String labelName = e.getKey();
+      for (String value : e.getValue().values.keySet()) {
+        if (!change.info.permittedLabels.containsKey(labelName)
+            || !change.info.permittedLabels.get(labelName).contains(value)) {
+          continue;
+        }
+        allVotingValues.add(Integer.parseInt(value.trim()));
+      }
+    }
+
+    TableRow tr = new TableRow(getContext());
+    tr.setLayoutParams(matchAndWrapTableRowLayout());
+    addView(tr, matchAndWrapTableLayout());
+    View v = new View(getContext());
+    v.setLayoutParams(matchAndWrapTableRowLayout());
+    tr.addView(v);
+    LinearLayout l = new LinearLayout(getContext());
+    l.setLayoutParams(matchAndWrapTableRowLayout());
+    l.setOrientation(HORIZONTAL);
+    tr.addView(l);
+    for (int value : allVotingValues) {
+      TextView valueText = new TextView(getContext());
+      LinearLayout.LayoutParams params =
+          new LinearLayout.LayoutParams(
+              ViewGroup.LayoutParams.WRAP_CONTENT,
+              ViewGroup.LayoutParams.WRAP_CONTENT);
+      params.weight = 1;
+      valueText.setGravity(Gravity.CENTER_HORIZONTAL);
+      valueText.setLayoutParams(params);
+      valueText.setTextSize(TypedValue.COMPLEX_UNIT_SP, 16);
+      valueText.setTypeface(Typeface.MONOSPACE);
+      valueText.setText(FormatUtil.formatLabelValue(value));
+      l.addView(valueText);
+    }
+
+    for (Map.Entry<String, LabelInfo> e : change.info.labels.entrySet()) {
+      final String labelName = e.getKey();
+      LabelInfo label = e.getValue();
+
+      tr = new TableRow(getContext());
+      tr.setLayoutParams(matchAndWrapTableRowLayout());
+
+      TextView labelNameText = new TextView(getContext());
+      TableRow.LayoutParams params = wrapTableRowLayout();
+      params.setMargins(0, widgetUtil.dpToPx(5), 0, 0);
+      labelNameText.setLayoutParams(params);
+      labelNameText.setTextSize(TypedValue.COMPLEX_UNIT_SP, 15);
+      labelNameText.setText(labelName);
+      tr.addView(labelNameText);
+
+      RadioGroup rg = new RadioGroup(getContext());
+      TableRow.LayoutParams rgParams = wrapTableRowLayout();
+      rgParams.gravity = Gravity.CENTER_HORIZONTAL;
+      rgParams.setMargins(widgetUtil.dpToPx(2), 0, widgetUtil.dpToPx(2), 0);
+      rg.setLayoutParams(rgParams);
+      rg.setOrientation(RadioGroup.HORIZONTAL);
+      tr.addView(rg);
+
+      final TextView infoText = new TextView(getContext());
+      TableRow.LayoutParams infoTextParams = wrapTableRowLayout();
+      infoTextParams.gravity = Gravity.CENTER_VERTICAL;
+      infoText.setLayoutParams(infoTextParams);
+      infoText.setTextSize(TypedValue.COMPLEX_UNIT_SP, 9);
+      tr.addView(infoText);
+
+      for (final Map.Entry<String, String> valueEntry
+          : label.values.entrySet()) {
+        if (!change.info.permittedLabels.containsKey(labelName)
+            || !change.info.permittedLabels.get(labelName)
+                .contains(valueEntry.getKey())) {
+          continue;
+        }
+
+        RadioButton rb = new RadioButton(getContext());
+        rg.addView(rb);
+
+        final int value = Integer.parseInt(valueEntry.getKey().trim());
+
+        rb.setOnClickListener(new OnClickListener() {
+          @Override
+          public void onClick(View v) {
+            infoText.setText(valueEntry.getValue());
+
+            for (OnSelectListener l : listeners) {
+              l.onSelect(labelName, value);
+            }
+          }
+        });
+
+        int defaultValue = votes.containsKey(labelName) ? votes.get
+            (labelName) : (label.defaultValue != null ? label.defaultValue : 0);
+        if (value == defaultValue) {
+          rb.performClick();
+        }
+      }
+
+      addView(tr, matchAndWrapTableLayout());
+    }
+  }
+
+  public void addOnSelectListener(OnSelectListener l) {
+    listeners.add(l);
+  }
+
+  public interface OnSelectListener {
+    void onSelect(String label, int vote);
+  }
+}
diff --git a/app/src/main/java/com/google/reviewit/widget/ZoomHandler.java b/app/src/main/java/com/google/reviewit/widget/ZoomHandler.java
new file mode 100644
index 0000000..19e6b1c
--- /dev/null
+++ b/app/src/main/java/com/google/reviewit/widget/ZoomHandler.java
@@ -0,0 +1,89 @@
+// Copyright (C) 2016 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.reviewit.widget;
+
+import android.view.GestureDetector;
+import android.view.MotionEvent;
+import android.view.ScaleGestureDetector;
+import android.view.View;
+
+public class ZoomHandler {
+  private final View view;
+  private final GestureDetector gestureDetector;
+  private final ScaleGestureDetector scaleDetector;
+
+  private float scaleFactor = 1.f;
+  private float onTouchStartX;
+  private float onTouchStartY;
+  private float translationX;
+  private float translationY;
+
+  public ZoomHandler(View v) {
+    this.view = v;
+    scaleDetector = new ScaleGestureDetector(v.getContext(),
+        new ScaleGestureDetector.SimpleOnScaleGestureListener() {
+      @Override
+      public boolean onScale(ScaleGestureDetector detector) {
+        scaleFactor *= detector.getScaleFactor();
+        scaleFactor = Math.max(1.0f, Math.min(scaleFactor, 4.0f));
+        scale();
+        return true;
+      }
+    });
+    gestureDetector = new GestureDetector(v.getContext(),
+        new GestureDetector.SimpleOnGestureListener() {
+      @Override
+      public boolean onDoubleTap(MotionEvent e) {
+        scaleFactor = 1.0f;
+        scale();
+        return true;
+      }
+    });
+  }
+
+  private void scale() {
+    view.setScaleX(scaleFactor);
+    view.setScaleY(scaleFactor);
+    view.setTranslationX(view.getWidth() * (scaleFactor - 1) / 2);
+    view.setTranslationY(view.getHeight() * (scaleFactor - 1) / 2);
+    view.invalidate();
+  }
+
+  public boolean dispatchTouchEvent(MotionEvent event) {
+    scaleDetector.onTouchEvent(event);
+    gestureDetector.onTouchEvent(event);
+
+    switch (event.getAction()) {
+      case MotionEvent.ACTION_DOWN:
+        onTouchStartX = event.getX();
+        onTouchStartY = event.getY();
+        translationX = view.getTranslationX();
+        translationY = view.getTranslationY();
+        break;
+      case MotionEvent.ACTION_MOVE:
+        float maxX = view.getWidth() * (scaleFactor - 1) / 2;
+        view.setTranslationX(Math.max(
+            Math.min(translationX + event.getX() - onTouchStartX, maxX), -maxX));
+        float maxY = view.getHeight() * (scaleFactor - 1) / 2;
+        view.setTranslationY(Math.max(
+            Math.min(translationY + event.getY() - onTouchStartY, maxY), -maxY));
+        break;
+      default:
+        break;
+    }
+
+    return false;
+  }
+}
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_black_18dp.png
new file mode 100755
index 0000000..b3d1809
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_black_24dp.png
new file mode 100755
index 0000000..96ad405
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_black_36dp.png
new file mode 100755
index 0000000..7037ebb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_black_48dp.png
new file mode 100755
index 0000000..a7d26a7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_white_18dp.png
new file mode 100755
index 0000000..898b214
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_white_24dp.png
new file mode 100755
index 0000000..510504e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_white_36dp.png
new file mode 100755
index 0000000..bebf9a5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_white_48dp.png
new file mode 100755
index 0000000..974abd1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_3d_rotation_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_black_18dp.png
new file mode 100755
index 0000000..e41b1ce
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_black_24dp.png
new file mode 100755
index 0000000..1b4f19f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_black_36dp.png
new file mode 100755
index 0000000..ddab013
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_black_48dp.png
new file mode 100755
index 0000000..f37f432
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_white_18dp.png
new file mode 100755
index 0000000..fa8c156
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_white_24dp.png
new file mode 100755
index 0000000..e1b07c2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_white_36dp.png
new file mode 100755
index 0000000..e94c6e2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_white_48dp.png
new file mode 100755
index 0000000..f0167d2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessibility_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_black_18dp.png
new file mode 100755
index 0000000..5b9ce85
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_black_24dp.png
new file mode 100755
index 0000000..2dc2f74
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_black_36dp.png
new file mode 100755
index 0000000..ac4b609
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_black_48dp.png
new file mode 100755
index 0000000..3074ec8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_white_18dp.png
new file mode 100755
index 0000000..50a749a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_white_24dp.png
new file mode 100755
index 0000000..2c4eccd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_white_36dp.png
new file mode 100755
index 0000000..07a398a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_white_48dp.png
new file mode 100755
index 0000000..5c1876d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_accessible_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_black_18dp.png
new file mode 100755
index 0000000..165140a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_black_24dp.png
new file mode 100755
index 0000000..7ff265a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_black_36dp.png
new file mode 100755
index 0000000..4abdd40
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_black_48dp.png
new file mode 100755
index 0000000..2dcbf0a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_black_18dp.png
new file mode 100755
index 0000000..ab075db
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_black_24dp.png
new file mode 100755
index 0000000..85bec8b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_black_36dp.png
new file mode 100755
index 0000000..47ddba7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_black_48dp.png
new file mode 100755
index 0000000..03417a7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_white_18dp.png
new file mode 100755
index 0000000..f43b8d3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_white_24dp.png
new file mode 100755
index 0000000..36efc7d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_white_36dp.png
new file mode 100755
index 0000000..5f723bf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_white_48dp.png
new file mode 100755
index 0000000..71b6328
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_wallet_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_white_18dp.png
new file mode 100755
index 0000000..1495c85
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_white_24dp.png
new file mode 100755
index 0000000..734eb73
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_white_36dp.png
new file mode 100755
index 0000000..cf3dfe5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_white_48dp.png
new file mode 100755
index 0000000..f953a71
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_balance_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_black_18dp.png
new file mode 100755
index 0000000..27bba38
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_black_24dp.png
new file mode 100755
index 0000000..47db072
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_black_36dp.png
new file mode 100755
index 0000000..23e9638
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_black_48dp.png
new file mode 100755
index 0000000..114d176
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_white_18dp.png
new file mode 100755
index 0000000..8bcb058
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_white_24dp.png
new file mode 100755
index 0000000..e13c50b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_white_36dp.png
new file mode 100755
index 0000000..3f68812
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_white_48dp.png
new file mode 100755
index 0000000..cc0ec8b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_box_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_black_18dp.png
new file mode 100755
index 0000000..f9b932d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_black_24dp.png
new file mode 100755
index 0000000..ba5a509
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_black_36dp.png
new file mode 100755
index 0000000..292a948
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_black_48dp.png
new file mode 100755
index 0000000..3cc0a63
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_white_18dp.png
new file mode 100755
index 0000000..33054b2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_white_24dp.png
new file mode 100755
index 0000000..1eaecc5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_white_36dp.png
new file mode 100755
index 0000000..b2bdc2a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_white_48dp.png
new file mode 100755
index 0000000..bfd4632
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_account_circle_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_black_18dp.png
new file mode 100755
index 0000000..94b1889
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_black_24dp.png
new file mode 100755
index 0000000..0e09ca9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_black_36dp.png
new file mode 100755
index 0000000..652e108
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_black_48dp.png
new file mode 100755
index 0000000..90a9f5a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_white_18dp.png
new file mode 100755
index 0000000..5dbb1c7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_white_24dp.png
new file mode 100755
index 0000000..e470978
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_white_36dp.png
new file mode 100755
index 0000000..2e6c3f8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_white_48dp.png
new file mode 100755
index 0000000..37d1128
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_add_shopping_cart_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_black_18dp.png
new file mode 100755
index 0000000..c6a3d62
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_black_24dp.png
new file mode 100755
index 0000000..e310ce7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_black_36dp.png
new file mode 100755
index 0000000..b2a655b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_black_48dp.png
new file mode 100755
index 0000000..78330cf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_white_18dp.png
new file mode 100755
index 0000000..3ff3bf3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_white_24dp.png
new file mode 100755
index 0000000..5f33b37
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_white_36dp.png
new file mode 100755
index 0000000..601c626
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_white_48dp.png
new file mode 100755
index 0000000..3319384
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_add_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_black_18dp.png
new file mode 100755
index 0000000..cc128cb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_black_24dp.png
new file mode 100755
index 0000000..9074911
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_black_36dp.png
new file mode 100755
index 0000000..fed2952
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_black_48dp.png
new file mode 100755
index 0000000..eb1d08d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_black_18dp.png
new file mode 100755
index 0000000..86aedfc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_black_24dp.png
new file mode 100755
index 0000000..0c306d3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_black_36dp.png
new file mode 100755
index 0000000..adc4813
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_black_48dp.png
new file mode 100755
index 0000000..381934d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_white_18dp.png
new file mode 100755
index 0000000..34db36c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_white_24dp.png
new file mode 100755
index 0000000..2d7ff0a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_white_36dp.png
new file mode 100755
index 0000000..17c3f42
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_white_48dp.png
new file mode 100755
index 0000000..2b3f401
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_off_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_black_18dp.png
new file mode 100755
index 0000000..a6cbe38
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_black_24dp.png
new file mode 100755
index 0000000..eb60f14
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_black_36dp.png
new file mode 100755
index 0000000..a316d96
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_black_48dp.png
new file mode 100755
index 0000000..d7a329f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_white_18dp.png
new file mode 100755
index 0000000..331b733
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_white_24dp.png
new file mode 100755
index 0000000..5899112
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_white_36dp.png
new file mode 100755
index 0000000..bb7ab47
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_white_48dp.png
new file mode 100755
index 0000000..00998d1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_on_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_white_18dp.png
new file mode 100755
index 0000000..cb4d1f3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_white_24dp.png
new file mode 100755
index 0000000..6dc94d2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_white_36dp.png
new file mode 100755
index 0000000..f4b3247
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_white_48dp.png
new file mode 100755
index 0000000..75e5a46
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_alarm_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_black_18dp.png
new file mode 100755
index 0000000..d2a6d89
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_black_24dp.png
new file mode 100755
index 0000000..929c349
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_black_36dp.png
new file mode 100755
index 0000000..2fab7b6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_black_48dp.png
new file mode 100755
index 0000000..343973e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_white_18dp.png
new file mode 100755
index 0000000..e7d2b16
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_white_24dp.png
new file mode 100755
index 0000000..a783850
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_white_36dp.png
new file mode 100755
index 0000000..bf85cc4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_white_48dp.png
new file mode 100755
index 0000000..f50966d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_all_out_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_black_18dp.png
new file mode 100755
index 0000000..74eb46e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_black_24dp.png
new file mode 100755
index 0000000..ed3ee45
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_black_36dp.png
new file mode 100755
index 0000000..9da925b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_black_48dp.png
new file mode 100755
index 0000000..6006b12
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_white_18dp.png
new file mode 100755
index 0000000..58b011b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_white_24dp.png
new file mode 100755
index 0000000..521416b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_white_36dp.png
new file mode 100755
index 0000000..a9a6b80
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_white_48dp.png
new file mode 100755
index 0000000..01e43a3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_android_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_black_18dp.png
new file mode 100755
index 0000000..c28f57f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_black_24dp.png
new file mode 100755
index 0000000..8353564
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_black_36dp.png
new file mode 100755
index 0000000..f8f3ff6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_black_48dp.png
new file mode 100755
index 0000000..b806076
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_white_18dp.png
new file mode 100755
index 0000000..8979391
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_white_24dp.png
new file mode 100755
index 0000000..0f1d2e4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_white_36dp.png
new file mode 100755
index 0000000..52b544a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_white_48dp.png
new file mode 100755
index 0000000..8a921a6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_announcement_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_black_18dp.png
new file mode 100755
index 0000000..ff12fb2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_black_24dp.png
new file mode 100755
index 0000000..d6f61e1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_black_36dp.png
new file mode 100755
index 0000000..db664db
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_black_48dp.png
new file mode 100755
index 0000000..2a495dd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_white_18dp.png
new file mode 100755
index 0000000..ae8f991
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_white_24dp.png
new file mode 100755
index 0000000..9eee1fe
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_white_36dp.png
new file mode 100755
index 0000000..adb07c6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_white_48dp.png
new file mode 100755
index 0000000..56c2887
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_aspect_ratio_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_black_18dp.png
new file mode 100755
index 0000000..a1b7e9d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_black_24dp.png
new file mode 100755
index 0000000..25022aa
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_black_36dp.png
new file mode 100755
index 0000000..e02f73b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_black_48dp.png
new file mode 100755
index 0000000..36b8408
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_white_18dp.png
new file mode 100755
index 0000000..aa4602b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_white_24dp.png
new file mode 100755
index 0000000..439ade4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_white_36dp.png
new file mode 100755
index 0000000..21376d2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_white_48dp.png
new file mode 100755
index 0000000..e619386
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assessment_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_black_18dp.png
new file mode 100755
index 0000000..1e3ace4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_black_24dp.png
new file mode 100755
index 0000000..da63e58
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_black_36dp.png
new file mode 100755
index 0000000..4e686ca
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_black_48dp.png
new file mode 100755
index 0000000..9084205
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_black_18dp.png
new file mode 100755
index 0000000..7e7037d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_black_24dp.png
new file mode 100755
index 0000000..90624a7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_black_36dp.png
new file mode 100755
index 0000000..ca63f4d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_black_48dp.png
new file mode 100755
index 0000000..eb0c1ae
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_white_18dp.png
new file mode 100755
index 0000000..c0389f7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_white_24dp.png
new file mode 100755
index 0000000..7959e7c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_white_36dp.png
new file mode 100755
index 0000000..79f6b32
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_white_48dp.png
new file mode 100755
index 0000000..598e84d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_ind_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_black_18dp.png
new file mode 100755
index 0000000..ec92631
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_black_24dp.png
new file mode 100755
index 0000000..8a59051
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_black_36dp.png
new file mode 100755
index 0000000..d9b7e56
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_black_48dp.png
new file mode 100755
index 0000000..25772d0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_white_18dp.png
new file mode 100755
index 0000000..3fb4b8f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_white_24dp.png
new file mode 100755
index 0000000..f2040d7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_white_36dp.png
new file mode 100755
index 0000000..6df5786
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_white_48dp.png
new file mode 100755
index 0000000..f667fe2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_late_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_black_18dp.png
new file mode 100755
index 0000000..35522f6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_black_24dp.png
new file mode 100755
index 0000000..497c476
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_black_36dp.png
new file mode 100755
index 0000000..2154dd3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_black_48dp.png
new file mode 100755
index 0000000..d5752cb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_white_18dp.png
new file mode 100755
index 0000000..4fedc13
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_white_24dp.png
new file mode 100755
index 0000000..bfc904c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_white_36dp.png
new file mode 100755
index 0000000..0854ca8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_white_48dp.png
new file mode 100755
index 0000000..cad0885
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_return_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_black_18dp.png
new file mode 100755
index 0000000..2c20ed4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_black_24dp.png
new file mode 100755
index 0000000..83d4448
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_black_36dp.png
new file mode 100755
index 0000000..8c897f4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_black_48dp.png
new file mode 100755
index 0000000..13757a5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_white_18dp.png
new file mode 100755
index 0000000..fd28012
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_white_24dp.png
new file mode 100755
index 0000000..2172bf5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_white_36dp.png
new file mode 100755
index 0000000..789b27a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_white_48dp.png
new file mode 100755
index 0000000..29855a8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_returned_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_black_18dp.png
new file mode 100755
index 0000000..72c48c6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_black_24dp.png
new file mode 100755
index 0000000..3443eaf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_black_36dp.png
new file mode 100755
index 0000000..d7b381e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_black_48dp.png
new file mode 100755
index 0000000..2a4d06a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_white_18dp.png
new file mode 100755
index 0000000..8d121ec
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_white_24dp.png
new file mode 100755
index 0000000..584276e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_white_36dp.png
new file mode 100755
index 0000000..baf0765
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_white_48dp.png
new file mode 100755
index 0000000..71b7b62
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_turned_in_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_white_18dp.png
new file mode 100755
index 0000000..772da43
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_white_24dp.png
new file mode 100755
index 0000000..6fb4699
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_white_36dp.png
new file mode 100755
index 0000000..c8b9dd7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_white_48dp.png
new file mode 100755
index 0000000..a77933d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_assignment_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_black_18dp.png
new file mode 100755
index 0000000..2e948a3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_black_24dp.png
new file mode 100755
index 0000000..39be19e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_black_36dp.png
new file mode 100755
index 0000000..6ae7ac8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_black_48dp.png
new file mode 100755
index 0000000..910746e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_white_18dp.png
new file mode 100755
index 0000000..5042da3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_white_24dp.png
new file mode 100755
index 0000000..59239b3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_white_36dp.png
new file mode 100755
index 0000000..ac85e80
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_white_48dp.png
new file mode 100755
index 0000000..aa5940c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_autorenew_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_black_18dp.png
new file mode 100755
index 0000000..edf7f71
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_black_24dp.png
new file mode 100755
index 0000000..e0938f1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_black_36dp.png
new file mode 100755
index 0000000..03e0598
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_black_48dp.png
new file mode 100755
index 0000000..6506c72
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_white_18dp.png
new file mode 100755
index 0000000..6d144b2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_white_24dp.png
new file mode 100755
index 0000000..5e0b464
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_white_36dp.png
new file mode 100755
index 0000000..5af9a68
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_white_48dp.png
new file mode 100755
index 0000000..3ff57ad
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_backup_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_black_18dp.png
new file mode 100755
index 0000000..8e0faad
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_black_24dp.png
new file mode 100755
index 0000000..2323a3e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_black_36dp.png
new file mode 100755
index 0000000..c7080d8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_black_48dp.png
new file mode 100755
index 0000000..5fa172d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_white_18dp.png
new file mode 100755
index 0000000..316d47f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_white_24dp.png
new file mode 100755
index 0000000..0fd780e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_white_36dp.png
new file mode 100755
index 0000000..c7916a8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_white_48dp.png
new file mode 100755
index 0000000..d181a32
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_book_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_black_18dp.png
new file mode 100755
index 0000000..0a06dff
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_black_24dp.png
new file mode 100755
index 0000000..7ad39da
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_black_36dp.png
new file mode 100755
index 0000000..cc7c3a0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_black_48dp.png
new file mode 100755
index 0000000..2189be3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_black_18dp.png
new file mode 100755
index 0000000..6109555
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_black_24dp.png
new file mode 100755
index 0000000..859d8f7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_black_36dp.png
new file mode 100755
index 0000000..3ff1691
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_black_48dp.png
new file mode 100755
index 0000000..5fb650e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_white_18dp.png
new file mode 100755
index 0000000..9ead070
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_white_24dp.png
new file mode 100755
index 0000000..8b0c16c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_white_36dp.png
new file mode 100755
index 0000000..e6c2470
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_white_48dp.png
new file mode 100755
index 0000000..6ed27a2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_border_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_white_18dp.png
new file mode 100755
index 0000000..c5d0178
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_white_24dp.png
new file mode 100755
index 0000000..9de15c5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_white_36dp.png
new file mode 100755
index 0000000..fc7d87b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_white_48dp.png
new file mode 100755
index 0000000..3faff90
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bookmark_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_black_18dp.png
new file mode 100755
index 0000000..9eff049
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_black_24dp.png
new file mode 100755
index 0000000..1bccb1d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_black_36dp.png
new file mode 100755
index 0000000..145f2e6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_black_48dp.png
new file mode 100755
index 0000000..af8c82e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_white_18dp.png
new file mode 100755
index 0000000..1237b14
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_white_24dp.png
new file mode 100755
index 0000000..0c963e1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_white_36dp.png
new file mode 100755
index 0000000..8fd7b48
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_white_48dp.png
new file mode 100755
index 0000000..766bac4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_bug_report_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_black_18dp.png
new file mode 100755
index 0000000..707c0cd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_black_24dp.png
new file mode 100755
index 0000000..b7377bd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_black_36dp.png
new file mode 100755
index 0000000..fe70c4e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_black_48dp.png
new file mode 100755
index 0000000..bc31acd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_white_18dp.png
new file mode 100755
index 0000000..6ed6588
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_white_24dp.png
new file mode 100755
index 0000000..6523148
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_white_36dp.png
new file mode 100755
index 0000000..e899ab2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_white_48dp.png
new file mode 100755
index 0000000..ae11b91
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_build_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_black_18dp.png
new file mode 100755
index 0000000..52a1a67
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_black_24dp.png
new file mode 100755
index 0000000..fdc38ef
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_black_36dp.png
new file mode 100755
index 0000000..9b0cd35
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_black_48dp.png
new file mode 100755
index 0000000..7a9da90
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_white_18dp.png
new file mode 100755
index 0000000..8251610
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_white_24dp.png
new file mode 100755
index 0000000..42d5b05
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_white_36dp.png
new file mode 100755
index 0000000..4d22853
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_white_48dp.png
new file mode 100755
index 0000000..6765923
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_cached_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_black_18dp.png
new file mode 100755
index 0000000..7e12adc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_black_24dp.png
new file mode 100755
index 0000000..3b446d8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_black_36dp.png
new file mode 100755
index 0000000..b727c13
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_black_48dp.png
new file mode 100755
index 0000000..631d334
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_white_18dp.png
new file mode 100755
index 0000000..b1f8180
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_white_24dp.png
new file mode 100755
index 0000000..23f9695
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_white_36dp.png
new file mode 100755
index 0000000..f454a80
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_white_48dp.png
new file mode 100755
index 0000000..dda63b3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_camera_enhance_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_black_18dp.png
new file mode 100755
index 0000000..a52cdbf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_black_24dp.png
new file mode 100755
index 0000000..1760372
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_black_36dp.png
new file mode 100755
index 0000000..d93fc83
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_black_48dp.png
new file mode 100755
index 0000000..25ea29c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_white_18dp.png
new file mode 100755
index 0000000..1b6dc8e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_white_24dp.png
new file mode 100755
index 0000000..cc6311e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_white_36dp.png
new file mode 100755
index 0000000..aaf45ac
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_white_48dp.png
new file mode 100755
index 0000000..562bcc6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_giftcard_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_black_18dp.png
new file mode 100755
index 0000000..e94ebf9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_black_24dp.png
new file mode 100755
index 0000000..f68fd42
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_black_36dp.png
new file mode 100755
index 0000000..8c1cb1f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_black_48dp.png
new file mode 100755
index 0000000..b4f1e6f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_white_18dp.png
new file mode 100755
index 0000000..d4c1b95
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_white_24dp.png
new file mode 100755
index 0000000..d08fdf9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_white_36dp.png
new file mode 100755
index 0000000..b3b6ff6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_white_48dp.png
new file mode 100755
index 0000000..e054a3b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_membership_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_black_18dp.png
new file mode 100755
index 0000000..e5ba9c1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_black_24dp.png
new file mode 100755
index 0000000..5990955
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_black_36dp.png
new file mode 100755
index 0000000..b7859cb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_black_48dp.png
new file mode 100755
index 0000000..04fa995
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_white_18dp.png
new file mode 100755
index 0000000..f801f79
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_white_24dp.png
new file mode 100755
index 0000000..9f52233
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_white_36dp.png
new file mode 100755
index 0000000..f87d09b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_white_48dp.png
new file mode 100755
index 0000000..33efdc4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_card_travel_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_black_18dp.png
new file mode 100755
index 0000000..2fcb8d4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_black_24dp.png
new file mode 100755
index 0000000..5d17b6e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_black_36dp.png
new file mode 100755
index 0000000..18dfefb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_black_48dp.png
new file mode 100755
index 0000000..eb3fea7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_white_18dp.png
new file mode 100755
index 0000000..787cbca
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_white_24dp.png
new file mode 100755
index 0000000..b53a77e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_white_36dp.png
new file mode 100755
index 0000000..7d3fcfe
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_white_48dp.png
new file mode 100755
index 0000000..a1effa0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_change_history_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_black_18dp.png
new file mode 100755
index 0000000..5200d33
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_black_24dp.png
new file mode 100755
index 0000000..06cfe8b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_black_36dp.png
new file mode 100755
index 0000000..d009c37
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_black_48dp.png
new file mode 100755
index 0000000..fbf3da3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_white_18dp.png
new file mode 100755
index 0000000..81c6ee0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_white_24dp.png
new file mode 100755
index 0000000..e190a5c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_white_36dp.png
new file mode 100755
index 0000000..8b16b1c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_white_48dp.png
new file mode 100755
index 0000000..4f96745
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_check_circle_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_black_18dp.png
new file mode 100755
index 0000000..9b13b54
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_black_24dp.png
new file mode 100755
index 0000000..83ac7ed
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_black_36dp.png
new file mode 100755
index 0000000..81b6b36
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_black_48dp.png
new file mode 100755
index 0000000..011b28a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_white_18dp.png
new file mode 100755
index 0000000..a56c29d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_white_24dp.png
new file mode 100755
index 0000000..f5f0e55
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_white_36dp.png
new file mode 100755
index 0000000..d732e0e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_white_48dp.png
new file mode 100755
index 0000000..3147a2e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_chrome_reader_mode_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_black_18dp.png
new file mode 100755
index 0000000..8e0faad
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_black_24dp.png
new file mode 100755
index 0000000..2323a3e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_black_36dp.png
new file mode 100755
index 0000000..c7080d8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_black_48dp.png
new file mode 100755
index 0000000..5fa172d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_white_18dp.png
new file mode 100755
index 0000000..316d47f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_white_24dp.png
new file mode 100755
index 0000000..0fd780e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_white_36dp.png
new file mode 100755
index 0000000..c7916a8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_white_48dp.png
new file mode 100755
index 0000000..d181a32
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_class_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_black_18dp.png
new file mode 100755
index 0000000..f487160
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_black_24dp.png
new file mode 100755
index 0000000..5756280
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_black_36dp.png
new file mode 100755
index 0000000..4e4adef
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_black_48dp.png
new file mode 100755
index 0000000..8908fb2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_white_18dp.png
new file mode 100755
index 0000000..c48eb64
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_white_24dp.png
new file mode 100755
index 0000000..d5879dc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_white_36dp.png
new file mode 100755
index 0000000..3d93712
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_white_48dp.png
new file mode 100755
index 0000000..cff9d32
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_code_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_black_18dp.png
new file mode 100755
index 0000000..6826cd1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_black_24dp.png
new file mode 100755
index 0000000..de129bc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_black_36dp.png
new file mode 100755
index 0000000..33e95dd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_black_48dp.png
new file mode 100755
index 0000000..6b49212
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_white_18dp.png
new file mode 100755
index 0000000..f3cf36e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_white_24dp.png
new file mode 100755
index 0000000..3378cad
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_white_36dp.png
new file mode 100755
index 0000000..a1f7059
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_white_48dp.png
new file mode 100755
index 0000000..cdad6ac
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_compare_arrows_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_black_18dp.png
new file mode 100755
index 0000000..6be3f3c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_black_24dp.png
new file mode 100755
index 0000000..bd8888a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_black_36dp.png
new file mode 100755
index 0000000..d5b524a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_black_48dp.png
new file mode 100755
index 0000000..2afa7bf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_white_18dp.png
new file mode 100755
index 0000000..536e2ba
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_white_24dp.png
new file mode 100755
index 0000000..73a2165
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_white_36dp.png
new file mode 100755
index 0000000..8e3596a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_white_48dp.png
new file mode 100755
index 0000000..c05c5a3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_copyright_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_black_18dp.png
new file mode 100755
index 0000000..cc037fb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_black_24dp.png
new file mode 100755
index 0000000..e2225e8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_black_36dp.png
new file mode 100755
index 0000000..c8232c8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_black_48dp.png
new file mode 100755
index 0000000..8b0836b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_white_18dp.png
new file mode 100755
index 0000000..8e10b8c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_white_24dp.png
new file mode 100755
index 0000000..c6a0840
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_white_36dp.png
new file mode 100755
index 0000000..fb3558f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_white_48dp.png
new file mode 100755
index 0000000..62c52d0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_credit_card_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_black_18dp.png
new file mode 100755
index 0000000..835a89e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_black_24dp.png
new file mode 100755
index 0000000..b832916
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_black_36dp.png
new file mode 100755
index 0000000..302e67d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_black_48dp.png
new file mode 100755
index 0000000..ad14dfe
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_white_18dp.png
new file mode 100755
index 0000000..10c69e0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_white_24dp.png
new file mode 100755
index 0000000..3208779
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_white_36dp.png
new file mode 100755
index 0000000..581fdd5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_white_48dp.png
new file mode 100755
index 0000000..471aa0d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dashboard_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_black_18dp.png
new file mode 100755
index 0000000..d999b6b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_black_24dp.png
new file mode 100755
index 0000000..0abfae3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_black_36dp.png
new file mode 100755
index 0000000..ea592d6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_black_48dp.png
new file mode 100755
index 0000000..a860637
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_white_18dp.png
new file mode 100755
index 0000000..11337e8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_white_24dp.png
new file mode 100755
index 0000000..24ed2ec
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_white_36dp.png
new file mode 100755
index 0000000..4514d2e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_white_48dp.png
new file mode 100755
index 0000000..c705bff
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_date_range_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_black_18dp.png
new file mode 100755
index 0000000..1d21ac3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_black_24dp.png
new file mode 100755
index 0000000..dbbb602
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_black_36dp.png
new file mode 100755
index 0000000..14945e1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_black_48dp.png
new file mode 100755
index 0000000..6d7cb81
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_white_18dp.png
new file mode 100755
index 0000000..d2587b3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_white_24dp.png
new file mode 100755
index 0000000..4a9f769
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_white_36dp.png
new file mode 100755
index 0000000..c836e39
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_white_48dp.png
new file mode 100755
index 0000000..3fcdfdb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_delete_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_black_18dp.png
new file mode 100755
index 0000000..e47fb5b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_black_24dp.png
new file mode 100755
index 0000000..71829f9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_black_36dp.png
new file mode 100755
index 0000000..34bbadc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_black_48dp.png
new file mode 100755
index 0000000..dd23b93
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_white_18dp.png
new file mode 100755
index 0000000..dcf5979
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_white_24dp.png
new file mode 100755
index 0000000..e8f9636
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_white_36dp.png
new file mode 100755
index 0000000..b688517
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_white_48dp.png
new file mode 100755
index 0000000..9b7071b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_description_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_black_18dp.png
new file mode 100755
index 0000000..acd9966
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_black_24dp.png
new file mode 100755
index 0000000..3c74796
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_black_36dp.png
new file mode 100755
index 0000000..2242ee6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_black_48dp.png
new file mode 100755
index 0000000..4830036
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_white_18dp.png
new file mode 100755
index 0000000..9c5af62
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_white_24dp.png
new file mode 100755
index 0000000..8f45b6c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_white_36dp.png
new file mode 100755
index 0000000..f01361a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_white_48dp.png
new file mode 100755
index 0000000..abea038
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_dns_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_black_18dp.png
new file mode 100755
index 0000000..435e170
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_black_24dp.png
new file mode 100755
index 0000000..0aabe09
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_black_36dp.png
new file mode 100755
index 0000000..7143a99
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_black_48dp.png
new file mode 100755
index 0000000..2d49549
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_white_18dp.png
new file mode 100755
index 0000000..096a515
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_white_24dp.png
new file mode 100755
index 0000000..8c83ff9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_white_36dp.png
new file mode 100755
index 0000000..05fd4be
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_white_48dp.png
new file mode 100755
index 0000000..1f3132a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_all_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_black_18dp.png
new file mode 100755
index 0000000..8d867ac
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_black_24dp.png
new file mode 100755
index 0000000..d4c0607
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_black_36dp.png
new file mode 100755
index 0000000..1c4739e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_black_48dp.png
new file mode 100755
index 0000000..c9c0174
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_white_18dp.png
new file mode 100755
index 0000000..1ca1725
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_white_24dp.png
new file mode 100755
index 0000000..c278b6c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_white_36dp.png
new file mode 100755
index 0000000..e389d25
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_white_48dp.png
new file mode 100755
index 0000000..0ebb555
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_done_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_black_18dp.png
new file mode 100755
index 0000000..1ae18ad
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_black_24dp.png
new file mode 100755
index 0000000..5555715
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_black_36dp.png
new file mode 100755
index 0000000..f6100c2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_black_48dp.png
new file mode 100755
index 0000000..4f8d0f5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_white_18dp.png
new file mode 100755
index 0000000..cfa1148
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_white_24dp.png
new file mode 100755
index 0000000..a13c7c7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_white_36dp.png
new file mode 100755
index 0000000..f2701b1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_white_48dp.png
new file mode 100755
index 0000000..30df13b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_large_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_black_18dp.png
new file mode 100755
index 0000000..097953a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_black_24dp.png
new file mode 100755
index 0000000..1fddf5f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_black_36dp.png
new file mode 100755
index 0000000..1041cd5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_black_48dp.png
new file mode 100755
index 0000000..1261c60
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_white_18dp.png
new file mode 100755
index 0000000..fb3c3f8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_white_24dp.png
new file mode 100755
index 0000000..c2be8b1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_white_36dp.png
new file mode 100755
index 0000000..8476fbd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_white_48dp.png
new file mode 100755
index 0000000..44727b6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_donut_small_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_black_18dp.png
new file mode 100755
index 0000000..06c02b4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_black_24dp.png
new file mode 100755
index 0000000..73c086b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_black_36dp.png
new file mode 100755
index 0000000..2a926bf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_black_48dp.png
new file mode 100755
index 0000000..2b5acec
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_white_18dp.png
new file mode 100755
index 0000000..8dabbb3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_white_24dp.png
new file mode 100755
index 0000000..04ff374
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_white_36dp.png
new file mode 100755
index 0000000..7c6ed54
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_white_48dp.png
new file mode 100755
index 0000000..1e64f49
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_eject_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_12dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_12dp.png
new file mode 100755
index 0000000..98a013a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_12dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_16dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_16dp.png
new file mode 100755
index 0000000..c47f281
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_18dp.png
new file mode 100755
index 0000000..5454f0f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_24dp.png
new file mode 100755
index 0000000..0a71678
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_36dp.png
new file mode 100755
index 0000000..1b0c7f5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_48dp.png
new file mode 100755
index 0000000..2f5815d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_16dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_16dp.png
new file mode 100755
index 0000000..8c0a87c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_18dp.png
new file mode 100755
index 0000000..21855a8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_24dp.png
new file mode 100755
index 0000000..8dcc174
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_36dp.png
new file mode 100755
index 0000000..3e7b7e7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_48dp.png
new file mode 100755
index 0000000..466fe09
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_16dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_16dp.png
new file mode 100755
index 0000000..9af6790
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_18dp.png
new file mode 100755
index 0000000..5013c08
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_24dp.png
new file mode 100755
index 0000000..82e9cf8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_36dp.png
new file mode 100755
index 0000000..0e965af
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_48dp.png
new file mode 100755
index 0000000..c54ff60
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_seat_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_12dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_12dp.png
new file mode 100755
index 0000000..e0727b8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_12dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_16dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_16dp.png
new file mode 100755
index 0000000..35d8b1b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_18dp.png
new file mode 100755
index 0000000..6941d0f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_24dp.png
new file mode 100755
index 0000000..e6b1f00
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_36dp.png
new file mode 100755
index 0000000..6394366
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_48dp.png
new file mode 100755
index 0000000..0bcfe5b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_event_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_black_18dp.png
new file mode 100755
index 0000000..ca81399
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_black_24dp.png
new file mode 100755
index 0000000..ad0f63e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_black_36dp.png
new file mode 100755
index 0000000..cca2d43
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_black_48dp.png
new file mode 100755
index 0000000..53b79d4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_white_18dp.png
new file mode 100755
index 0000000..1906d10
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_white_24dp.png
new file mode 100755
index 0000000..52565d0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_white_36dp.png
new file mode 100755
index 0000000..2d39e82
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_white_48dp.png
new file mode 100755
index 0000000..c04fe6e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_exit_to_app_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_black_18dp.png
new file mode 100755
index 0000000..247b3d3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_black_24dp.png
new file mode 100755
index 0000000..f4bc5ac
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_black_36dp.png
new file mode 100755
index 0000000..88526a4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_black_48dp.png
new file mode 100755
index 0000000..11d4c89
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_white_18dp.png
new file mode 100755
index 0000000..9a697cc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_white_24dp.png
new file mode 100755
index 0000000..69ac91f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_white_36dp.png
new file mode 100755
index 0000000..8d0a8e9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_white_48dp.png
new file mode 100755
index 0000000..599711f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_explore_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_black_18dp.png
new file mode 100755
index 0000000..9fb9c33
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_black_24dp.png
new file mode 100755
index 0000000..e711e87
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_black_36dp.png
new file mode 100755
index 0000000..537e435
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_black_48dp.png
new file mode 100755
index 0000000..25c6154
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_white_18dp.png
new file mode 100755
index 0000000..ceaba75
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_white_24dp.png
new file mode 100755
index 0000000..5f9217f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_white_36dp.png
new file mode 100755
index 0000000..22bf741
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_white_48dp.png
new file mode 100755
index 0000000..58c7e5a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_extension_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_black_18dp.png
new file mode 100755
index 0000000..755d08a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_black_24dp.png
new file mode 100755
index 0000000..13fdf38
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_black_36dp.png
new file mode 100755
index 0000000..4d66ccf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_black_48dp.png
new file mode 100755
index 0000000..032c786
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_white_18dp.png
new file mode 100755
index 0000000..7b337f8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_white_24dp.png
new file mode 100755
index 0000000..dcb6ee9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_white_36dp.png
new file mode 100755
index 0000000..0794758
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_white_48dp.png
new file mode 100755
index 0000000..7e32914
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_face_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_black_18dp.png
new file mode 100755
index 0000000..bcd2cb0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_black_24dp.png
new file mode 100755
index 0000000..b8a2be6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_black_36dp.png
new file mode 100755
index 0000000..a55abbe
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_black_48dp.png
new file mode 100755
index 0000000..1139f5f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_black_18dp.png
new file mode 100755
index 0000000..17564de
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_black_24dp.png
new file mode 100755
index 0000000..de12450
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_black_36dp.png
new file mode 100755
index 0000000..75b19f9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_black_48dp.png
new file mode 100755
index 0000000..3d3036e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_white_18dp.png
new file mode 100755
index 0000000..6da3f66
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_white_24dp.png
new file mode 100755
index 0000000..c82d09e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_white_36dp.png
new file mode 100755
index 0000000..ef0b7cf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_white_48dp.png
new file mode 100755
index 0000000..884a8a2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_border_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_white_18dp.png
new file mode 100755
index 0000000..7770f59
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_white_24dp.png
new file mode 100755
index 0000000..f0328fa
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_white_36dp.png
new file mode 100755
index 0000000..e03b1cb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_white_48dp.png
new file mode 100755
index 0000000..07569c8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_favorite_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_black_18dp.png
new file mode 100755
index 0000000..a2d6864
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_black_24dp.png
new file mode 100755
index 0000000..f031685
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_black_36dp.png
new file mode 100755
index 0000000..7418fc7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_black_48dp.png
new file mode 100755
index 0000000..e68ceb9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_white_18dp.png
new file mode 100755
index 0000000..fd207fc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_white_24dp.png
new file mode 100755
index 0000000..a34168c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_white_36dp.png
new file mode 100755
index 0000000..53bc37f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_white_48dp.png
new file mode 100755
index 0000000..25810dd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_feedback_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_black_18dp.png
new file mode 100755
index 0000000..d7a86b2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_black_24dp.png
new file mode 100755
index 0000000..e082b43
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_black_36dp.png
new file mode 100755
index 0000000..81d3773
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_black_48dp.png
new file mode 100755
index 0000000..f984989
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_white_18dp.png
new file mode 100755
index 0000000..d423471
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_white_24dp.png
new file mode 100755
index 0000000..13cc2dd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_white_36dp.png
new file mode 100755
index 0000000..14edfd6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_white_48dp.png
new file mode 100755
index 0000000..d68cc07
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_in_page_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_black_18dp.png
new file mode 100755
index 0000000..4bc71ad
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_black_24dp.png
new file mode 100755
index 0000000..88dd3c5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_black_36dp.png
new file mode 100755
index 0000000..36bc60f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_black_48dp.png
new file mode 100755
index 0000000..3bfe8c8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_white_18dp.png
new file mode 100755
index 0000000..fe86bac
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_white_24dp.png
new file mode 100755
index 0000000..aa4c16d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_white_36dp.png
new file mode 100755
index 0000000..1311081
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_white_48dp.png
new file mode 100755
index 0000000..dabb626
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_find_replace_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_black_18dp.png
new file mode 100755
index 0000000..17868e7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_black_24dp.png
new file mode 100755
index 0000000..bfa3382
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_black_36dp.png
new file mode 100755
index 0000000..9ab8855
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_black_48dp.png
new file mode 100755
index 0000000..ee2cbbe
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_white_18dp.png
new file mode 100755
index 0000000..11b7534
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_white_24dp.png
new file mode 100755
index 0000000..70fe7e4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_white_36dp.png
new file mode 100755
index 0000000..a171c6c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_white_48dp.png
new file mode 100755
index 0000000..66b6cf3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_fingerprint_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_black_18dp.png
new file mode 100755
index 0000000..5db613d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_black_24dp.png
new file mode 100755
index 0000000..f89f693
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_black_36dp.png
new file mode 100755
index 0000000..0586695
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_black_48dp.png
new file mode 100755
index 0000000..0e50874
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_white_18dp.png
new file mode 100755
index 0000000..37d6656
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_white_24dp.png
new file mode 100755
index 0000000..d2ad148
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_white_36dp.png
new file mode 100755
index 0000000..9808f07
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_white_48dp.png
new file mode 100755
index 0000000..003e5d9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_land_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_black_18dp.png
new file mode 100755
index 0000000..2fed179
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_black_24dp.png
new file mode 100755
index 0000000..b55ea9f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_black_36dp.png
new file mode 100755
index 0000000..073e190
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_black_48dp.png
new file mode 100755
index 0000000..9ebd18b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_white_18dp.png
new file mode 100755
index 0000000..2cb06c9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_white_24dp.png
new file mode 100755
index 0000000..43b0126
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_white_36dp.png
new file mode 100755
index 0000000..73e30e9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_white_48dp.png
new file mode 100755
index 0000000..8ef4876
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flight_takeoff_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_black_18dp.png
new file mode 100755
index 0000000..79d29f3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_black_24dp.png
new file mode 100755
index 0000000..e00aa9e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_black_36dp.png
new file mode 100755
index 0000000..37fdab4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_black_48dp.png
new file mode 100755
index 0000000..a7e521a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_white_18dp.png
new file mode 100755
index 0000000..97f0d39
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_white_24dp.png
new file mode 100755
index 0000000..59a66c1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_white_36dp.png
new file mode 100755
index 0000000..549e2f0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_white_48dp.png
new file mode 100755
index 0000000..f4717be
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_back_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_black_18dp.png
new file mode 100755
index 0000000..45f5158
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_black_24dp.png
new file mode 100755
index 0000000..8e2d28f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_black_36dp.png
new file mode 100755
index 0000000..db99e63
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_black_48dp.png
new file mode 100755
index 0000000..2cda524
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_white_18dp.png
new file mode 100755
index 0000000..822cfe5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_white_24dp.png
new file mode 100755
index 0000000..5ee83ad
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_white_36dp.png
new file mode 100755
index 0000000..d8e9efd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_white_48dp.png
new file mode 100755
index 0000000..9b78ad3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_flip_to_front_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_black_18dp.png
new file mode 100755
index 0000000..65b9749
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_black_24dp.png
new file mode 100755
index 0000000..5694c65
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_black_36dp.png
new file mode 100755
index 0000000..e717d61
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_black_48dp.png
new file mode 100755
index 0000000..dda9926
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_white_18dp.png
new file mode 100755
index 0000000..5094a4a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_white_24dp.png
new file mode 100755
index 0000000..38a4fe8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_white_36dp.png
new file mode 100755
index 0000000..dfaf279
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_white_48dp.png
new file mode 100755
index 0000000..097bfbf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gavel_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_black_18dp.png
new file mode 100755
index 0000000..434edfb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_black_24dp.png
new file mode 100755
index 0000000..d9aacea
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_black_36dp.png
new file mode 100755
index 0000000..4b3a42f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_black_48dp.png
new file mode 100755
index 0000000..ce97c85
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_white_18dp.png
new file mode 100755
index 0000000..737b900
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_white_24dp.png
new file mode 100755
index 0000000..c8a2039
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_white_36dp.png
new file mode 100755
index 0000000..fa3ebbb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_white_48dp.png
new file mode 100755
index 0000000..671e0b3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_get_app_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_black_18dp.png
new file mode 100755
index 0000000..865fe62
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_black_24dp.png
new file mode 100755
index 0000000..9de7695
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_black_36dp.png
new file mode 100755
index 0000000..01a92ef
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_black_48dp.png
new file mode 100755
index 0000000..5621392
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_white_18dp.png
new file mode 100755
index 0000000..404a062
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_white_24dp.png
new file mode 100755
index 0000000..0978a14
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_white_36dp.png
new file mode 100755
index 0000000..17b6ed6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_white_48dp.png
new file mode 100755
index 0000000..acdb6d0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_gif_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_black_18dp.png
new file mode 100755
index 0000000..4ea8d0c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_black_24dp.png
new file mode 100755
index 0000000..92a0f58
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_black_36dp.png
new file mode 100755
index 0000000..97f8c6e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_black_48dp.png
new file mode 100755
index 0000000..54d3065
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_white_18dp.png
new file mode 100755
index 0000000..5c109af
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_white_24dp.png
new file mode 100755
index 0000000..86eecdd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_white_36dp.png
new file mode 100755
index 0000000..d658df6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_white_48dp.png
new file mode 100755
index 0000000..aa58792
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_grade_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_black_18dp.png
new file mode 100755
index 0000000..9bf807f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_black_24dp.png
new file mode 100755
index 0000000..03b6ef9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_black_36dp.png
new file mode 100755
index 0000000..880f742
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_black_48dp.png
new file mode 100755
index 0000000..b53ce76
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_white_18dp.png
new file mode 100755
index 0000000..b5068b0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_white_24dp.png
new file mode 100755
index 0000000..34c12ea
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_white_36dp.png
new file mode 100755
index 0000000..4755082
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_white_48dp.png
new file mode 100755
index 0000000..dae7f56
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_group_work_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_black_18dp.png
new file mode 100755
index 0000000..feceb01
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_black_24dp.png
new file mode 100755
index 0000000..374fafd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_black_36dp.png
new file mode 100755
index 0000000..75693b8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_black_48dp.png
new file mode 100755
index 0000000..645822e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_black_18dp.png
new file mode 100755
index 0000000..60177f6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_black_24dp.png
new file mode 100755
index 0000000..314154a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_black_36dp.png
new file mode 100755
index 0000000..d6edf14
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_black_48dp.png
new file mode 100755
index 0000000..dc5cdee
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_white_18dp.png
new file mode 100755
index 0000000..35301df
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_white_24dp.png
new file mode 100755
index 0000000..4bc2a96
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_white_36dp.png
new file mode 100755
index 0000000..1513124
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_white_48dp.png
new file mode 100755
index 0000000..e9585a0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_outline_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_white_18dp.png
new file mode 100755
index 0000000..9a95267
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_white_24dp.png
new file mode 100755
index 0000000..5664f95
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_white_36dp.png
new file mode 100755
index 0000000..9c4e768
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_white_48dp.png
new file mode 100755
index 0000000..d491817
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_help_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_black_18dp.png
new file mode 100755
index 0000000..a4e35c0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_black_24dp.png
new file mode 100755
index 0000000..8b6742e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_black_36dp.png
new file mode 100755
index 0000000..2a2128d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_black_48dp.png
new file mode 100755
index 0000000..e5a17d6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_white_18dp.png
new file mode 100755
index 0000000..722ed61
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_white_24dp.png
new file mode 100755
index 0000000..9afd8fa
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_white_36dp.png
new file mode 100755
index 0000000..927e5cb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_white_48dp.png
new file mode 100755
index 0000000..76cae9a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_highlight_off_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_black_18dp.png
new file mode 100755
index 0000000..f2be98f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_black_24dp.png
new file mode 100755
index 0000000..9abddaa
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_black_36dp.png
new file mode 100755
index 0000000..9de65cd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_black_48dp.png
new file mode 100755
index 0000000..f837fda
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_white_18dp.png
new file mode 100755
index 0000000..6d4462a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_white_24dp.png
new file mode 100755
index 0000000..485c826
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_white_36dp.png
new file mode 100755
index 0000000..ff494e9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_white_48dp.png
new file mode 100755
index 0000000..1358a12
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_history_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_black_18dp.png
new file mode 100755
index 0000000..15ad661
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_black_24dp.png
new file mode 100755
index 0000000..9f61d7b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_black_36dp.png
new file mode 100755
index 0000000..c91ba8e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_black_48dp.png
new file mode 100755
index 0000000..2e86cc2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_white_18dp.png
new file mode 100755
index 0000000..08563d2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_white_24dp.png
new file mode 100755
index 0000000..1e5b80e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_white_36dp.png
new file mode 100755
index 0000000..bef070c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_white_48dp.png
new file mode 100755
index 0000000..f7dc554
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_home_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_black_18dp.png
new file mode 100755
index 0000000..57a1336
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_black_24dp.png
new file mode 100755
index 0000000..22fe56d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_black_36dp.png
new file mode 100755
index 0000000..35f84f3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_black_48dp.png
new file mode 100755
index 0000000..47efe9d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_white_18dp.png
new file mode 100755
index 0000000..8618811
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_white_24dp.png
new file mode 100755
index 0000000..5b8b684
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_white_36dp.png
new file mode 100755
index 0000000..4e62863
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_white_48dp.png
new file mode 100755
index 0000000..8f67bc6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_empty_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_black_18dp.png
new file mode 100755
index 0000000..f5720c8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_black_24dp.png
new file mode 100755
index 0000000..959b267
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_black_36dp.png
new file mode 100755
index 0000000..d8e4f79
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_black_48dp.png
new file mode 100755
index 0000000..1aceb36
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_white_18dp.png
new file mode 100755
index 0000000..ea43e4f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_white_24dp.png
new file mode 100755
index 0000000..844a01d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_white_36dp.png
new file mode 100755
index 0000000..a6510f2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_white_48dp.png
new file mode 100755
index 0000000..77ceb96
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_hourglass_full_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_black_18dp.png
new file mode 100755
index 0000000..7af0e28
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_black_24dp.png
new file mode 100755
index 0000000..e6cfe63
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_black_36dp.png
new file mode 100755
index 0000000..be1c6bf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_black_48dp.png
new file mode 100755
index 0000000..1465c66
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_white_18dp.png
new file mode 100755
index 0000000..e74219b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_white_24dp.png
new file mode 100755
index 0000000..bc8056e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_white_36dp.png
new file mode 100755
index 0000000..de14629
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_white_48dp.png
new file mode 100755
index 0000000..eebe0bf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_http_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_black_18dp.png
new file mode 100755
index 0000000..f314292
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_black_24dp.png
new file mode 100755
index 0000000..de50295
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_black_36dp.png
new file mode 100755
index 0000000..17e8158
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_black_48dp.png
new file mode 100755
index 0000000..a7caa2d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_white_18dp.png
new file mode 100755
index 0000000..f5f8614
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_white_24dp.png
new file mode 100755
index 0000000..cd4f04a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_white_36dp.png
new file mode 100755
index 0000000..47bd641
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_white_48dp.png
new file mode 100755
index 0000000..0e52c7c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_https_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_black_18dp.png
new file mode 100755
index 0000000..54cf6b3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_black_24dp.png
new file mode 100755
index 0000000..7a7ff9e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_black_36dp.png
new file mode 100755
index 0000000..1ae6895
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_black_48dp.png
new file mode 100755
index 0000000..4a52f0f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_white_18dp.png
new file mode 100755
index 0000000..713db93
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_white_24dp.png
new file mode 100755
index 0000000..6b63f19
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_white_36dp.png
new file mode 100755
index 0000000..e281d3b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_white_48dp.png
new file mode 100755
index 0000000..0377225
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_important_devices_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_black_18dp.png
new file mode 100755
index 0000000..ac54220
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_black_24dp.png
new file mode 100755
index 0000000..da56077
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_black_36dp.png
new file mode 100755
index 0000000..d184681
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_black_48dp.png
new file mode 100755
index 0000000..a81eeb9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_black_18dp.png
new file mode 100755
index 0000000..05803bd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_black_24dp.png
new file mode 100755
index 0000000..4b5ab06
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_black_36dp.png
new file mode 100755
index 0000000..0b465fc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_black_48dp.png
new file mode 100755
index 0000000..3847a9f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_white_18dp.png
new file mode 100755
index 0000000..c0ba044
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_white_24dp.png
new file mode 100755
index 0000000..c7b1113
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_white_36dp.png
new file mode 100755
index 0000000..2dd40bd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_white_48dp.png
new file mode 100755
index 0000000..c41a5fc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_outline_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_white_18dp.png
new file mode 100755
index 0000000..7bc6eb1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_white_24dp.png
new file mode 100755
index 0000000..00f53ed
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_white_36dp.png
new file mode 100755
index 0000000..a5062dd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_white_48dp.png
new file mode 100755
index 0000000..0db1429
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_info_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_black_18dp.png
new file mode 100755
index 0000000..8464477
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_black_24dp.png
new file mode 100755
index 0000000..685b908
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_black_36dp.png
new file mode 100755
index 0000000..f20cf8a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_black_48dp.png
new file mode 100755
index 0000000..9f399d5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_white_18dp.png
new file mode 100755
index 0000000..66c82dc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_white_24dp.png
new file mode 100755
index 0000000..133f60b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_white_36dp.png
new file mode 100755
index 0000000..7c5285b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_white_48dp.png
new file mode 100755
index 0000000..3b22d00
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_input_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_black_18dp.png
new file mode 100755
index 0000000..1cbcd8c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_black_24dp.png
new file mode 100755
index 0000000..839593e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_black_36dp.png
new file mode 100755
index 0000000..6b3c86a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_black_48dp.png
new file mode 100755
index 0000000..0e2d30b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_white_18dp.png
new file mode 100755
index 0000000..c99ca91
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_white_24dp.png
new file mode 100755
index 0000000..749f3a9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_white_36dp.png
new file mode 100755
index 0000000..0e9ee2a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_white_48dp.png
new file mode 100755
index 0000000..b1cf071
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_invert_colors_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_black_18dp.png
new file mode 100755
index 0000000..8d1395c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_black_24dp.png
new file mode 100755
index 0000000..9071a29
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_black_36dp.png
new file mode 100755
index 0000000..92ddfe3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_black_48dp.png
new file mode 100755
index 0000000..c86bf65
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_black_18dp.png
new file mode 100755
index 0000000..57d45a4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_black_24dp.png
new file mode 100755
index 0000000..49b2151
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_black_36dp.png
new file mode 100755
index 0000000..0774139
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_black_48dp.png
new file mode 100755
index 0000000..9a16a70
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_white_18dp.png
new file mode 100755
index 0000000..b908a3e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_white_24dp.png
new file mode 100755
index 0000000..53a196c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_white_36dp.png
new file mode 100755
index 0000000..e0d8373
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_white_48dp.png
new file mode 100755
index 0000000..5061cf7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_outline_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_white_18dp.png
new file mode 100755
index 0000000..d4ecc29
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_white_24dp.png
new file mode 100755
index 0000000..47ca1f1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_white_36dp.png
new file mode 100755
index 0000000..495a26c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_white_48dp.png
new file mode 100755
index 0000000..9871127
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_label_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_black_18dp.png
new file mode 100755
index 0000000..8b3ed3e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_black_24dp.png
new file mode 100755
index 0000000..3612556
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_black_36dp.png
new file mode 100755
index 0000000..34c714e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_black_48dp.png
new file mode 100755
index 0000000..68608c7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_white_18dp.png
new file mode 100755
index 0000000..68d84ac
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_white_24dp.png
new file mode 100755
index 0000000..b7c8248
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_white_36dp.png
new file mode 100755
index 0000000..d88510f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_white_48dp.png
new file mode 100755
index 0000000..d4b5518
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_language_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_black_18dp.png
new file mode 100755
index 0000000..009dd91
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_black_24dp.png
new file mode 100755
index 0000000..4cfcf84
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_black_36dp.png
new file mode 100755
index 0000000..f913b88
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_black_48dp.png
new file mode 100755
index 0000000..4305f56
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_white_18dp.png
new file mode 100755
index 0000000..81702c7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_white_24dp.png
new file mode 100755
index 0000000..49726bc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_white_36dp.png
new file mode 100755
index 0000000..6297290
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_white_48dp.png
new file mode 100755
index 0000000..2ed5b0e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_launch_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_black_18dp.png
new file mode 100755
index 0000000..cb92de8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_black_24dp.png
new file mode 100755
index 0000000..839ee44
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_black_36dp.png
new file mode 100755
index 0000000..85c5faa
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_black_48dp.png
new file mode 100755
index 0000000..49a84d0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_white_18dp.png
new file mode 100755
index 0000000..70881c1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_white_24dp.png
new file mode 100755
index 0000000..c9dd4c1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_white_36dp.png
new file mode 100755
index 0000000..25e6350
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_white_48dp.png
new file mode 100755
index 0000000..1c16761
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lightbulb_outline_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_black_18dp.png
new file mode 100755
index 0000000..1e0ebd8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_black_24dp.png
new file mode 100755
index 0000000..0574c74
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_black_36dp.png
new file mode 100755
index 0000000..a3853bb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_black_48dp.png
new file mode 100755
index 0000000..342e133
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_white_18dp.png
new file mode 100755
index 0000000..b31033d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_white_24dp.png
new file mode 100755
index 0000000..53ab75e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_white_36dp.png
new file mode 100755
index 0000000..19541ab
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_white_48dp.png
new file mode 100755
index 0000000..90d02d6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_style_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_black_18dp.png
new file mode 100755
index 0000000..18d3319
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_black_24dp.png
new file mode 100755
index 0000000..b8763bb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_black_36dp.png
new file mode 100755
index 0000000..a73af01
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_black_48dp.png
new file mode 100755
index 0000000..2dfe6de
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_white_18dp.png
new file mode 100755
index 0000000..87d0e3a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_white_24dp.png
new file mode 100755
index 0000000..d49ae56
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_white_36dp.png
new file mode 100755
index 0000000..ec9df82
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_white_48dp.png
new file mode 100755
index 0000000..c4d29ac
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_line_weight_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_black_18dp.png
new file mode 100755
index 0000000..ec508c3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_black_24dp.png
new file mode 100755
index 0000000..200e967
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_black_36dp.png
new file mode 100755
index 0000000..27783be
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_black_48dp.png
new file mode 100755
index 0000000..d94b45a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_white_18dp.png
new file mode 100755
index 0000000..4514987
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_white_24dp.png
new file mode 100755
index 0000000..f8f7e7d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_white_36dp.png
new file mode 100755
index 0000000..e40bfbf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_white_48dp.png
new file mode 100755
index 0000000..4d2807e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_list_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_12dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_12dp.png
new file mode 100755
index 0000000..59d88ae
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_12dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_18dp.png
new file mode 100755
index 0000000..f314292
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_24dp.png
new file mode 100755
index 0000000..de50295
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_36dp.png
new file mode 100755
index 0000000..17e8158
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_48dp.png
new file mode 100755
index 0000000..a7caa2d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_black_18dp.png
new file mode 100755
index 0000000..2ac573d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_black_24dp.png
new file mode 100755
index 0000000..4a08eca
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_black_36dp.png
new file mode 100755
index 0000000..b8e451f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_black_48dp.png
new file mode 100755
index 0000000..0e4cbc2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_white_18dp.png
new file mode 100755
index 0000000..7c56414
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_white_24dp.png
new file mode 100755
index 0000000..6bae68f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_white_36dp.png
new file mode 100755
index 0000000..1baf726
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_white_48dp.png
new file mode 100755
index 0000000..1d1b0f4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_open_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_black_18dp.png
new file mode 100755
index 0000000..9c621ed
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_black_24dp.png
new file mode 100755
index 0000000..9db5ead
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_black_36dp.png
new file mode 100755
index 0000000..3b70599
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_black_48dp.png
new file mode 100755
index 0000000..98b7144
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_white_18dp.png
new file mode 100755
index 0000000..765a7be
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_white_24dp.png
new file mode 100755
index 0000000..e53f541
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_white_36dp.png
new file mode 100755
index 0000000..83f8de4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_white_48dp.png
new file mode 100755
index 0000000..bd2cf4d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_outline_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_12dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_12dp.png
new file mode 100755
index 0000000..a8a446b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_12dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_18dp.png
new file mode 100755
index 0000000..f5f8614
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_24dp.png
new file mode 100755
index 0000000..cd4f04a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_36dp.png
new file mode 100755
index 0000000..47bd641
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_48dp.png
new file mode 100755
index 0000000..0e52c7c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_lock_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_black_18dp.png
new file mode 100755
index 0000000..9ff4c4a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_black_24dp.png
new file mode 100755
index 0000000..7238564
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_black_36dp.png
new file mode 100755
index 0000000..a3d714d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_black_48dp.png
new file mode 100755
index 0000000..0afab88
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_white_18dp.png
new file mode 100755
index 0000000..893fe48
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_white_24dp.png
new file mode 100755
index 0000000..8667f3f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_white_36dp.png
new file mode 100755
index 0000000..af9df95
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_white_48dp.png
new file mode 100755
index 0000000..32c9346
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_loyalty_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_black_18dp.png
new file mode 100755
index 0000000..11b7715
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_black_24dp.png
new file mode 100755
index 0000000..a0e7fc0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_black_36dp.png
new file mode 100755
index 0000000..92c8f9b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_black_48dp.png
new file mode 100755
index 0000000..e122fc7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_white_18dp.png
new file mode 100755
index 0000000..e3875ea
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_white_24dp.png
new file mode 100755
index 0000000..cb7d900
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_white_36dp.png
new file mode 100755
index 0000000..61df6bb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_white_48dp.png
new file mode 100755
index 0000000..df445c0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_markunread_mailbox_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_black_18dp.png
new file mode 100755
index 0000000..f5b7e85
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_black_24dp.png
new file mode 100755
index 0000000..3bf0e39
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_black_36dp.png
new file mode 100755
index 0000000..0ffe1a8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_black_48dp.png
new file mode 100755
index 0000000..144496d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_white_18dp.png
new file mode 100755
index 0000000..e2c7113
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_white_24dp.png
new file mode 100755
index 0000000..1b84841
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_white_36dp.png
new file mode 100755
index 0000000..cb0d406
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_white_48dp.png
new file mode 100755
index 0000000..a39fa45
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_motorcycle_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_black_18dp.png
new file mode 100755
index 0000000..af4f5a4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_black_24dp.png
new file mode 100755
index 0000000..23dddc5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_black_36dp.png
new file mode 100755
index 0000000..7aa8635
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_black_48dp.png
new file mode 100755
index 0000000..4ca9de2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_white_18dp.png
new file mode 100755
index 0000000..a37cbdf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_white_24dp.png
new file mode 100755
index 0000000..5ff7f63
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_white_36dp.png
new file mode 100755
index 0000000..fa79e07
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_white_48dp.png
new file mode 100755
index 0000000..12efadc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_note_add_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_black_18dp.png
new file mode 100755
index 0000000..f6ef9ca
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_black_24dp.png
new file mode 100755
index 0000000..90e86fe
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_black_36dp.png
new file mode 100755
index 0000000..bca5999
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_black_48dp.png
new file mode 100755
index 0000000..c05c5d2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_white_18dp.png
new file mode 100755
index 0000000..b3465a1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_white_24dp.png
new file mode 100755
index 0000000..4c3f844
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_white_36dp.png
new file mode 100755
index 0000000..4a19766
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_white_48dp.png
new file mode 100755
index 0000000..81caa4a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_offline_pin_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_black_18dp.png
new file mode 100755
index 0000000..9f576b8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_black_24dp.png
new file mode 100755
index 0000000..0b903a1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_black_36dp.png
new file mode 100755
index 0000000..c5bf232
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_black_48dp.png
new file mode 100755
index 0000000..e64b17c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_white_18dp.png
new file mode 100755
index 0000000..8b2d337
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_white_24dp.png
new file mode 100755
index 0000000..52ab540
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_white_36dp.png
new file mode 100755
index 0000000..475c22c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_white_48dp.png
new file mode 100755
index 0000000..ba50cc6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_opacity_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_black_18dp.png
new file mode 100755
index 0000000..ac183c8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_black_24dp.png
new file mode 100755
index 0000000..5dc9b66
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_black_36dp.png
new file mode 100755
index 0000000..0f9b01a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_black_48dp.png
new file mode 100755
index 0000000..4324fbf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_white_18dp.png
new file mode 100755
index 0000000..bbda360
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_white_24dp.png
new file mode 100755
index 0000000..e78d966
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_white_36dp.png
new file mode 100755
index 0000000..7dc705c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_white_48dp.png
new file mode 100755
index 0000000..dbea1eb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_browser_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_12dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_12dp.png
new file mode 100755
index 0000000..8f1ae22
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_12dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_18dp.png
new file mode 100755
index 0000000..009dd91
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_24dp.png
new file mode 100755
index 0000000..4cfcf84
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_36dp.png
new file mode 100755
index 0000000..f913b88
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_48dp.png
new file mode 100755
index 0000000..4305f56
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_12dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_12dp.png
new file mode 100755
index 0000000..8f661fb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_12dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_18dp.png
new file mode 100755
index 0000000..81702c7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_24dp.png
new file mode 100755
index 0000000..49726bc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_36dp.png
new file mode 100755
index 0000000..6297290
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_48dp.png
new file mode 100755
index 0000000..2ed5b0e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_in_new_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_black_18dp.png
new file mode 100755
index 0000000..998b578
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_black_24dp.png
new file mode 100755
index 0000000..d74c5ea
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_black_36dp.png
new file mode 100755
index 0000000..cdacadf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_black_48dp.png
new file mode 100755
index 0000000..a51a0ce
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_white_18dp.png
new file mode 100755
index 0000000..5179cb4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_white_24dp.png
new file mode 100755
index 0000000..da103f1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_white_36dp.png
new file mode 100755
index 0000000..f94079d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_white_48dp.png
new file mode 100755
index 0000000..61402e0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_open_with_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_black_18dp.png
new file mode 100755
index 0000000..d5c6d3d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_black_24dp.png
new file mode 100755
index 0000000..45d2b7c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_black_36dp.png
new file mode 100755
index 0000000..0f632be
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_black_48dp.png
new file mode 100755
index 0000000..309d35b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_white_18dp.png
new file mode 100755
index 0000000..daff14c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_white_24dp.png
new file mode 100755
index 0000000..e0adb37
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_white_36dp.png
new file mode 100755
index 0000000..e062ec8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_white_48dp.png
new file mode 100755
index 0000000..d292eff
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pageview_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_black_18dp.png
new file mode 100755
index 0000000..0a00ff3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_black_24dp.png
new file mode 100755
index 0000000..d98e34b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_black_36dp.png
new file mode 100755
index 0000000..5438e71
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_black_48dp.png
new file mode 100755
index 0000000..03b4200
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_white_18dp.png
new file mode 100755
index 0000000..1a3f503
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_white_24dp.png
new file mode 100755
index 0000000..4e004b8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_white_36dp.png
new file mode 100755
index 0000000..622e8ae
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_white_48dp.png
new file mode 100755
index 0000000..0f0c89f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pan_tool_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_black_18dp.png
new file mode 100755
index 0000000..cc037fb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_black_24dp.png
new file mode 100755
index 0000000..e2225e8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_black_36dp.png
new file mode 100755
index 0000000..c8232c8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_black_48dp.png
new file mode 100755
index 0000000..8b0836b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_white_18dp.png
new file mode 100755
index 0000000..8e10b8c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_white_24dp.png
new file mode 100755
index 0000000..c6a0840
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_white_36dp.png
new file mode 100755
index 0000000..fb3558f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_white_48dp.png
new file mode 100755
index 0000000..62c52d0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_payment_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_black_18dp.png
new file mode 100755
index 0000000..5486e2a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_black_24dp.png
new file mode 100755
index 0000000..7ee0ee4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_black_36dp.png
new file mode 100755
index 0000000..25b6a36
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_black_48dp.png
new file mode 100755
index 0000000..ce80b80
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_white_18dp.png
new file mode 100755
index 0000000..94dc920
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_white_24dp.png
new file mode 100755
index 0000000..7e7a2e2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_white_36dp.png
new file mode 100755
index 0000000..37161e4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_white_48dp.png
new file mode 100755
index 0000000..7de2a38
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_camera_mic_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_black_18dp.png
new file mode 100755
index 0000000..1e64b64
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_black_24dp.png
new file mode 100755
index 0000000..4c66d7e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_black_36dp.png
new file mode 100755
index 0000000..c6a863f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_black_48dp.png
new file mode 100755
index 0000000..a89553b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_white_18dp.png
new file mode 100755
index 0000000..6d2adcb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_white_24dp.png
new file mode 100755
index 0000000..a21b440
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_white_36dp.png
new file mode 100755
index 0000000..ce9bba0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_white_48dp.png
new file mode 100755
index 0000000..5b355e6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_contact_calendar_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_black_18dp.png
new file mode 100755
index 0000000..47f8e60
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_black_24dp.png
new file mode 100755
index 0000000..1643436
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_black_36dp.png
new file mode 100755
index 0000000..54f3d98
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_black_48dp.png
new file mode 100755
index 0000000..d9e712d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_white_18dp.png
new file mode 100755
index 0000000..88ade80
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_white_24dp.png
new file mode 100755
index 0000000..ba7e1fe
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_white_36dp.png
new file mode 100755
index 0000000..1499d49
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_white_48dp.png
new file mode 100755
index 0000000..60257de
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_data_setting_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_black_18dp.png
new file mode 100755
index 0000000..82c5bc7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_black_24dp.png
new file mode 100755
index 0000000..d033655
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_black_36dp.png
new file mode 100755
index 0000000..a74beda
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_black_48dp.png
new file mode 100755
index 0000000..0ac10c8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_white_18dp.png
new file mode 100755
index 0000000..9c87f69
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_white_24dp.png
new file mode 100755
index 0000000..e7c1ea3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_white_36dp.png
new file mode 100755
index 0000000..3349db5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_white_48dp.png
new file mode 100755
index 0000000..9f70599
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_device_information_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_black_18dp.png
new file mode 100755
index 0000000..96fcb38
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_black_24dp.png
new file mode 100755
index 0000000..dc78670
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_black_36dp.png
new file mode 100755
index 0000000..c6c54ed
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_black_48dp.png
new file mode 100755
index 0000000..d54de22
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_white_18dp.png
new file mode 100755
index 0000000..f228953
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_white_24dp.png
new file mode 100755
index 0000000..78d43f0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_white_36dp.png
new file mode 100755
index 0000000..0928772
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_white_48dp.png
new file mode 100755
index 0000000..b08402a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_identity_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_black_18dp.png
new file mode 100755
index 0000000..5be4e6e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_black_24dp.png
new file mode 100755
index 0000000..0a838c0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_black_36dp.png
new file mode 100755
index 0000000..45d7eb3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_black_48dp.png
new file mode 100755
index 0000000..c4c4932
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_white_18dp.png
new file mode 100755
index 0000000..e3a30e2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_white_24dp.png
new file mode 100755
index 0000000..eac68cf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_white_36dp.png
new file mode 100755
index 0000000..c2e9e54
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_white_48dp.png
new file mode 100755
index 0000000..75a43cb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_media_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_black_18dp.png
new file mode 100755
index 0000000..345bb3e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_black_24dp.png
new file mode 100755
index 0000000..0ada086
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_black_36dp.png
new file mode 100755
index 0000000..6796136
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_black_48dp.png
new file mode 100755
index 0000000..87b27ba
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_white_18dp.png
new file mode 100755
index 0000000..c107b7b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_white_24dp.png
new file mode 100755
index 0000000..503e58e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_white_36dp.png
new file mode 100755
index 0000000..9d2f2a5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_white_48dp.png
new file mode 100755
index 0000000..2656cad
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_phone_msg_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_black_18dp.png
new file mode 100755
index 0000000..e21e1c4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_black_24dp.png
new file mode 100755
index 0000000..0be46fc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_black_36dp.png
new file mode 100755
index 0000000..1b9efea
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_black_48dp.png
new file mode 100755
index 0000000..fc4d869
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_white_18dp.png
new file mode 100755
index 0000000..488122b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_white_24dp.png
new file mode 100755
index 0000000..691a966
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_white_36dp.png
new file mode 100755
index 0000000..7f312e6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_white_48dp.png
new file mode 100755
index 0000000..11f8974
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_perm_scan_wifi_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_black_18dp.png
new file mode 100755
index 0000000..af65348
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_black_24dp.png
new file mode 100755
index 0000000..b4dca2b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_black_36dp.png
new file mode 100755
index 0000000..475aebf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_black_48dp.png
new file mode 100755
index 0000000..154210d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_white_18dp.png
new file mode 100755
index 0000000..4e9fe32
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_white_24dp.png
new file mode 100755
index 0000000..9094bb5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_white_36dp.png
new file mode 100755
index 0000000..9ee4789
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_white_48dp.png
new file mode 100755
index 0000000..6996e7c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pets_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_black_18dp.png
new file mode 100755
index 0000000..f9720c5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_black_24dp.png
new file mode 100755
index 0000000..4031eae
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_black_36dp.png
new file mode 100755
index 0000000..b0f6331
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_black_48dp.png
new file mode 100755
index 0000000..77a32e8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_white_18dp.png
new file mode 100755
index 0000000..8a60457
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_white_24dp.png
new file mode 100755
index 0000000..950bf34
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_white_36dp.png
new file mode 100755
index 0000000..87eebc6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_white_48dp.png
new file mode 100755
index 0000000..09f250f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_alt_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_black_18dp.png
new file mode 100755
index 0000000..113f4a0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_black_24dp.png
new file mode 100755
index 0000000..54f8244
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_black_36dp.png
new file mode 100755
index 0000000..3cfd454
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_black_48dp.png
new file mode 100755
index 0000000..c3892ff
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_white_18dp.png
new file mode 100755
index 0000000..31dc762
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_white_24dp.png
new file mode 100755
index 0000000..b4ec6bb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_white_36dp.png
new file mode 100755
index 0000000..57c0c16
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_white_48dp.png
new file mode 100755
index 0000000..719a3fe
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_picture_in_picture_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_black_18dp.png
new file mode 100755
index 0000000..aa67da1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_black_24dp.png
new file mode 100755
index 0000000..85e44be
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_black_36dp.png
new file mode 100755
index 0000000..693ce09
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_black_48dp.png
new file mode 100755
index 0000000..c56162a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_white_18dp.png
new file mode 100755
index 0000000..b3b233f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_white_24dp.png
new file mode 100755
index 0000000..3e02f5c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_white_36dp.png
new file mode 100755
index 0000000..9aed456
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_white_48dp.png
new file mode 100755
index 0000000..6c4ca8f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_play_for_work_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_black_18dp.png
new file mode 100755
index 0000000..9835ff7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_black_24dp.png
new file mode 100755
index 0000000..68402be
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_black_36dp.png
new file mode 100755
index 0000000..e710dd2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_black_48dp.png
new file mode 100755
index 0000000..887712f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_white_18dp.png
new file mode 100755
index 0000000..191ed51
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_white_24dp.png
new file mode 100755
index 0000000..b44418a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_white_36dp.png
new file mode 100755
index 0000000..e0d6e9a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_white_48dp.png
new file mode 100755
index 0000000..9a1bfd7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_polymer_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_black_18dp.png
new file mode 100755
index 0000000..15f2fd7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_black_24dp.png
new file mode 100755
index 0000000..b5bf927
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_black_36dp.png
new file mode 100755
index 0000000..306f233
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_black_48dp.png
new file mode 100755
index 0000000..75af3f9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_white_18dp.png
new file mode 100755
index 0000000..e78369b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_white_24dp.png
new file mode 100755
index 0000000..24c3509
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_white_36dp.png
new file mode 100755
index 0000000..644168e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_white_48dp.png
new file mode 100755
index 0000000..95a2b7e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_power_settings_new_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_black_18dp.png
new file mode 100755
index 0000000..fc7c72e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_black_24dp.png
new file mode 100755
index 0000000..98c3004
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_black_36dp.png
new file mode 100755
index 0000000..c74936d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_black_48dp.png
new file mode 100755
index 0000000..075f903
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_white_18dp.png
new file mode 100755
index 0000000..fda2b08
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_white_24dp.png
new file mode 100755
index 0000000..6a53ad5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_white_36dp.png
new file mode 100755
index 0000000..39cd4b9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_white_48dp.png
new file mode 100755
index 0000000..825dce7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_pregnant_woman_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_black_18dp.png
new file mode 100755
index 0000000..68289ab
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_black_24dp.png
new file mode 100755
index 0000000..8a1f056
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_black_36dp.png
new file mode 100755
index 0000000..624cbd9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_black_48dp.png
new file mode 100755
index 0000000..f55abe0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_white_18dp.png
new file mode 100755
index 0000000..ae2c9ec
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_white_24dp.png
new file mode 100755
index 0000000..44d7add
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_white_36dp.png
new file mode 100755
index 0000000..945881b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_white_48dp.png
new file mode 100755
index 0000000..61c0c3b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_print_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_black_18dp.png
new file mode 100755
index 0000000..778e335
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_black_24dp.png
new file mode 100755
index 0000000..284de8d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_black_36dp.png
new file mode 100755
index 0000000..c35c1be
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_black_48dp.png
new file mode 100755
index 0000000..9dcff9c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_white_18dp.png
new file mode 100755
index 0000000..b1a48ac
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_white_24dp.png
new file mode 100755
index 0000000..d549f9e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_white_36dp.png
new file mode 100755
index 0000000..cf2a663
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_white_48dp.png
new file mode 100755
index 0000000..00f87b7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_query_builder_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_black_18dp.png
new file mode 100755
index 0000000..8cce137
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_black_24dp.png
new file mode 100755
index 0000000..22c65da
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_black_36dp.png
new file mode 100755
index 0000000..1837474
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_black_48dp.png
new file mode 100755
index 0000000..4acde65
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_white_18dp.png
new file mode 100755
index 0000000..210e240
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_white_24dp.png
new file mode 100755
index 0000000..247b7f1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_white_36dp.png
new file mode 100755
index 0000000..05dc143
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_white_48dp.png
new file mode 100755
index 0000000..4ece8d9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_question_answer_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_black_18dp.png
new file mode 100755
index 0000000..f387443
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_black_24dp.png
new file mode 100755
index 0000000..0467c90
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_black_36dp.png
new file mode 100755
index 0000000..3224b61
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_black_48dp.png
new file mode 100755
index 0000000..7e5e93b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_white_18dp.png
new file mode 100755
index 0000000..39e8c51
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_white_24dp.png
new file mode 100755
index 0000000..8e4bca2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_white_36dp.png
new file mode 100755
index 0000000..71d6b0e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_white_48dp.png
new file mode 100755
index 0000000..1fe1bef
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_receipt_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_black_18dp.png
new file mode 100755
index 0000000..a3daad9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_black_24dp.png
new file mode 100755
index 0000000..8646101
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_black_36dp.png
new file mode 100755
index 0000000..87b0bb7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_black_48dp.png
new file mode 100755
index 0000000..d1a55ad
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_white_18dp.png
new file mode 100755
index 0000000..55c6013
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_white_24dp.png
new file mode 100755
index 0000000..0452a4d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_white_36dp.png
new file mode 100755
index 0000000..10f0528
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_white_48dp.png
new file mode 100755
index 0000000..1e3831e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_record_voice_over_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_black_18dp.png
new file mode 100755
index 0000000..a52cdbf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_black_24dp.png
new file mode 100755
index 0000000..1760372
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_black_36dp.png
new file mode 100755
index 0000000..d93fc83
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_black_48dp.png
new file mode 100755
index 0000000..25ea29c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_white_18dp.png
new file mode 100755
index 0000000..1b6dc8e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_white_24dp.png
new file mode 100755
index 0000000..cc6311e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_white_36dp.png
new file mode 100755
index 0000000..aaf45ac
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_white_48dp.png
new file mode 100755
index 0000000..562bcc6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_redeem_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_black_18dp.png
new file mode 100755
index 0000000..e6d6c5e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_black_24dp.png
new file mode 100755
index 0000000..142d715
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_black_36dp.png
new file mode 100755
index 0000000..b439931
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_black_48dp.png
new file mode 100755
index 0000000..0a66529
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_white_18dp.png
new file mode 100755
index 0000000..9fc6bc1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_white_24dp.png
new file mode 100755
index 0000000..bacaaef
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_white_36dp.png
new file mode 100755
index 0000000..5620da1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_white_48dp.png
new file mode 100755
index 0000000..a0d2543
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_reorder_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_black_18dp.png
new file mode 100755
index 0000000..758cc3a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_black_24dp.png
new file mode 100755
index 0000000..e16b0a2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_black_36dp.png
new file mode 100755
index 0000000..317732a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_black_48dp.png
new file mode 100755
index 0000000..ed36f70
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_white_18dp.png
new file mode 100755
index 0000000..7520b79
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_white_24dp.png
new file mode 100755
index 0000000..cebb1c2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_white_36dp.png
new file mode 100755
index 0000000..0e993d9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_white_48dp.png
new file mode 100755
index 0000000..807b9fa
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_report_problem_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_black_18dp.png
new file mode 100755
index 0000000..283a49f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_black_24dp.png
new file mode 100755
index 0000000..b5992b1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_black_36dp.png
new file mode 100755
index 0000000..d7167b8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_black_48dp.png
new file mode 100755
index 0000000..9a2a433
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_white_18dp.png
new file mode 100755
index 0000000..a2aee81
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_white_24dp.png
new file mode 100755
index 0000000..41cf457
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_white_36dp.png
new file mode 100755
index 0000000..ebb037e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_white_48dp.png
new file mode 100755
index 0000000..8008fa6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_restore_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_black_18dp.png
new file mode 100755
index 0000000..5e45f7e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_black_24dp.png
new file mode 100755
index 0000000..df1f340
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_black_36dp.png
new file mode 100755
index 0000000..ebe833b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_black_48dp.png
new file mode 100755
index 0000000..5a21dfa
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_white_18dp.png
new file mode 100755
index 0000000..8f93ec9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_white_24dp.png
new file mode 100755
index 0000000..7c281c3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_white_36dp.png
new file mode 100755
index 0000000..b345cff
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_white_48dp.png
new file mode 100755
index 0000000..078b10d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_room_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_black_18dp.png
new file mode 100755
index 0000000..5312eac
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_black_24dp.png
new file mode 100755
index 0000000..317f21d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_black_36dp.png
new file mode 100755
index 0000000..2ee5235
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_black_48dp.png
new file mode 100755
index 0000000..7ff164d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_white_18dp.png
new file mode 100755
index 0000000..afcdc64
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_white_24dp.png
new file mode 100755
index 0000000..5a6466e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_white_36dp.png
new file mode 100755
index 0000000..1685832
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_white_48dp.png
new file mode 100755
index 0000000..35869aa
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rounded_corner_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_black_18dp.png
new file mode 100755
index 0000000..09b3e32
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_black_24dp.png
new file mode 100755
index 0000000..38cea3c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_black_36dp.png
new file mode 100755
index 0000000..fe80520
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_black_48dp.png
new file mode 100755
index 0000000..7209dc7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_white_18dp.png
new file mode 100755
index 0000000..0375080
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_white_24dp.png
new file mode 100755
index 0000000..fc7aa91
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_white_36dp.png
new file mode 100755
index 0000000..83bab22
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_white_48dp.png
new file mode 100755
index 0000000..bd4299d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_rowing_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_black_18dp.png
new file mode 100755
index 0000000..5a97d42
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_black_24dp.png
new file mode 100755
index 0000000..9e003f0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_black_36dp.png
new file mode 100755
index 0000000..05696c9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_black_48dp.png
new file mode 100755
index 0000000..1dad2a8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_white_18dp.png
new file mode 100755
index 0000000..a0b9ef0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_white_24dp.png
new file mode 100755
index 0000000..beb1487
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_white_36dp.png
new file mode 100755
index 0000000..51de719
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_white_48dp.png
new file mode 100755
index 0000000..5760daf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_schedule_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_black_18dp.png
new file mode 100755
index 0000000..9aae8b6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_black_24dp.png
new file mode 100755
index 0000000..c593e7a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_black_36dp.png
new file mode 100755
index 0000000..3d70210
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_black_48dp.png
new file mode 100755
index 0000000..3ae490e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_white_18dp.png
new file mode 100755
index 0000000..f15a04f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_white_24dp.png
new file mode 100755
index 0000000..bbfbc96
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_white_36dp.png
new file mode 100755
index 0000000..6bf9dc7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_white_48dp.png
new file mode 100755
index 0000000..abbb989
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_search_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_black_18dp.png
new file mode 100755
index 0000000..025dfae
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_black_24dp.png
new file mode 100755
index 0000000..3c85957
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_black_36dp.png
new file mode 100755
index 0000000..755bb11
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_black_48dp.png
new file mode 100755
index 0000000..919f66d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_white_18dp.png
new file mode 100755
index 0000000..2a7679a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_white_24dp.png
new file mode 100755
index 0000000..f8436ba
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_white_36dp.png
new file mode 100755
index 0000000..3aa4f46
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_white_48dp.png
new file mode 100755
index 0000000..8c04514
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_applications_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_black_18dp.png
new file mode 100755
index 0000000..9114f04
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_black_24dp.png
new file mode 100755
index 0000000..eecb6f5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_black_36dp.png
new file mode 100755
index 0000000..94a44c2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_black_48dp.png
new file mode 100755
index 0000000..1f9d09e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_white_18dp.png
new file mode 100755
index 0000000..5425cba
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_white_24dp.png
new file mode 100755
index 0000000..88bd437
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_white_36dp.png
new file mode 100755
index 0000000..7c15fe5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_white_48dp.png
new file mode 100755
index 0000000..0bc0844
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_backup_restore_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_black_18dp.png
new file mode 100755
index 0000000..6eb1bdb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_black_24dp.png
new file mode 100755
index 0000000..acf1ddf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_black_36dp.png
new file mode 100755
index 0000000..f6efb74
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_black_48dp.png
new file mode 100755
index 0000000..3023ff8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_black_18dp.png
new file mode 100755
index 0000000..63b8ce4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_black_24dp.png
new file mode 100755
index 0000000..73d97b1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_black_36dp.png
new file mode 100755
index 0000000..f3c9f4b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_black_48dp.png
new file mode 100755
index 0000000..b589e7a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_white_18dp.png
new file mode 100755
index 0000000..30e31e1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_white_24dp.png
new file mode 100755
index 0000000..0aa70a4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_white_36dp.png
new file mode 100755
index 0000000..6eb18eb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_white_48dp.png
new file mode 100755
index 0000000..db371c0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_bluetooth_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_black_18dp.png
new file mode 100755
index 0000000..d4d7029
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_black_24dp.png
new file mode 100755
index 0000000..a516d73
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_black_36dp.png
new file mode 100755
index 0000000..c8eb306
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_black_48dp.png
new file mode 100755
index 0000000..6499a38
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_white_18dp.png
new file mode 100755
index 0000000..1d632b6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_white_24dp.png
new file mode 100755
index 0000000..1a966b7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_white_36dp.png
new file mode 100755
index 0000000..e0ee6b6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_white_48dp.png
new file mode 100755
index 0000000..6e2f3e7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_brightness_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_black_18dp.png
new file mode 100755
index 0000000..3d9dcb0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_black_24dp.png
new file mode 100755
index 0000000..1ef2dbd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_black_36dp.png
new file mode 100755
index 0000000..e36ef41
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_black_48dp.png
new file mode 100755
index 0000000..97e47d9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_white_18dp.png
new file mode 100755
index 0000000..d9339b2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_white_24dp.png
new file mode 100755
index 0000000..942213f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_white_36dp.png
new file mode 100755
index 0000000..535a7c8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_white_48dp.png
new file mode 100755
index 0000000..8b4e1c3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_cell_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_black_18dp.png
new file mode 100755
index 0000000..4be793a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_black_24dp.png
new file mode 100755
index 0000000..c97350f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_black_36dp.png
new file mode 100755
index 0000000..6e35ac3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_black_48dp.png
new file mode 100755
index 0000000..2b31aa0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_white_18dp.png
new file mode 100755
index 0000000..bbf7cdb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_white_24dp.png
new file mode 100755
index 0000000..f115320
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_white_36dp.png
new file mode 100755
index 0000000..d3a0355
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_white_48dp.png
new file mode 100755
index 0000000..bc63ba5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_ethernet_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_black_18dp.png
new file mode 100755
index 0000000..9429618
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_black_24dp.png
new file mode 100755
index 0000000..57518b7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_black_36dp.png
new file mode 100755
index 0000000..f112002
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_black_48dp.png
new file mode 100755
index 0000000..53abf65
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_white_18dp.png
new file mode 100755
index 0000000..7c645a9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_white_24dp.png
new file mode 100755
index 0000000..b05eab4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_white_36dp.png
new file mode 100755
index 0000000..14119c8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_white_48dp.png
new file mode 100755
index 0000000..18fc8ee
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_antenna_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_black_18dp.png
new file mode 100755
index 0000000..faa4f34
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_black_24dp.png
new file mode 100755
index 0000000..a573c5b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_black_36dp.png
new file mode 100755
index 0000000..9a8c2ff
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_black_48dp.png
new file mode 100755
index 0000000..55127cb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_white_18dp.png
new file mode 100755
index 0000000..c2e8390
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_white_24dp.png
new file mode 100755
index 0000000..93077b2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_white_36dp.png
new file mode 100755
index 0000000..1e39ed6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_white_48dp.png
new file mode 100755
index 0000000..c75edf5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_component_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_black_18dp.png
new file mode 100755
index 0000000..faa4f34
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_black_24dp.png
new file mode 100755
index 0000000..a573c5b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_black_36dp.png
new file mode 100755
index 0000000..9a8c2ff
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_black_48dp.png
new file mode 100755
index 0000000..55127cb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_white_18dp.png
new file mode 100755
index 0000000..c2e8390
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_white_24dp.png
new file mode 100755
index 0000000..93077b2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_white_36dp.png
new file mode 100755
index 0000000..1e39ed6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_white_48dp.png
new file mode 100755
index 0000000..c75edf5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_composite_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_black_18dp.png
new file mode 100755
index 0000000..f4739d9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_black_24dp.png
new file mode 100755
index 0000000..ae6de28
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_black_36dp.png
new file mode 100755
index 0000000..90502b1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_black_48dp.png
new file mode 100755
index 0000000..bcf302d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_white_18dp.png
new file mode 100755
index 0000000..fa7b398
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_white_24dp.png
new file mode 100755
index 0000000..020da10
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_white_36dp.png
new file mode 100755
index 0000000..c2e6619
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_white_48dp.png
new file mode 100755
index 0000000..060c1c0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_hdmi_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_black_18dp.png
new file mode 100755
index 0000000..039d927
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_black_24dp.png
new file mode 100755
index 0000000..a652d3b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_black_36dp.png
new file mode 100755
index 0000000..1ce6bbe
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_black_48dp.png
new file mode 100755
index 0000000..3e0ab3a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_white_18dp.png
new file mode 100755
index 0000000..4189956
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_white_24dp.png
new file mode 100755
index 0000000..13347db
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_white_36dp.png
new file mode 100755
index 0000000..9d4e237
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_white_48dp.png
new file mode 100755
index 0000000..66ca0b6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_input_svideo_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_black_18dp.png
new file mode 100755
index 0000000..e925aba
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_black_24dp.png
new file mode 100755
index 0000000..735ac14
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_black_36dp.png
new file mode 100755
index 0000000..1fbb164
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_black_48dp.png
new file mode 100755
index 0000000..8bffb9d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_white_18dp.png
new file mode 100755
index 0000000..71e53b2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_white_24dp.png
new file mode 100755
index 0000000..688444c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_white_36dp.png
new file mode 100755
index 0000000..dbe6fc0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_white_48dp.png
new file mode 100755
index 0000000..2babcc7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_overscan_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_black_18dp.png
new file mode 100755
index 0000000..c2b3bc4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_black_24dp.png
new file mode 100755
index 0000000..6a36bcb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_black_36dp.png
new file mode 100755
index 0000000..c99b880
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_black_48dp.png
new file mode 100755
index 0000000..3705015
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_white_18dp.png
new file mode 100755
index 0000000..f1b8895
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_white_24dp.png
new file mode 100755
index 0000000..222ea34
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_white_36dp.png
new file mode 100755
index 0000000..cb48bd8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_white_48dp.png
new file mode 100755
index 0000000..b9b2b54
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_phone_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_black_18dp.png
new file mode 100755
index 0000000..3d6ad59
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_black_24dp.png
new file mode 100755
index 0000000..e85e458
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_black_36dp.png
new file mode 100755
index 0000000..ba0317d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_black_48dp.png
new file mode 100755
index 0000000..8551303
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_white_18dp.png
new file mode 100755
index 0000000..d8c014a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_white_24dp.png
new file mode 100755
index 0000000..0c156b9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_white_36dp.png
new file mode 100755
index 0000000..91229e3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_white_48dp.png
new file mode 100755
index 0000000..62083ff
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_power_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_black_18dp.png
new file mode 100755
index 0000000..72d657b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_black_24dp.png
new file mode 100755
index 0000000..aed5148
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_black_36dp.png
new file mode 100755
index 0000000..aeb718e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_black_48dp.png
new file mode 100755
index 0000000..5871255
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_white_18dp.png
new file mode 100755
index 0000000..7633865
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_white_24dp.png
new file mode 100755
index 0000000..769e502
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_white_36dp.png
new file mode 100755
index 0000000..7e0c80e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_white_48dp.png
new file mode 100755
index 0000000..bd7231e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_remote_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_black_18dp.png
new file mode 100755
index 0000000..65f422a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_black_24dp.png
new file mode 100755
index 0000000..ce67200
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_black_36dp.png
new file mode 100755
index 0000000..421ea16
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_black_48dp.png
new file mode 100755
index 0000000..339817a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_white_18dp.png
new file mode 100755
index 0000000..0bdf913
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_white_24dp.png
new file mode 100755
index 0000000..3644c77
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_white_36dp.png
new file mode 100755
index 0000000..ad49652
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_white_48dp.png
new file mode 100755
index 0000000..cfc13a7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_voice_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_white_18dp.png
new file mode 100755
index 0000000..44e4814
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_white_24dp.png
new file mode 100755
index 0000000..97ded33
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_white_36dp.png
new file mode 100755
index 0000000..64f77e1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_white_48dp.png
new file mode 100755
index 0000000..eabb0a2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_settings_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_black_18dp.png
new file mode 100755
index 0000000..9cc8e98
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_black_24dp.png
new file mode 100755
index 0000000..2524ae0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_black_36dp.png
new file mode 100755
index 0000000..1b6e030
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_black_48dp.png
new file mode 100755
index 0000000..6640bff
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_black_18dp.png
new file mode 100755
index 0000000..c1d75fd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_black_24dp.png
new file mode 100755
index 0000000..609dcf4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_black_36dp.png
new file mode 100755
index 0000000..625a852
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_black_48dp.png
new file mode 100755
index 0000000..10d9bcd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_white_18dp.png
new file mode 100755
index 0000000..208a530
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_white_24dp.png
new file mode 100755
index 0000000..0a207ce
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_white_36dp.png
new file mode 100755
index 0000000..26b8bb4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_white_48dp.png
new file mode 100755
index 0000000..f3033b4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_two_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_white_18dp.png
new file mode 100755
index 0000000..2b39c81
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_white_24dp.png
new file mode 100755
index 0000000..cf0e483
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_white_36dp.png
new file mode 100755
index 0000000..3608cc6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_white_48dp.png
new file mode 100755
index 0000000..8625eae
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shop_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_black_18dp.png
new file mode 100755
index 0000000..1a81293
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_black_24dp.png
new file mode 100755
index 0000000..c5204ca
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_black_36dp.png
new file mode 100755
index 0000000..ae14cc8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_black_48dp.png
new file mode 100755
index 0000000..5594b74
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_white_18dp.png
new file mode 100755
index 0000000..ea3b473
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_white_24dp.png
new file mode 100755
index 0000000..97123d6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_white_36dp.png
new file mode 100755
index 0000000..219604c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_white_48dp.png
new file mode 100755
index 0000000..b34affc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_basket_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_12dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_12dp.png
new file mode 100755
index 0000000..33b5c98
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_12dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_18dp.png
new file mode 100755
index 0000000..b564f73
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_24dp.png
new file mode 100755
index 0000000..c2422ce
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_36dp.png
new file mode 100755
index 0000000..4ce4bb6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_48dp.png
new file mode 100755
index 0000000..f9121f5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_12dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_12dp.png
new file mode 100755
index 0000000..e6b1faf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_12dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_18dp.png
new file mode 100755
index 0000000..db2346c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_24dp.png
new file mode 100755
index 0000000..a68ce43
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_36dp.png
new file mode 100755
index 0000000..5294a72
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_48dp.png
new file mode 100755
index 0000000..bcfb493
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_shopping_cart_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_black_18dp.png
new file mode 100755
index 0000000..6a8cfcb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_black_24dp.png
new file mode 100755
index 0000000..178723b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_black_36dp.png
new file mode 100755
index 0000000..dc30e68
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_black_48dp.png
new file mode 100755
index 0000000..79f2256
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_white_18dp.png
new file mode 100755
index 0000000..b54159c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_white_24dp.png
new file mode 100755
index 0000000..5be5735
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_white_36dp.png
new file mode 100755
index 0000000..3601ad7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_white_48dp.png
new file mode 100755
index 0000000..889f4c0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_speaker_notes_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_black_18dp.png
new file mode 100755
index 0000000..80ad0b2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_black_24dp.png
new file mode 100755
index 0000000..2715fef
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_black_36dp.png
new file mode 100755
index 0000000..c9aab3b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_black_48dp.png
new file mode 100755
index 0000000..0148b37
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_white_18dp.png
new file mode 100755
index 0000000..5efc6a5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_white_24dp.png
new file mode 100755
index 0000000..60f3e43
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_white_36dp.png
new file mode 100755
index 0000000..84bcc2d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_white_48dp.png
new file mode 100755
index 0000000..3a495e6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_spellcheck_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_star_rate_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_star_rate_black_18dp.png
new file mode 100755
index 0000000..cd18bed
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_star_rate_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_star_rate_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_star_rate_white_18dp.png
new file mode 100755
index 0000000..eea30eb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_star_rate_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_black_18dp.png
new file mode 100755
index 0000000..0dd11c7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_black_24dp.png
new file mode 100755
index 0000000..fba3896
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_black_36dp.png
new file mode 100755
index 0000000..ea659af
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_black_48dp.png
new file mode 100755
index 0000000..1777459
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_white_18dp.png
new file mode 100755
index 0000000..fdc5aad
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_white_24dp.png
new file mode 100755
index 0000000..71f0771
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_white_36dp.png
new file mode 100755
index 0000000..d7426b6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_white_48dp.png
new file mode 100755
index 0000000..f83d58b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_stars_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_black_18dp.png
new file mode 100755
index 0000000..f88c809
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_black_24dp.png
new file mode 100755
index 0000000..a45c025
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_black_36dp.png
new file mode 100755
index 0000000..b392148
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_black_48dp.png
new file mode 100755
index 0000000..b0b71df
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_white_18dp.png
new file mode 100755
index 0000000..31450f3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_white_24dp.png
new file mode 100755
index 0000000..790f5f8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_white_36dp.png
new file mode 100755
index 0000000..c8c639f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_white_48dp.png
new file mode 100755
index 0000000..ef7bdf0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_store_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_black_18dp.png
new file mode 100755
index 0000000..385ade2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_black_24dp.png
new file mode 100755
index 0000000..b240335
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_black_36dp.png
new file mode 100755
index 0000000..2a1bcb1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_black_48dp.png
new file mode 100755
index 0000000..e5e2c2b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_white_18dp.png
new file mode 100755
index 0000000..4d4b7f3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_white_24dp.png
new file mode 100755
index 0000000..1c19026
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_white_36dp.png
new file mode 100755
index 0000000..6ae0d04
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_white_48dp.png
new file mode 100755
index 0000000..2713b24
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_subject_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_black_18dp.png
new file mode 100755
index 0000000..d5bcd59
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_black_24dp.png
new file mode 100755
index 0000000..f2cf933
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_black_36dp.png
new file mode 100755
index 0000000..60ed823
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_black_48dp.png
new file mode 100755
index 0000000..3bddbe1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_white_18dp.png
new file mode 100755
index 0000000..599bd8f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_white_24dp.png
new file mode 100755
index 0000000..d693b5c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_white_36dp.png
new file mode 100755
index 0000000..cdbb516
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_white_48dp.png
new file mode 100755
index 0000000..009862b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_supervisor_account_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_black_18dp.png
new file mode 100755
index 0000000..1668ae2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_black_24dp.png
new file mode 100755
index 0000000..7a8e6cd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_black_36dp.png
new file mode 100755
index 0000000..0115727
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_black_48dp.png
new file mode 100755
index 0000000..13fde18
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_white_18dp.png
new file mode 100755
index 0000000..73c4846
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_white_24dp.png
new file mode 100755
index 0000000..675f7e6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_white_36dp.png
new file mode 100755
index 0000000..89562c0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_white_48dp.png
new file mode 100755
index 0000000..bbd6d4e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_horiz_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_black_18dp.png
new file mode 100755
index 0000000..7f97199
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_black_24dp.png
new file mode 100755
index 0000000..b4466c8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_black_36dp.png
new file mode 100755
index 0000000..390349c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_black_48dp.png
new file mode 100755
index 0000000..78e865d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_white_18dp.png
new file mode 100755
index 0000000..1637436
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_white_24dp.png
new file mode 100755
index 0000000..5b6c020
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_white_36dp.png
new file mode 100755
index 0000000..0419d1d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_white_48dp.png
new file mode 100755
index 0000000..33c21c5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vert_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_black_18dp.png
new file mode 100755
index 0000000..d5124a7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_black_24dp.png
new file mode 100755
index 0000000..f4c671e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_black_36dp.png
new file mode 100755
index 0000000..c3287cb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_black_48dp.png
new file mode 100755
index 0000000..a80ca4e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_white_18dp.png
new file mode 100755
index 0000000..75ef42f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_white_24dp.png
new file mode 100755
index 0000000..8c16a89
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_white_36dp.png
new file mode 100755
index 0000000..99278d3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_white_48dp.png
new file mode 100755
index 0000000..39d2a98
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_swap_vertical_circle_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_black_18dp.png
new file mode 100755
index 0000000..d2d3705
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_black_24dp.png
new file mode 100755
index 0000000..c0f8934
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_black_36dp.png
new file mode 100755
index 0000000..64b9735
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_black_48dp.png
new file mode 100755
index 0000000..2929699
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_white_18dp.png
new file mode 100755
index 0000000..47da60e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_white_24dp.png
new file mode 100755
index 0000000..1115372
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_white_36dp.png
new file mode 100755
index 0000000..4542540
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_white_48dp.png
new file mode 100755
index 0000000..ecf489c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_system_update_alt_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_black_18dp.png
new file mode 100755
index 0000000..c6003aa
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_black_24dp.png
new file mode 100755
index 0000000..7161c9e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_black_36dp.png
new file mode 100755
index 0000000..fab0608
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_black_48dp.png
new file mode 100755
index 0000000..d0435fd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_black_18dp.png
new file mode 100755
index 0000000..10bd2ee
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_black_24dp.png
new file mode 100755
index 0000000..4fc558e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_black_36dp.png
new file mode 100755
index 0000000..84ed8e2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_black_48dp.png
new file mode 100755
index 0000000..55a91ff
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_white_18dp.png
new file mode 100755
index 0000000..d6689ed
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_white_24dp.png
new file mode 100755
index 0000000..1eaa0cc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_white_36dp.png
new file mode 100755
index 0000000..9494355
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_white_48dp.png
new file mode 100755
index 0000000..5ab6874
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_unselected_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_white_18dp.png
new file mode 100755
index 0000000..b5a9c14
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_white_24dp.png
new file mode 100755
index 0000000..91d88f9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_white_36dp.png
new file mode 100755
index 0000000..73dbd4b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_white_48dp.png
new file mode 100755
index 0000000..eb7c4f7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_tab_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_black_18dp.png
new file mode 100755
index 0000000..ff387e0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_black_24dp.png
new file mode 100755
index 0000000..d26d615
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_black_36dp.png
new file mode 100755
index 0000000..45c7fda
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_black_48dp.png
new file mode 100755
index 0000000..deda51b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_white_18dp.png
new file mode 100755
index 0000000..64f1f8f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_white_24dp.png
new file mode 100755
index 0000000..fec66da
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_white_36dp.png
new file mode 100755
index 0000000..d0f8b14
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_white_48dp.png
new file mode 100755
index 0000000..c7642b3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_theaters_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_black_18dp.png
new file mode 100755
index 0000000..f208607
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_black_24dp.png
new file mode 100755
index 0000000..c7807e4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_black_36dp.png
new file mode 100755
index 0000000..6ff6d34
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_black_48dp.png
new file mode 100755
index 0000000..37ce6c9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_white_18dp.png
new file mode 100755
index 0000000..20a58c2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_white_24dp.png
new file mode 100755
index 0000000..3be775a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_white_36dp.png
new file mode 100755
index 0000000..ce1b05d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_white_48dp.png
new file mode 100755
index 0000000..a6e0b10
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_down_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_black_18dp.png
new file mode 100755
index 0000000..3469eab
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_black_24dp.png
new file mode 100755
index 0000000..7ffe4fa
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_black_36dp.png
new file mode 100755
index 0000000..81a8088
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_black_48dp.png
new file mode 100755
index 0000000..d7004fe
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_white_18dp.png
new file mode 100755
index 0000000..739d0eb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_white_24dp.png
new file mode 100755
index 0000000..c21a464
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_white_36dp.png
new file mode 100755
index 0000000..0f0fada
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_white_48dp.png
new file mode 100755
index 0000000..cedf001
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumb_up_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_black_18dp.png
new file mode 100755
index 0000000..6c30773
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_black_24dp.png
new file mode 100755
index 0000000..a40ded1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_black_36dp.png
new file mode 100755
index 0000000..a191528
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_black_48dp.png
new file mode 100755
index 0000000..9a2d2ec
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_white_18dp.png
new file mode 100755
index 0000000..db13644
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_white_24dp.png
new file mode 100755
index 0000000..acb0c93
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_white_36dp.png
new file mode 100755
index 0000000..869fa36
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_white_48dp.png
new file mode 100755
index 0000000..d8a5194
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_thumbs_up_down_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_black_18dp.png
new file mode 100755
index 0000000..6fcece6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_black_24dp.png
new file mode 100755
index 0000000..555aef0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_black_36dp.png
new file mode 100755
index 0000000..ba33a35
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_black_48dp.png
new file mode 100755
index 0000000..d622246
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_white_18dp.png
new file mode 100755
index 0000000..11c3a03
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_white_24dp.png
new file mode 100755
index 0000000..70dc58a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_white_36dp.png
new file mode 100755
index 0000000..c23816a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_white_48dp.png
new file mode 100755
index 0000000..2060f14
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_timeline_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_black_18dp.png
new file mode 100755
index 0000000..afbe422
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_black_24dp.png
new file mode 100755
index 0000000..4fb2e43
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_black_36dp.png
new file mode 100755
index 0000000..8542d91
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_black_48dp.png
new file mode 100755
index 0000000..524a999
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_white_18dp.png
new file mode 100755
index 0000000..892263f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_white_24dp.png
new file mode 100755
index 0000000..bb3adfa
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_white_36dp.png
new file mode 100755
index 0000000..e40a3d0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_white_48dp.png
new file mode 100755
index 0000000..108a026
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toc_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_black_18dp.png
new file mode 100755
index 0000000..bcd6e40
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_black_24dp.png
new file mode 100755
index 0000000..03680a7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_black_36dp.png
new file mode 100755
index 0000000..896be78
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_black_48dp.png
new file mode 100755
index 0000000..229f044
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_white_18dp.png
new file mode 100755
index 0000000..bfa7523
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_white_24dp.png
new file mode 100755
index 0000000..73a5f63
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_white_36dp.png
new file mode 100755
index 0000000..ab2f61a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_white_48dp.png
new file mode 100755
index 0000000..d5175f0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_today_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_black_18dp.png
new file mode 100755
index 0000000..db5d183
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_black_24dp.png
new file mode 100755
index 0000000..3a6a9cf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_black_36dp.png
new file mode 100755
index 0000000..a4923b5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_black_48dp.png
new file mode 100755
index 0000000..b5796eb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_white_18dp.png
new file mode 100755
index 0000000..03e1026
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_white_24dp.png
new file mode 100755
index 0000000..bcd8740
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_white_36dp.png
new file mode 100755
index 0000000..f70cf47
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_white_48dp.png
new file mode 100755
index 0000000..361e348
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_toll_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_black_18dp.png
new file mode 100755
index 0000000..fa566e7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_black_24dp.png
new file mode 100755
index 0000000..2fd645d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_black_36dp.png
new file mode 100755
index 0000000..5b880b9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_black_48dp.png
new file mode 100755
index 0000000..850daa3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_white_18dp.png
new file mode 100755
index 0000000..dac799e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_white_24dp.png
new file mode 100755
index 0000000..46f4116
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_white_36dp.png
new file mode 100755
index 0000000..008e8c3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_white_48dp.png
new file mode 100755
index 0000000..4e338c0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_touch_app_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_black_18dp.png
new file mode 100755
index 0000000..88a6794
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_black_24dp.png
new file mode 100755
index 0000000..647811f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_black_36dp.png
new file mode 100755
index 0000000..6d1e941
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_black_48dp.png
new file mode 100755
index 0000000..aa867cd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_white_18dp.png
new file mode 100755
index 0000000..2b92da4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_white_24dp.png
new file mode 100755
index 0000000..282bbf0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_white_36dp.png
new file mode 100755
index 0000000..18d121f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_white_48dp.png
new file mode 100755
index 0000000..a57ebef
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_track_changes_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_black_18dp.png
new file mode 100755
index 0000000..f77609e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_black_24dp.png
new file mode 100755
index 0000000..c899ddb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_black_36dp.png
new file mode 100755
index 0000000..db049a1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_black_48dp.png
new file mode 100755
index 0000000..d177512
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_white_18dp.png
new file mode 100755
index 0000000..8140ce5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_white_24dp.png
new file mode 100755
index 0000000..f25bbef
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_white_36dp.png
new file mode 100755
index 0000000..7a30f12
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_white_48dp.png
new file mode 100755
index 0000000..a876c4f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_translate_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_16dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_16dp.png
new file mode 100755
index 0000000..4003a78
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_18dp.png
new file mode 100755
index 0000000..aef0335
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_24dp.png
new file mode 100755
index 0000000..d3095d4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_36dp.png
new file mode 100755
index 0000000..630208d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_48dp.png
new file mode 100755
index 0000000..b8dd066
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_16dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_16dp.png
new file mode 100755
index 0000000..8c142a8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_18dp.png
new file mode 100755
index 0000000..7c39ff3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_24dp.png
new file mode 100755
index 0000000..17279c6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_36dp.png
new file mode 100755
index 0000000..f2b1689
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_48dp.png
new file mode 100755
index 0000000..11e5f91
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_down_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_16dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_16dp.png
new file mode 100755
index 0000000..d1ec9e0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_18dp.png
new file mode 100755
index 0000000..cca8448
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_24dp.png
new file mode 100755
index 0000000..c3a3b4b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_36dp.png
new file mode 100755
index 0000000..ab9b15c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_48dp.png
new file mode 100755
index 0000000..98e5b9e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_16dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_16dp.png
new file mode 100755
index 0000000..bbd7885
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_18dp.png
new file mode 100755
index 0000000..00d3c89
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_24dp.png
new file mode 100755
index 0000000..ea5d1e1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_36dp.png
new file mode 100755
index 0000000..d9a840d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_48dp.png
new file mode 100755
index 0000000..28ede2e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_flat_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_16dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_16dp.png
new file mode 100755
index 0000000..6a23171
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_18dp.png
new file mode 100755
index 0000000..8404c60
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_24dp.png
new file mode 100755
index 0000000..f83b763
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_36dp.png
new file mode 100755
index 0000000..ce0636d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_48dp.png
new file mode 100755
index 0000000..282f55c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_16dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_16dp.png
new file mode 100755
index 0000000..fb04031
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_18dp.png
new file mode 100755
index 0000000..0242213
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_24dp.png
new file mode 100755
index 0000000..a9864a8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_36dp.png
new file mode 100755
index 0000000..21bbe09
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_48dp.png
new file mode 100755
index 0000000..7811952
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_trending_up_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_black_18dp.png
new file mode 100755
index 0000000..0a06dff
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_black_24dp.png
new file mode 100755
index 0000000..7ad39da
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_black_36dp.png
new file mode 100755
index 0000000..cc7c3a0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_black_48dp.png
new file mode 100755
index 0000000..2189be3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_black_18dp.png
new file mode 100755
index 0000000..6109555
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_black_24dp.png
new file mode 100755
index 0000000..859d8f7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_black_36dp.png
new file mode 100755
index 0000000..3ff1691
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_black_48dp.png
new file mode 100755
index 0000000..5fb650e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_white_18dp.png
new file mode 100755
index 0000000..9ead070
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_white_24dp.png
new file mode 100755
index 0000000..8b0c16c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_white_36dp.png
new file mode 100755
index 0000000..e6c2470
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_white_48dp.png
new file mode 100755
index 0000000..6ed27a2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_not_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_white_18dp.png
new file mode 100755
index 0000000..c5d0178
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_white_24dp.png
new file mode 100755
index 0000000..9de15c5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_white_36dp.png
new file mode 100755
index 0000000..fc7d87b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_white_48dp.png
new file mode 100755
index 0000000..3faff90
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_turned_in_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_black_18dp.png
new file mode 100755
index 0000000..5b8aba4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_black_24dp.png
new file mode 100755
index 0000000..94673b7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_black_36dp.png
new file mode 100755
index 0000000..c3d0ac1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_black_48dp.png
new file mode 100755
index 0000000..717b8a8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_white_18dp.png
new file mode 100755
index 0000000..aa4f6c0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_white_24dp.png
new file mode 100755
index 0000000..4cba0cd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_white_36dp.png
new file mode 100755
index 0000000..da01b4d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_white_48dp.png
new file mode 100755
index 0000000..e537501
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_update_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_12dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_12dp.png
new file mode 100755
index 0000000..5152aa0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_12dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_18dp.png
new file mode 100755
index 0000000..48e38bf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_24dp.png
new file mode 100755
index 0000000..8ebb6db
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_36dp.png
new file mode 100755
index 0000000..1244f93
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_48dp.png
new file mode 100755
index 0000000..70a9fc1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_12dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_12dp.png
new file mode 100755
index 0000000..ee6068a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_12dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_18dp.png
new file mode 100755
index 0000000..1e252c0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_24dp.png
new file mode 100755
index 0000000..3e3792f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_36dp.png
new file mode 100755
index 0000000..ea938a6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_48dp.png
new file mode 100755
index 0000000..ec35ec7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_verified_user_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_black_18dp.png
new file mode 100755
index 0000000..677b760
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_black_24dp.png
new file mode 100755
index 0000000..eaf81ac
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_black_36dp.png
new file mode 100755
index 0000000..fca6de5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_black_48dp.png
new file mode 100755
index 0000000..81ef86b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_white_18dp.png
new file mode 100755
index 0000000..70ab62d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_white_24dp.png
new file mode 100755
index 0000000..bb771c0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_white_36dp.png
new file mode 100755
index 0000000..66d2b0d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_white_48dp.png
new file mode 100755
index 0000000..96b89fb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_agenda_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_black_18dp.png
new file mode 100755
index 0000000..df04fc3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_black_24dp.png
new file mode 100755
index 0000000..e0a796a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_black_36dp.png
new file mode 100755
index 0000000..5924730
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_black_48dp.png
new file mode 100755
index 0000000..4013de4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_white_18dp.png
new file mode 100755
index 0000000..a1b7bd5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_white_24dp.png
new file mode 100755
index 0000000..61f280f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_white_36dp.png
new file mode 100755
index 0000000..291e4fd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_white_48dp.png
new file mode 100755
index 0000000..77d5f02
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_array_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_black_18dp.png
new file mode 100755
index 0000000..851db0e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_black_24dp.png
new file mode 100755
index 0000000..6f47bd0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_black_36dp.png
new file mode 100755
index 0000000..867f782
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_black_48dp.png
new file mode 100755
index 0000000..b037536
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_white_18dp.png
new file mode 100755
index 0000000..dd89dc5
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_white_24dp.png
new file mode 100755
index 0000000..cc1af9b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_white_36dp.png
new file mode 100755
index 0000000..2dc1e73
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_white_48dp.png
new file mode 100755
index 0000000..e1472af
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_carousel_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_black_18dp.png
new file mode 100755
index 0000000..509457f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_black_24dp.png
new file mode 100755
index 0000000..cdb22b2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_black_36dp.png
new file mode 100755
index 0000000..14097b0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_black_48dp.png
new file mode 100755
index 0000000..ddfcaa2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_white_18dp.png
new file mode 100755
index 0000000..632b0bd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_white_24dp.png
new file mode 100755
index 0000000..91447ff
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_white_36dp.png
new file mode 100755
index 0000000..8712518
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_white_48dp.png
new file mode 100755
index 0000000..c9f3c1b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_column_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_black_18dp.png
new file mode 100755
index 0000000..8398ee2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_black_24dp.png
new file mode 100755
index 0000000..4d11dfb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_black_36dp.png
new file mode 100755
index 0000000..eab1844
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_black_48dp.png
new file mode 100755
index 0000000..716d952
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_white_18dp.png
new file mode 100755
index 0000000..ff8b257
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_white_24dp.png
new file mode 100755
index 0000000..89fe418
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_white_36dp.png
new file mode 100755
index 0000000..7bbed00
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_white_48dp.png
new file mode 100755
index 0000000..197dbd6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_day_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_black_18dp.png
new file mode 100755
index 0000000..32868b1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_black_24dp.png
new file mode 100755
index 0000000..1a22e31
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_black_36dp.png
new file mode 100755
index 0000000..8f1d99f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_black_48dp.png
new file mode 100755
index 0000000..1603195
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_white_18dp.png
new file mode 100755
index 0000000..648938d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_white_24dp.png
new file mode 100755
index 0000000..9ffaf18
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_white_36dp.png
new file mode 100755
index 0000000..3135b40
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_white_48dp.png
new file mode 100755
index 0000000..34df9db
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_headline_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_black_18dp.png
new file mode 100755
index 0000000..6fb61a0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_black_24dp.png
new file mode 100755
index 0000000..c15537a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_black_36dp.png
new file mode 100755
index 0000000..ae702bb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_black_48dp.png
new file mode 100755
index 0000000..b9483c3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_white_18dp.png
new file mode 100755
index 0000000..af9f1fe
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_white_24dp.png
new file mode 100755
index 0000000..64ad8e1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_white_36dp.png
new file mode 100755
index 0000000..313c43f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_white_48dp.png
new file mode 100755
index 0000000..f0a2bbc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_list_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_black_18dp.png
new file mode 100755
index 0000000..c6c3407
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_black_24dp.png
new file mode 100755
index 0000000..7e15a8c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_black_36dp.png
new file mode 100755
index 0000000..36c622b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_black_48dp.png
new file mode 100755
index 0000000..7560f62
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_white_18dp.png
new file mode 100755
index 0000000..0593baa
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_white_24dp.png
new file mode 100755
index 0000000..7982e38
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_white_36dp.png
new file mode 100755
index 0000000..d8a2555
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_white_48dp.png
new file mode 100755
index 0000000..7cfded9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_module_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_black_18dp.png
new file mode 100755
index 0000000..46eb995
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_black_24dp.png
new file mode 100755
index 0000000..18c3c38
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_black_36dp.png
new file mode 100755
index 0000000..16bad02
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_black_48dp.png
new file mode 100755
index 0000000..15e217f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_white_18dp.png
new file mode 100755
index 0000000..f6814b7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_white_24dp.png
new file mode 100755
index 0000000..9952220
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_white_36dp.png
new file mode 100755
index 0000000..8e591c0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_white_48dp.png
new file mode 100755
index 0000000..1ce06ae
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_quilt_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_black_18dp.png
new file mode 100755
index 0000000..9f904f9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_black_24dp.png
new file mode 100755
index 0000000..72e2d40
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_black_36dp.png
new file mode 100755
index 0000000..d1081da
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_black_48dp.png
new file mode 100755
index 0000000..fe50f64
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_white_18dp.png
new file mode 100755
index 0000000..200723a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_white_24dp.png
new file mode 100755
index 0000000..857becf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_white_36dp.png
new file mode 100755
index 0000000..c84ab66
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_white_48dp.png
new file mode 100755
index 0000000..b865619
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_stream_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_black_18dp.png
new file mode 100755
index 0000000..21bf26b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_black_24dp.png
new file mode 100755
index 0000000..a4641b1
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_black_36dp.png
new file mode 100755
index 0000000..a6507da
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_black_48dp.png
new file mode 100755
index 0000000..3fd4402
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_white_18dp.png
new file mode 100755
index 0000000..7a2e600
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_white_24dp.png
new file mode 100755
index 0000000..e6ea240
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_white_36dp.png
new file mode 100755
index 0000000..7c16e68
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_white_48dp.png
new file mode 100755
index 0000000..5379f3b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_view_week_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_black_18dp.png
new file mode 100755
index 0000000..debb2b3
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_black_24dp.png
new file mode 100755
index 0000000..329e617
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_black_36dp.png
new file mode 100755
index 0000000..2e54e32
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_black_48dp.png
new file mode 100755
index 0000000..c816ab4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_black_18dp.png
new file mode 100755
index 0000000..4d54f57
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_black_24dp.png
new file mode 100755
index 0000000..b21a686
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_black_36dp.png
new file mode 100755
index 0000000..48a4f8d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_black_48dp.png
new file mode 100755
index 0000000..13eb65d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_white_18dp.png
new file mode 100755
index 0000000..5c88930
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_white_24dp.png
new file mode 100755
index 0000000..06f4e33
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_white_36dp.png
new file mode 100755
index 0000000..97b5f96
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_white_48dp.png
new file mode 100755
index 0000000..6fc6300
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_off_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_white_18dp.png
new file mode 100755
index 0000000..c6ddc9e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_white_24dp.png
new file mode 100755
index 0000000..81f3c34
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_white_36dp.png
new file mode 100755
index 0000000..2891977
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_white_48dp.png
new file mode 100755
index 0000000..8d098fd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_visibility_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_black_18dp.png
new file mode 100755
index 0000000..c910f75
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_black_24dp.png
new file mode 100755
index 0000000..c643539
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_black_36dp.png
new file mode 100755
index 0000000..3b41d99
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_black_48dp.png
new file mode 100755
index 0000000..bfb296d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_white_18dp.png
new file mode 100755
index 0000000..b8c9ea2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_white_24dp.png
new file mode 100755
index 0000000..58a5fe4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_white_36dp.png
new file mode 100755
index 0000000..0a8a5fc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_white_48dp.png
new file mode 100755
index 0000000..993f242
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_watch_later_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_black_18dp.png
new file mode 100755
index 0000000..e074224
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_black_24dp.png
new file mode 100755
index 0000000..2474d61
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_black_36dp.png
new file mode 100755
index 0000000..1a8b0ab
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_black_48dp.png
new file mode 100755
index 0000000..7ec76ee
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_white_18dp.png
new file mode 100755
index 0000000..ea42959
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_white_24dp.png
new file mode 100755
index 0000000..87c5a05
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_white_36dp.png
new file mode 100755
index 0000000..7b04f65
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_white_48dp.png
new file mode 100755
index 0000000..af82415
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_work_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_black_18dp.png
new file mode 100755
index 0000000..d5eabb6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_black_24dp.png
new file mode 100755
index 0000000..75553a8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_black_36dp.png
new file mode 100755
index 0000000..7706d8d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_black_48dp.png
new file mode 100755
index 0000000..3ac933a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_white_18dp.png
new file mode 100755
index 0000000..6024162
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_white_24dp.png
new file mode 100755
index 0000000..9628bd9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_white_36dp.png
new file mode 100755
index 0000000..3bdea29
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_white_48dp.png
new file mode 100755
index 0000000..1d4cd80
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_youtube_searched_for_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_black_18dp.png
new file mode 100755
index 0000000..78f7bbf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_black_24dp.png
new file mode 100755
index 0000000..bed9c9c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_black_36dp.png
new file mode 100755
index 0000000..92a3ff6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_black_48dp.png
new file mode 100755
index 0000000..a08728a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_white_18dp.png
new file mode 100755
index 0000000..7960eb8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_white_24dp.png
new file mode 100755
index 0000000..6373294
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_white_36dp.png
new file mode 100755
index 0000000..da59f94
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_white_48dp.png
new file mode 100755
index 0000000..30b8470
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_in_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_black_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_black_18dp.png
new file mode 100755
index 0000000..269fa8c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_black_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_black_24dp.png
new file mode 100755
index 0000000..b05b9ee
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_black_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_black_36dp.png
new file mode 100755
index 0000000..e252fce
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_black_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_black_48dp.png
new file mode 100755
index 0000000..4dd6074
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_white_18dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_white_18dp.png
new file mode 100755
index 0000000..5b5ecdd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_white_24dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_white_24dp.png
new file mode 100755
index 0000000..7772cee
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_white_36dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_white_36dp.png
new file mode 100755
index 0000000..ea4b18c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_white_48dp.png b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_white_48dp.png
new file mode 100755
index 0000000..68aaec6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/drawable-hdpi/ic_zoom_out_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_add_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_add_black_18dp.png
new file mode 100644
index 0000000..7f7d1bf
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_add_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_add_black_24dp.png b/app/src/main/res/drawable-hdpi/ic_add_black_24dp.png
new file mode 100644
index 0000000..c04b523
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_add_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_add_box_white_18dp.png b/app/src/main/res/drawable-hdpi/ic_add_box_white_18dp.png
new file mode 100644
index 0000000..549c4b2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_add_box_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_add_box_white_24dp.png b/app/src/main/res/drawable-hdpi/ic_add_box_white_24dp.png
new file mode 100644
index 0000000..0a1a3d8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_add_box_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_arrow_back_white_36dp.png b/app/src/main/res/drawable-hdpi/ic_arrow_back_white_36dp.png
new file mode 100644
index 0000000..d7c053f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_arrow_back_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_arrow_forward_white_36dp.png b/app/src/main/res/drawable-hdpi/ic_arrow_forward_white_36dp.png
new file mode 100644
index 0000000..7dd23b7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_arrow_forward_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_clear_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_clear_black_18dp.png
new file mode 100644
index 0000000..a86fc10
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_clear_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_clear_black_24dp.png b/app/src/main/res/drawable-hdpi/ic_clear_black_24dp.png
new file mode 100644
index 0000000..1a9cd75
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_clear_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_comment_black_16dp.png b/app/src/main/res/drawable-hdpi/ic_comment_black_16dp.png
new file mode 100755
index 0000000..00d6902
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_comment_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_comment_white_16dp.png b/app/src/main/res/drawable-hdpi/ic_comment_white_16dp.png
new file mode 100755
index 0000000..fec900b
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_comment_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_content_paste_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_content_paste_black_18dp.png
new file mode 100755
index 0000000..f1e89b4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_content_paste_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_content_paste_black_24dp.png b/app/src/main/res/drawable-hdpi/ic_content_paste_black_24dp.png
new file mode 100755
index 0000000..300171d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_content_paste_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_create_black_24dp.png b/app/src/main/res/drawable-hdpi/ic_create_black_24dp.png
new file mode 100644
index 0000000..b900af0
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_create_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_done_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_done_black_18dp.png
new file mode 100755
index 0000000..8d867ac
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_done_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_exposure_neg_1_white_48dp.png b/app/src/main/res/drawable-hdpi/ic_exposure_neg_1_white_48dp.png
new file mode 100644
index 0000000..e60fcda
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_exposure_neg_1_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_exposure_neg_2_white_48dp.png b/app/src/main/res/drawable-hdpi/ic_exposure_neg_2_white_48dp.png
new file mode 100644
index 0000000..54bb5ad
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_exposure_neg_2_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_exposure_plus_1_white_48dp.png b/app/src/main/res/drawable-hdpi/ic_exposure_plus_1_white_48dp.png
new file mode 100644
index 0000000..ece9472
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_exposure_plus_1_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_exposure_plus_2_white_48dp.png b/app/src/main/res/drawable-hdpi/ic_exposure_plus_2_white_48dp.png
new file mode 100644
index 0000000..760043e
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_exposure_plus_2_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_face_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_face_black_18dp.png
new file mode 100755
index 0000000..755d08a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_face_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_fast_forward_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_fast_forward_black_18dp.png
new file mode 100755
index 0000000..c7ecdd8
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_fast_forward_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_fast_forward_black_48dp.png b/app/src/main/res/drawable-hdpi/ic_fast_forward_black_48dp.png
new file mode 100755
index 0000000..abd5453
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_fast_forward_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_fast_forward_white_18dp.png b/app/src/main/res/drawable-hdpi/ic_fast_forward_white_18dp.png
new file mode 100755
index 0000000..9aa53c4
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_fast_forward_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_fast_forward_white_48dp.png b/app/src/main/res/drawable-hdpi/ic_fast_forward_white_48dp.png
new file mode 100755
index 0000000..ad9097d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_fast_forward_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_feedback_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_feedback_black_18dp.png
new file mode 100644
index 0000000..a2d6864
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_feedback_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_feedback_black_48dp.png b/app/src/main/res/drawable-hdpi/ic_feedback_black_48dp.png
new file mode 100644
index 0000000..e68ceb9
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_feedback_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_feedback_white_18dp.png b/app/src/main/res/drawable-hdpi/ic_feedback_white_18dp.png
new file mode 100644
index 0000000..fd207fc
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_feedback_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_info_black_24dp.png b/app/src/main/res/drawable-hdpi/ic_info_black_24dp.png
new file mode 100644
index 0000000..da56077
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_info_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_down_white_36dp.png b/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_down_white_36dp.png
new file mode 100644
index 0000000..03120d7
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_down_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_right_white_36dp.png b/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_right_white_36dp.png
new file mode 100644
index 0000000..00e3b1a
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_right_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_up_white_36dp.png b/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_up_white_36dp.png
new file mode 100644
index 0000000..ddd0078
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_up_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_menu_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_menu_black_18dp.png
new file mode 100644
index 0000000..653c61c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_menu_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_menu_white_18dp.png b/app/src/main/res/drawable-hdpi/ic_menu_white_18dp.png
new file mode 100644
index 0000000..775fa19
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_menu_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_notifications_black_24dp.png b/app/src/main/res/drawable-hdpi/ic_notifications_black_24dp.png
new file mode 100644
index 0000000..e200012
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_notifications_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_person_add_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_person_add_black_18dp.png
new file mode 100755
index 0000000..657415d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_person_add_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_person_add_white_18dp.png b/app/src/main/res/drawable-hdpi/ic_person_add_white_18dp.png
new file mode 100755
index 0000000..e65c625
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_person_add_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_person_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_person_black_18dp.png
new file mode 100755
index 0000000..c19e355
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_person_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_restore_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_restore_black_18dp.png
new file mode 100755
index 0000000..283a49f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_restore_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_restore_white_18dp.png b/app/src/main/res/drawable-hdpi/ic_restore_white_18dp.png
new file mode 100755
index 0000000..a2aee81
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_restore_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_search_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_search_black_18dp.png
new file mode 100644
index 0000000..9aae8b6
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_search_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_sentiment_dissatisfied_white_48dp.png b/app/src/main/res/drawable-hdpi/ic_sentiment_dissatisfied_white_48dp.png
new file mode 100644
index 0000000..227a647
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_sentiment_dissatisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_sentiment_neutral_white_48dp.png b/app/src/main/res/drawable-hdpi/ic_sentiment_neutral_white_48dp.png
new file mode 100644
index 0000000..c4cc82c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_sentiment_neutral_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_sentiment_satisfied_white_48dp.png b/app/src/main/res/drawable-hdpi/ic_sentiment_satisfied_white_48dp.png
new file mode 100644
index 0000000..3f8ecd2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_sentiment_satisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_sentiment_very_dissatisfied_white_48dp.png b/app/src/main/res/drawable-hdpi/ic_sentiment_very_dissatisfied_white_48dp.png
new file mode 100644
index 0000000..fd09ed2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_sentiment_very_dissatisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_sentiment_very_satisfied_white_48dp.png b/app/src/main/res/drawable-hdpi/ic_sentiment_very_satisfied_white_48dp.png
new file mode 100644
index 0000000..2b5296f
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_sentiment_very_satisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_settings_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_settings_black_18dp.png
new file mode 100755
index 0000000..6eb1bdb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_settings_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_settings_white_18dp.png b/app/src/main/res/drawable-hdpi/ic_settings_white_18dp.png
new file mode 100755
index 0000000..44e4814
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_settings_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_star_black_16dp.png b/app/src/main/res/drawable-hdpi/ic_star_black_16dp.png
new file mode 100755
index 0000000..a728afe
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_star_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_star_black_48dp.png b/app/src/main/res/drawable-hdpi/ic_star_black_48dp.png
new file mode 100755
index 0000000..54d3065
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_star_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_star_white_16dp.png b/app/src/main/res/drawable-hdpi/ic_star_white_16dp.png
new file mode 100755
index 0000000..d2cbe4c
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_star_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_sync_black_24dp.png b/app/src/main/res/drawable-hdpi/ic_sync_black_24dp.png
new file mode 100644
index 0000000..a5ebdbd
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_sync_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_thumb_down_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_thumb_down_black_18dp.png
new file mode 100755
index 0000000..f208607
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_thumb_down_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_thumb_down_white_18dp.png b/app/src/main/res/drawable-hdpi/ic_thumb_down_white_18dp.png
new file mode 100755
index 0000000..20a58c2
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_thumb_down_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_thumb_up_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_thumb_up_black_18dp.png
new file mode 100755
index 0000000..3469eab
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_thumb_up_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_thumb_up_white_18dp.png b/app/src/main/res/drawable-hdpi/ic_thumb_up_white_18dp.png
new file mode 100755
index 0000000..739d0eb
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_thumb_up_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_visibility_off_black_18dp.png b/app/src/main/res/drawable-hdpi/ic_visibility_off_black_18dp.png
new file mode 100755
index 0000000..4d54f57
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_visibility_off_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_visibility_off_black_48dp.png b/app/src/main/res/drawable-hdpi/ic_visibility_off_black_48dp.png
new file mode 100755
index 0000000..13eb65d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_visibility_off_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_visibility_off_white_18dp.png b/app/src/main/res/drawable-hdpi/ic_visibility_off_white_18dp.png
new file mode 100755
index 0000000..5c88930
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_visibility_off_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/ic_visibility_off_white_48dp.png b/app/src/main/res/drawable-hdpi/ic_visibility_off_white_48dp.png
new file mode 100755
index 0000000..6fc6300
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/ic_visibility_off_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-hdpi/review_it.png b/app/src/main/res/drawable-hdpi/review_it.png
new file mode 100644
index 0000000..c71dd9d
--- /dev/null
+++ b/app/src/main/res/drawable-hdpi/review_it.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_add_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_add_black_18dp.png
new file mode 100755
index 0000000..84a1e05
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_add_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_add_black_24dp.png b/app/src/main/res/drawable-mdpi/ic_add_black_24dp.png
new file mode 100755
index 0000000..23bf119
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_add_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_add_box_white_18dp.png b/app/src/main/res/drawable-mdpi/ic_add_box_white_18dp.png
new file mode 100755
index 0000000..cda3b53
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_add_box_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_add_box_white_24dp.png b/app/src/main/res/drawable-mdpi/ic_add_box_white_24dp.png
new file mode 100755
index 0000000..e182390
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_add_box_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_arrow_back_white_36dp.png b/app/src/main/res/drawable-mdpi/ic_arrow_back_white_36dp.png
new file mode 100644
index 0000000..cd19726
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_arrow_back_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_arrow_forward_white_36dp.png b/app/src/main/res/drawable-mdpi/ic_arrow_forward_white_36dp.png
new file mode 100644
index 0000000..b8c16a3
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_arrow_forward_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_clear_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_clear_black_18dp.png
new file mode 100755
index 0000000..5715b64
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_clear_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_clear_black_24dp.png b/app/src/main/res/drawable-mdpi/ic_clear_black_24dp.png
new file mode 100755
index 0000000..40a1a84
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_clear_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_comment_black_16dp.png b/app/src/main/res/drawable-mdpi/ic_comment_black_16dp.png
new file mode 100755
index 0000000..4cfe38e
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_comment_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_comment_white_16dp.png b/app/src/main/res/drawable-mdpi/ic_comment_white_16dp.png
new file mode 100755
index 0000000..1f72cce
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_comment_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_content_paste_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_content_paste_black_18dp.png
new file mode 100755
index 0000000..dc221ce
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_content_paste_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_content_paste_black_24dp.png b/app/src/main/res/drawable-mdpi/ic_content_paste_black_24dp.png
new file mode 100755
index 0000000..c472d23
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_content_paste_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_create_black_24dp.png b/app/src/main/res/drawable-mdpi/ic_create_black_24dp.png
new file mode 100755
index 0000000..9efbaae
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_create_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_done_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_done_black_18dp.png
new file mode 100755
index 0000000..b7ed067
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_done_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_exposure_neg_1_white_48dp.png b/app/src/main/res/drawable-mdpi/ic_exposure_neg_1_white_48dp.png
new file mode 100644
index 0000000..87d8c96
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_exposure_neg_1_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_exposure_neg_2_white_48dp.png b/app/src/main/res/drawable-mdpi/ic_exposure_neg_2_white_48dp.png
new file mode 100644
index 0000000..3d3ed18
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_exposure_neg_2_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_exposure_plus_1_white_48dp.png b/app/src/main/res/drawable-mdpi/ic_exposure_plus_1_white_48dp.png
new file mode 100644
index 0000000..0444746
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_exposure_plus_1_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_exposure_plus_2_white_48dp.png b/app/src/main/res/drawable-mdpi/ic_exposure_plus_2_white_48dp.png
new file mode 100644
index 0000000..b1f76c8
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_exposure_plus_2_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_face_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_face_black_18dp.png
new file mode 100755
index 0000000..16030c4
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_face_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_fast_forward_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_fast_forward_black_18dp.png
new file mode 100755
index 0000000..dea9ada
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_fast_forward_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_fast_forward_black_48dp.png b/app/src/main/res/drawable-mdpi/ic_fast_forward_black_48dp.png
new file mode 100755
index 0000000..6f26faa
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_fast_forward_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_fast_forward_white_18dp.png b/app/src/main/res/drawable-mdpi/ic_fast_forward_white_18dp.png
new file mode 100755
index 0000000..5ecf98d
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_fast_forward_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_fast_forward_white_48dp.png b/app/src/main/res/drawable-mdpi/ic_fast_forward_white_48dp.png
new file mode 100755
index 0000000..ec53881
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_fast_forward_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_feedback_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_feedback_black_18dp.png
new file mode 100644
index 0000000..7cc1ac2
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_feedback_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_feedback_black_48dp.png b/app/src/main/res/drawable-mdpi/ic_feedback_black_48dp.png
new file mode 100644
index 0000000..63bec23
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_feedback_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_feedback_white_18dp.png b/app/src/main/res/drawable-mdpi/ic_feedback_white_18dp.png
new file mode 100644
index 0000000..6d8d8fb
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_feedback_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_info_black_24dp.png b/app/src/main/res/drawable-mdpi/ic_info_black_24dp.png
new file mode 100644
index 0000000..5ef3dc0
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_info_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_down_white_36dp.png b/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_down_white_36dp.png
new file mode 100644
index 0000000..bbb4fb4
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_down_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_right_white_36dp.png b/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_right_white_36dp.png
new file mode 100644
index 0000000..b14e8bb
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_right_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_up_white_36dp.png b/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_up_white_36dp.png
new file mode 100644
index 0000000..dea8988
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_up_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_menu_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_menu_black_18dp.png
new file mode 100755
index 0000000..d1c3466
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_menu_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_menu_white_18dp.png b/app/src/main/res/drawable-mdpi/ic_menu_white_18dp.png
new file mode 100755
index 0000000..bdeecd4
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_menu_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_notifications_black_24dp.png b/app/src/main/res/drawable-mdpi/ic_notifications_black_24dp.png
new file mode 100644
index 0000000..b36475d
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_notifications_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_person_add_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_person_add_black_18dp.png
new file mode 100755
index 0000000..4c494f9
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_person_add_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_person_add_white_18dp.png b/app/src/main/res/drawable-mdpi/ic_person_add_white_18dp.png
new file mode 100755
index 0000000..e426016
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_person_add_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_person_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_person_black_18dp.png
new file mode 100755
index 0000000..599e87b
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_person_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_refresh_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_refresh_black_18dp.png
new file mode 100755
index 0000000..a4fac07
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_refresh_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_refresh_black_48dp.png b/app/src/main/res/drawable-mdpi/ic_refresh_black_48dp.png
new file mode 100755
index 0000000..0b73128
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_refresh_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_refresh_white_18dp.png b/app/src/main/res/drawable-mdpi/ic_refresh_white_18dp.png
new file mode 100755
index 0000000..c968899
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_refresh_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_refresh_white_48dp.png b/app/src/main/res/drawable-mdpi/ic_refresh_white_48dp.png
new file mode 100755
index 0000000..1989184
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_refresh_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_restore_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_restore_black_18dp.png
new file mode 100755
index 0000000..e400971
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_restore_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_restore_white_18dp.png b/app/src/main/res/drawable-mdpi/ic_restore_white_18dp.png
new file mode 100755
index 0000000..76a4644
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_restore_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_search_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_search_black_18dp.png
new file mode 100644
index 0000000..f0d4e97
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_search_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_sentiment_dissatisfied_white_48dp.png b/app/src/main/res/drawable-mdpi/ic_sentiment_dissatisfied_white_48dp.png
new file mode 100644
index 0000000..84afc02
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_sentiment_dissatisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_sentiment_neutral_white_48dp.png b/app/src/main/res/drawable-mdpi/ic_sentiment_neutral_white_48dp.png
new file mode 100644
index 0000000..a711dae
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_sentiment_neutral_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_sentiment_satisfied_white_48dp.png b/app/src/main/res/drawable-mdpi/ic_sentiment_satisfied_white_48dp.png
new file mode 100644
index 0000000..19dbccd
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_sentiment_satisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_sentiment_very_dissatisfied_white_48dp.png b/app/src/main/res/drawable-mdpi/ic_sentiment_very_dissatisfied_white_48dp.png
new file mode 100644
index 0000000..2f6e1fb
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_sentiment_very_dissatisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_sentiment_very_satisfied_white_48dp.png b/app/src/main/res/drawable-mdpi/ic_sentiment_very_satisfied_white_48dp.png
new file mode 100644
index 0000000..0f13878
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_sentiment_very_satisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_settings_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_settings_black_18dp.png
new file mode 100755
index 0000000..4ae5d40
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_settings_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_settings_white_18dp.png b/app/src/main/res/drawable-mdpi/ic_settings_white_18dp.png
new file mode 100755
index 0000000..400b101
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_settings_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_star_black_16dp.png b/app/src/main/res/drawable-mdpi/ic_star_black_16dp.png
new file mode 100755
index 0000000..3f5d25e
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_star_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_star_black_48dp.png b/app/src/main/res/drawable-mdpi/ic_star_black_48dp.png
new file mode 100755
index 0000000..c636ce8
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_star_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_star_white_16dp.png b/app/src/main/res/drawable-mdpi/ic_star_white_16dp.png
new file mode 100755
index 0000000..132894a
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_star_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_sync_black_24dp.png b/app/src/main/res/drawable-mdpi/ic_sync_black_24dp.png
new file mode 100644
index 0000000..9685e8e
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_sync_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_thumb_down_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_thumb_down_black_18dp.png
new file mode 100755
index 0000000..29a9572
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_thumb_down_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_thumb_down_white_18dp.png b/app/src/main/res/drawable-mdpi/ic_thumb_down_white_18dp.png
new file mode 100755
index 0000000..05aecf5
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_thumb_down_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_thumb_up_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_thumb_up_black_18dp.png
new file mode 100755
index 0000000..e86e93c
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_thumb_up_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_thumb_up_white_18dp.png b/app/src/main/res/drawable-mdpi/ic_thumb_up_white_18dp.png
new file mode 100755
index 0000000..47d5dcb
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_thumb_up_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_visibility_off_black_18dp.png b/app/src/main/res/drawable-mdpi/ic_visibility_off_black_18dp.png
new file mode 100755
index 0000000..ad7e703
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_visibility_off_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_visibility_off_black_48dp.png b/app/src/main/res/drawable-mdpi/ic_visibility_off_black_48dp.png
new file mode 100755
index 0000000..46bf0c9
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_visibility_off_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_visibility_off_white_18dp.png b/app/src/main/res/drawable-mdpi/ic_visibility_off_white_18dp.png
new file mode 100755
index 0000000..f27d4e1
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_visibility_off_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_visibility_off_white_48dp.png b/app/src/main/res/drawable-mdpi/ic_visibility_off_white_48dp.png
new file mode 100755
index 0000000..93bea7d
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/ic_visibility_off_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/review_it.png b/app/src/main/res/drawable-mdpi/review_it.png
new file mode 100644
index 0000000..44a2629
--- /dev/null
+++ b/app/src/main/res/drawable-mdpi/review_it.png
Binary files differ
diff --git a/app/src/main/res/drawable-v21/ic_sync_black_24dp.xml b/app/src/main/res/drawable-v21/ic_sync_black_24dp.xml
new file mode 100644
index 0000000..d4da7c0
--- /dev/null
+++ b/app/src/main/res/drawable-v21/ic_sync_black_24dp.xml
@@ -0,0 +1,9 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+        android:width="24.0dp"
+        android:height="24.0dp"
+        android:viewportHeight="24.0"
+        android:viewportWidth="24.0">
+  <path
+    android:fillColor="#FF000000"
+    android:pathData="M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01,-.25 1.97,-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0,-4.42,-3.58,-8,-8,-8zm0 14c-3.31 0,-6,-2.69,-6,-6 0,-1.01.25,-1.97.7,-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4,-4,-4,-4v3z"/>
+</vector>
\ No newline at end of file
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_black_18dp.png
new file mode 100755
index 0000000..d9a5ebe
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_black_24dp.png
new file mode 100755
index 0000000..22f1211
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_black_36dp.png
new file mode 100755
index 0000000..6d0fe2c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_black_48dp.png
new file mode 100755
index 0000000..bfbe789
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_white_18dp.png
new file mode 100755
index 0000000..5098d29
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_white_24dp.png
new file mode 100755
index 0000000..95e1f49
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_white_36dp.png
new file mode 100755
index 0000000..1ab7303
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_white_48dp.png
new file mode 100755
index 0000000..5fee17f
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_apps_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_black_18dp.png
new file mode 100755
index 0000000..73f1dda
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_black_24dp.png
new file mode 100755
index 0000000..6073eec
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_black_36dp.png
new file mode 100755
index 0000000..1f0559f
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_black_48dp.png
new file mode 100755
index 0000000..7726760
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_white_18dp.png
new file mode 100755
index 0000000..cd19726
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_white_24dp.png
new file mode 100755
index 0000000..832f5a3
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_white_36dp.png
new file mode 100755
index 0000000..32a6d91
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_white_48dp.png
new file mode 100755
index 0000000..e27034d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_back_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_black_18dp.png
new file mode 100755
index 0000000..ac842b7
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_black_24dp.png
new file mode 100755
index 0000000..ff93969
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_black_36dp.png
new file mode 100755
index 0000000..fafe4fb
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_black_48dp.png
new file mode 100755
index 0000000..43bfcd5
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_white_18dp.png
new file mode 100755
index 0000000..6686f16
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_white_24dp.png
new file mode 100755
index 0000000..bad2128
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_white_36dp.png
new file mode 100755
index 0000000..65c08e1
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_white_48dp.png
new file mode 100755
index 0000000..22e0448
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_downward_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_black_18dp.png
new file mode 100755
index 0000000..2a5865d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_black_24dp.png
new file mode 100755
index 0000000..feb901a
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_black_36dp.png
new file mode 100755
index 0000000..df2614b
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_black_48dp.png
new file mode 100755
index 0000000..76fb5ee
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_black_18dp.png
new file mode 100755
index 0000000..fb6212c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_black_24dp.png
new file mode 100755
index 0000000..08308d7
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_black_36dp.png
new file mode 100755
index 0000000..50038f1
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_black_48dp.png
new file mode 100755
index 0000000..4a5abee
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_white_18dp.png
new file mode 100755
index 0000000..4634f93
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_white_24dp.png
new file mode 100755
index 0000000..5e31f51
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_white_36dp.png
new file mode 100755
index 0000000..d5933e6
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_white_48dp.png
new file mode 100755
index 0000000..14c3428
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_circle_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_white_18dp.png
new file mode 100755
index 0000000..4c6076d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_white_24dp.png
new file mode 100755
index 0000000..da239e4
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_white_36dp.png
new file mode 100755
index 0000000..c19c19d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_white_48dp.png
new file mode 100755
index 0000000..88ec006
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_down_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_black_18dp.png
new file mode 100755
index 0000000..5a9831c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_black_24dp.png
new file mode 100755
index 0000000..3d24376
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_black_36dp.png
new file mode 100755
index 0000000..8e63b92
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_black_48dp.png
new file mode 100755
index 0000000..6d8c257
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_white_18dp.png
new file mode 100755
index 0000000..2854c1c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_white_24dp.png
new file mode 100755
index 0000000..709805d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_white_36dp.png
new file mode 100755
index 0000000..c2b9642
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_white_48dp.png
new file mode 100755
index 0000000..3d1b812
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_drop_up_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_black_18dp.png
new file mode 100755
index 0000000..252342d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_black_24dp.png
new file mode 100755
index 0000000..27767f1
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_black_36dp.png
new file mode 100755
index 0000000..a124259
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_black_48dp.png
new file mode 100755
index 0000000..8b5a681
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_white_18dp.png
new file mode 100755
index 0000000..b8c16a3
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_white_24dp.png
new file mode 100755
index 0000000..878b6e5
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_white_36dp.png
new file mode 100755
index 0000000..8c4c394
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_white_48dp.png
new file mode 100755
index 0000000..5e93f88
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_forward_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_black_18dp.png
new file mode 100755
index 0000000..705f7ae
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_black_24dp.png
new file mode 100755
index 0000000..f2b35ac
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_black_36dp.png
new file mode 100755
index 0000000..99622e7
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_black_48dp.png
new file mode 100755
index 0000000..fca5022
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_white_18dp.png
new file mode 100755
index 0000000..c39725c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_white_24dp.png
new file mode 100755
index 0000000..edd9b1d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_white_36dp.png
new file mode 100755
index 0000000..d7b27da
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_white_48dp.png
new file mode 100755
index 0000000..8ac0552
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_arrow_upward_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_black_18dp.png
new file mode 100755
index 0000000..50dbfef
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_black_24dp.png
new file mode 100755
index 0000000..6253c0d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_black_36dp.png
new file mode 100755
index 0000000..98c59c1
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_black_48dp.png
new file mode 100755
index 0000000..36116ed
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_white_18dp.png
new file mode 100755
index 0000000..73f5116
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_white_24dp.png
new file mode 100755
index 0000000..6ebbc83
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_white_36dp.png
new file mode 100755
index 0000000..dc32a14
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_white_48dp.png
new file mode 100755
index 0000000..dc775b2
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_cancel_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_12dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_12dp.png
new file mode 100755
index 0000000..1c14c9c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_12dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_18dp.png
new file mode 100755
index 0000000..e802d90
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_24dp.png
new file mode 100755
index 0000000..64a4944
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_36dp.png
new file mode 100755
index 0000000..b26a2c0
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_48dp.png
new file mode 100755
index 0000000..2f6d638
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_12dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_12dp.png
new file mode 100755
index 0000000..dfcb55d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_12dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_18dp.png
new file mode 100755
index 0000000..729f290
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_24dp.png
new file mode 100755
index 0000000..3b2b65d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_36dp.png
new file mode 100755
index 0000000..2c2ad77
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_48dp.png
new file mode 100755
index 0000000..d670618
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_check_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_black_18dp.png
new file mode 100755
index 0000000..f4ef28e
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_black_24dp.png
new file mode 100755
index 0000000..8ead939
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_black_36dp.png
new file mode 100755
index 0000000..f443b3c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_black_48dp.png
new file mode 100755
index 0000000..d3b8e76
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_white_18dp.png
new file mode 100755
index 0000000..bd23a06
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_white_24dp.png
new file mode 100755
index 0000000..62f3590
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_white_36dp.png
new file mode 100755
index 0000000..7141cc6
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_white_48dp.png
new file mode 100755
index 0000000..a68bc5f
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_left_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_black_18dp.png
new file mode 100755
index 0000000..3e98b52
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_black_24dp.png
new file mode 100755
index 0000000..23338b8
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_black_36dp.png
new file mode 100755
index 0000000..1ecbc5f
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_black_48dp.png
new file mode 100755
index 0000000..7522b38
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_white_18dp.png
new file mode 100755
index 0000000..1f10ee4
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_white_24dp.png
new file mode 100755
index 0000000..93dec39
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_white_36dp.png
new file mode 100755
index 0000000..7920aa3
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_white_48dp.png
new file mode 100755
index 0000000..6858f02
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_chevron_right_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_black_18dp.png
new file mode 100755
index 0000000..1a9cd75
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_black_24dp.png
new file mode 100755
index 0000000..6bc4372
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_black_36dp.png
new file mode 100755
index 0000000..51b4401
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_black_48dp.png
new file mode 100755
index 0000000..df42fee
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_white_18dp.png
new file mode 100755
index 0000000..ceb1a1e
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_white_24dp.png
new file mode 100755
index 0000000..b7c7ffd
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_white_36dp.png
new file mode 100755
index 0000000..6b717e0
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_white_48dp.png
new file mode 100755
index 0000000..3964192
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_close_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_black_18dp.png
new file mode 100755
index 0000000..57139a7
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_black_24dp.png
new file mode 100755
index 0000000..323360e
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_black_36dp.png
new file mode 100755
index 0000000..ee92f4e
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_black_48dp.png
new file mode 100755
index 0000000..99c6e3e
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_white_18dp.png
new file mode 100755
index 0000000..dea8988
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_white_24dp.png
new file mode 100755
index 0000000..ae36d91
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_white_36dp.png
new file mode 100755
index 0000000..62fc386
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_white_48dp.png
new file mode 100755
index 0000000..4261551
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_less_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_black_18dp.png
new file mode 100755
index 0000000..9625f14
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_black_24dp.png
new file mode 100755
index 0000000..d3ee65e
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_black_36dp.png
new file mode 100755
index 0000000..5cd142c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_black_48dp.png
new file mode 100755
index 0000000..ad852e3
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_white_18dp.png
new file mode 100755
index 0000000..022e057
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_white_24dp.png
new file mode 100755
index 0000000..c42e2a0
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_white_36dp.png
new file mode 100755
index 0000000..dbc0b20
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_white_48dp.png
new file mode 100755
index 0000000..2859a6f
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_expand_more_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_black_18dp.png
new file mode 100755
index 0000000..57ff4f0
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_black_24dp.png
new file mode 100755
index 0000000..917e418
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_black_36dp.png
new file mode 100755
index 0000000..66a373c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_black_48dp.png
new file mode 100755
index 0000000..9feee98
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_black_18dp.png
new file mode 100755
index 0000000..8328e2e
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_black_24dp.png
new file mode 100755
index 0000000..5fc3166
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_black_36dp.png
new file mode 100755
index 0000000..5691b55
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_black_48dp.png
new file mode 100755
index 0000000..2221235
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_white_18dp.png
new file mode 100755
index 0000000..6c9d58d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_white_24dp.png
new file mode 100755
index 0000000..364bad0
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_white_36dp.png
new file mode 100755
index 0000000..159bea7
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_white_48dp.png
new file mode 100755
index 0000000..ef360fe
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_exit_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_white_18dp.png
new file mode 100755
index 0000000..c150cb5
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_white_24dp.png
new file mode 100755
index 0000000..4423c7c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_white_36dp.png
new file mode 100755
index 0000000..9b81311
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_white_48dp.png
new file mode 100755
index 0000000..c1dcfb2
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_fullscreen_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_black_18dp.png
new file mode 100755
index 0000000..3f8ebd6
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_black_24dp.png
new file mode 100755
index 0000000..4e0286b
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_black_36dp.png
new file mode 100755
index 0000000..7dae60b
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_black_48dp.png
new file mode 100755
index 0000000..5c747ed
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_white_18dp.png
new file mode 100755
index 0000000..238cfd6
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_white_24dp.png
new file mode 100755
index 0000000..193185f
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_white_36dp.png
new file mode 100755
index 0000000..9cb0348
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_white_48dp.png
new file mode 100755
index 0000000..623d147
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_menu_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_black_18dp.png
new file mode 100755
index 0000000..97bd428
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_black_24dp.png
new file mode 100755
index 0000000..1fe4b96
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_black_36dp.png
new file mode 100755
index 0000000..091a7c6
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_black_48dp.png
new file mode 100755
index 0000000..bd60f0c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_white_18dp.png
new file mode 100755
index 0000000..ebfcb6f
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_white_24dp.png
new file mode 100755
index 0000000..dbb87ca
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_white_36dp.png
new file mode 100755
index 0000000..2036a9c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_white_48dp.png
new file mode 100755
index 0000000..535f087
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_horiz_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_16dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_16dp.png
new file mode 100755
index 0000000..5992dfa
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_18dp.png
new file mode 100755
index 0000000..22acc55
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_24dp.png
new file mode 100755
index 0000000..9f10aa2
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_36dp.png
new file mode 100755
index 0000000..94d5ab9
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_48dp.png
new file mode 100755
index 0000000..4642a3b
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_16dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_16dp.png
new file mode 100755
index 0000000..69b1f38
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_18dp.png
new file mode 100755
index 0000000..67f07e4
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_24dp.png
new file mode 100755
index 0000000..efab8a7
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_36dp.png
new file mode 100755
index 0000000..d322813
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_48dp.png
new file mode 100755
index 0000000..2f2cb3d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_more_vert_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_black_18dp.png
new file mode 100755
index 0000000..9d94c39
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_black_24dp.png
new file mode 100755
index 0000000..0b73128
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_black_36dp.png
new file mode 100755
index 0000000..91187eb
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_black_48dp.png
new file mode 100755
index 0000000..bcaba5f
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_white_18dp.png
new file mode 100755
index 0000000..ffa7be9
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_white_24dp.png
new file mode 100755
index 0000000..1989184
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_white_36dp.png
new file mode 100755
index 0000000..1692d8a
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_white_48dp.png
new file mode 100755
index 0000000..f5beca2
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_refresh_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_black_18dp.png
new file mode 100755
index 0000000..218f73e
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_black_24dp.png
new file mode 100755
index 0000000..574abf1
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_black_36dp.png
new file mode 100755
index 0000000..812e1cc
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_black_48dp.png
new file mode 100755
index 0000000..40a5dc6
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_white_18dp.png
new file mode 100755
index 0000000..0d9f5a6
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_white_24dp.png
new file mode 100755
index 0000000..5424e97
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_white_36dp.png
new file mode 100755
index 0000000..6e57317
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_white_48dp.png
new file mode 100755
index 0000000..3828846
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_left_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_black_18dp.png
new file mode 100755
index 0000000..65b39eb
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_black_24dp.png
new file mode 100755
index 0000000..ba0d2e5
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_black_36dp.png
new file mode 100755
index 0000000..6139055
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_black_48dp.png
new file mode 100755
index 0000000..8d77313
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_white_18dp.png
new file mode 100755
index 0000000..86001b5
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_white_24dp.png
new file mode 100755
index 0000000..4ef4f08
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_white_36dp.png
new file mode 100755
index 0000000..b41db91
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_white_48dp.png
new file mode 100755
index 0000000..e92d2dd
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_subdirectory_arrow_right_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_black_18dp.png
new file mode 100755
index 0000000..606b0ad
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_black_24dp.png
new file mode 100755
index 0000000..138a83b
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_black_36dp.png
new file mode 100755
index 0000000..83d2364
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_black_48dp.png
new file mode 100755
index 0000000..6f1f628
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_white_18dp.png
new file mode 100755
index 0000000..36ef49c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_white_24dp.png
new file mode 100755
index 0000000..d4e19aa
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_white_36dp.png
new file mode 100755
index 0000000..86a37f2
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_white_48dp.png
new file mode 100755
index 0000000..cd073fd
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_less_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_black_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_black_18dp.png
new file mode 100755
index 0000000..d669aa4
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_black_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_black_24dp.png
new file mode 100755
index 0000000..ac16687
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_black_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_black_36dp.png
new file mode 100755
index 0000000..ce8d3e5
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_black_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_black_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_black_48dp.png
new file mode 100755
index 0000000..5be44f0
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_white_18dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_white_18dp.png
new file mode 100755
index 0000000..e7ebdbe
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_white_24dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_white_24dp.png
new file mode 100755
index 0000000..c6115c6
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_white_36dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_white_36dp.png
new file mode 100755
index 0000000..aeba2c9
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_white_48dp.png b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_white_48dp.png
new file mode 100755
index 0000000..9aad01f
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/drawable-xhdpi/ic_unfold_more_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_add_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_add_black_18dp.png
new file mode 100755
index 0000000..c04b523
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_add_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_add_black_24dp.png b/app/src/main/res/drawable-xhdpi/ic_add_black_24dp.png
new file mode 100755
index 0000000..3191d52
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_add_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_add_box_white_18dp.png b/app/src/main/res/drawable-xhdpi/ic_add_box_white_18dp.png
new file mode 100755
index 0000000..0a1a3d8
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_add_box_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_add_box_white_24dp.png b/app/src/main/res/drawable-xhdpi/ic_add_box_white_24dp.png
new file mode 100755
index 0000000..94eb62b
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_add_box_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_arrow_back_white_36dp.png b/app/src/main/res/drawable-xhdpi/ic_arrow_back_white_36dp.png
new file mode 100644
index 0000000..32a6d91
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_arrow_back_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_arrow_forward_white_36dp.png b/app/src/main/res/drawable-xhdpi/ic_arrow_forward_white_36dp.png
new file mode 100644
index 0000000..8c4c394
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_arrow_forward_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_clear_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_clear_black_18dp.png
new file mode 100755
index 0000000..1a9cd75
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_clear_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_clear_black_24dp.png b/app/src/main/res/drawable-xhdpi/ic_clear_black_24dp.png
new file mode 100755
index 0000000..6bc4372
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_clear_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_comment_black_16dp.png b/app/src/main/res/drawable-xhdpi/ic_comment_black_16dp.png
new file mode 100755
index 0000000..47529e5
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_comment_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_comment_white_16dp.png b/app/src/main/res/drawable-xhdpi/ic_comment_white_16dp.png
new file mode 100755
index 0000000..59a6be7
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_comment_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_content_paste_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_content_paste_black_18dp.png
new file mode 100755
index 0000000..300171d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_content_paste_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_content_paste_black_24dp.png b/app/src/main/res/drawable-xhdpi/ic_content_paste_black_24dp.png
new file mode 100755
index 0000000..4f7ad25
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_content_paste_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_create_black_24dp.png b/app/src/main/res/drawable-xhdpi/ic_create_black_24dp.png
new file mode 100755
index 0000000..87f8de1
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_create_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_done_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_done_black_18dp.png
new file mode 100755
index 0000000..d4c0607
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_done_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_exposure_neg_1_white_48dp.png b/app/src/main/res/drawable-xhdpi/ic_exposure_neg_1_white_48dp.png
new file mode 100644
index 0000000..726e347
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_exposure_neg_1_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_exposure_neg_2_white_48dp.png b/app/src/main/res/drawable-xhdpi/ic_exposure_neg_2_white_48dp.png
new file mode 100644
index 0000000..5464fc3
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_exposure_neg_2_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_exposure_plus_1_white_48dp.png b/app/src/main/res/drawable-xhdpi/ic_exposure_plus_1_white_48dp.png
new file mode 100644
index 0000000..78e7b25
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_exposure_plus_1_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_exposure_plus_2_white_48dp.png b/app/src/main/res/drawable-xhdpi/ic_exposure_plus_2_white_48dp.png
new file mode 100644
index 0000000..f403186
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_exposure_plus_2_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_face_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_face_black_18dp.png
new file mode 100755
index 0000000..13fdf38
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_face_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_fast_forward_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_fast_forward_black_18dp.png
new file mode 100755
index 0000000..3cd2ade
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_fast_forward_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_fast_forward_black_48dp.png b/app/src/main/res/drawable-xhdpi/ic_fast_forward_black_48dp.png
new file mode 100755
index 0000000..3501717
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_fast_forward_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_fast_forward_white_18dp.png b/app/src/main/res/drawable-xhdpi/ic_fast_forward_white_18dp.png
new file mode 100755
index 0000000..cf15f0c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_fast_forward_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_fast_forward_white_48dp.png b/app/src/main/res/drawable-xhdpi/ic_fast_forward_white_48dp.png
new file mode 100755
index 0000000..59689ec
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_fast_forward_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_feedback_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_feedback_black_18dp.png
new file mode 100644
index 0000000..f031685
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_feedback_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_feedback_black_48dp.png b/app/src/main/res/drawable-xhdpi/ic_feedback_black_48dp.png
new file mode 100644
index 0000000..1343fa8
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_feedback_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_feedback_white_18dp.png b/app/src/main/res/drawable-xhdpi/ic_feedback_white_18dp.png
new file mode 100644
index 0000000..a34168c
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_feedback_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_info_black_24dp.png b/app/src/main/res/drawable-xhdpi/ic_info_black_24dp.png
new file mode 100644
index 0000000..46ed12a
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_info_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_down_white_36dp.png b/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_down_white_36dp.png
new file mode 100644
index 0000000..f9622b7
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_down_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_right_white_36dp.png b/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_right_white_36dp.png
new file mode 100644
index 0000000..e9bc388
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_right_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_up_white_36dp.png b/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_up_white_36dp.png
new file mode 100644
index 0000000..ce4aa56
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_up_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_menu_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_menu_black_18dp.png
new file mode 100755
index 0000000..3f8ebd6
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_menu_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_menu_white_18dp.png b/app/src/main/res/drawable-xhdpi/ic_menu_white_18dp.png
new file mode 100755
index 0000000..238cfd6
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_menu_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_notifications_black_24dp.png b/app/src/main/res/drawable-xhdpi/ic_notifications_black_24dp.png
new file mode 100644
index 0000000..7de8581
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_notifications_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_person_add_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_person_add_black_18dp.png
new file mode 100755
index 0000000..9acdfec
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_person_add_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_person_add_white_18dp.png b/app/src/main/res/drawable-xhdpi/ic_person_add_white_18dp.png
new file mode 100755
index 0000000..10ae5a7
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_person_add_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_person_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_person_black_18dp.png
new file mode 100755
index 0000000..6fbcc6d
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_person_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_refresh_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_refresh_black_18dp.png
new file mode 100755
index 0000000..9d94c39
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_refresh_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_refresh_black_48dp.png b/app/src/main/res/drawable-xhdpi/ic_refresh_black_48dp.png
new file mode 100755
index 0000000..bcaba5f
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_refresh_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_refresh_white_18dp.png b/app/src/main/res/drawable-xhdpi/ic_refresh_white_18dp.png
new file mode 100755
index 0000000..ffa7be9
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_refresh_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_refresh_white_48dp.png b/app/src/main/res/drawable-xhdpi/ic_refresh_white_48dp.png
new file mode 100755
index 0000000..f5beca2
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_refresh_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_restore_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_restore_black_18dp.png
new file mode 100755
index 0000000..b5992b1
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_restore_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_restore_white_18dp.png b/app/src/main/res/drawable-xhdpi/ic_restore_white_18dp.png
new file mode 100755
index 0000000..41cf457
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_restore_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_search_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_search_black_18dp.png
new file mode 100644
index 0000000..c593e7a
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_search_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_sentiment_dissatisfied_white_48dp.png b/app/src/main/res/drawable-xhdpi/ic_sentiment_dissatisfied_white_48dp.png
new file mode 100644
index 0000000..f1d7e48
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_sentiment_dissatisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_sentiment_neutral_white_48dp.png b/app/src/main/res/drawable-xhdpi/ic_sentiment_neutral_white_48dp.png
new file mode 100644
index 0000000..9237f33
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_sentiment_neutral_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_sentiment_satisfied_white_48dp.png b/app/src/main/res/drawable-xhdpi/ic_sentiment_satisfied_white_48dp.png
new file mode 100644
index 0000000..99054eb
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_sentiment_satisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_sentiment_very_dissatisfied_white_48dp.png b/app/src/main/res/drawable-xhdpi/ic_sentiment_very_dissatisfied_white_48dp.png
new file mode 100644
index 0000000..d72f9d6
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_sentiment_very_dissatisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_sentiment_very_satisfied_white_48dp.png b/app/src/main/res/drawable-xhdpi/ic_sentiment_very_satisfied_white_48dp.png
new file mode 100644
index 0000000..0f16784
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_sentiment_very_satisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_settings_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_settings_black_18dp.png
new file mode 100755
index 0000000..acf1ddf
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_settings_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_settings_white_18dp.png b/app/src/main/res/drawable-xhdpi/ic_settings_white_18dp.png
new file mode 100755
index 0000000..97ded33
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_settings_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_star_black_16dp.png b/app/src/main/res/drawable-xhdpi/ic_star_black_16dp.png
new file mode 100755
index 0000000..732c48e
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_star_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_star_black_48dp.png b/app/src/main/res/drawable-xhdpi/ic_star_black_48dp.png
new file mode 100755
index 0000000..7be2280
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_star_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_star_white_16dp.png b/app/src/main/res/drawable-xhdpi/ic_star_white_16dp.png
new file mode 100755
index 0000000..767f2d0
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_star_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_sync_black_24dp.png b/app/src/main/res/drawable-xhdpi/ic_sync_black_24dp.png
new file mode 100644
index 0000000..860a5db
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_sync_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_thumb_down_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_thumb_down_black_18dp.png
new file mode 100755
index 0000000..c7807e4
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_thumb_down_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_thumb_down_white_18dp.png b/app/src/main/res/drawable-xhdpi/ic_thumb_down_white_18dp.png
new file mode 100755
index 0000000..3be775a
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_thumb_down_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_thumb_up_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_thumb_up_black_18dp.png
new file mode 100755
index 0000000..7ffe4fa
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_thumb_up_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_thumb_up_white_18dp.png b/app/src/main/res/drawable-xhdpi/ic_thumb_up_white_18dp.png
new file mode 100755
index 0000000..c21a464
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_thumb_up_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_visibility_off_black_18dp.png b/app/src/main/res/drawable-xhdpi/ic_visibility_off_black_18dp.png
new file mode 100755
index 0000000..b21a686
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_visibility_off_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_visibility_off_black_48dp.png b/app/src/main/res/drawable-xhdpi/ic_visibility_off_black_48dp.png
new file mode 100755
index 0000000..ce3c9d8
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_visibility_off_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_visibility_off_white_18dp.png b/app/src/main/res/drawable-xhdpi/ic_visibility_off_white_18dp.png
new file mode 100755
index 0000000..06f4e33
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_visibility_off_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_visibility_off_white_48dp.png b/app/src/main/res/drawable-xhdpi/ic_visibility_off_white_48dp.png
new file mode 100755
index 0000000..3e7242a
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/ic_visibility_off_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/review_it.png b/app/src/main/res/drawable-xhdpi/review_it.png
new file mode 100644
index 0000000..fe76609
--- /dev/null
+++ b/app/src/main/res/drawable-xhdpi/review_it.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_add_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_add_black_18dp.png
new file mode 100755
index 0000000..ec83e81
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_add_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_add_black_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_add_black_24dp.png
new file mode 100755
index 0000000..a84106b
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_add_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_add_box_white_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_add_box_white_18dp.png
new file mode 100755
index 0000000..79375b3
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_add_box_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_add_box_white_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_add_box_white_24dp.png
new file mode 100755
index 0000000..f66af4b
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_add_box_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_arrow_back_white_36dp.png b/app/src/main/res/drawable-xxhdpi/ic_arrow_back_white_36dp.png
new file mode 100644
index 0000000..15eca73
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_arrow_back_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_arrow_forward_white_36dp.png b/app/src/main/res/drawable-xxhdpi/ic_arrow_forward_white_36dp.png
new file mode 100644
index 0000000..e14d1c0
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_arrow_forward_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_clear_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_clear_black_18dp.png
new file mode 100755
index 0000000..685bdc4
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_clear_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_clear_black_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_clear_black_24dp.png
new file mode 100755
index 0000000..51b4401
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_clear_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_comment_black_16dp.png b/app/src/main/res/drawable-xxhdpi/ic_comment_black_16dp.png
new file mode 100755
index 0000000..7c9804b
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_comment_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_comment_white_16dp.png b/app/src/main/res/drawable-xxhdpi/ic_comment_white_16dp.png
new file mode 100755
index 0000000..9caf368
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_comment_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_content_paste_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_content_paste_black_18dp.png
new file mode 100755
index 0000000..0cb70d0
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_content_paste_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_content_paste_black_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_content_paste_black_24dp.png
new file mode 100755
index 0000000..3014ad6
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_content_paste_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_create_black_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_create_black_24dp.png
new file mode 100755
index 0000000..4af4ae6
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_create_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_done_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_done_black_18dp.png
new file mode 100755
index 0000000..1c4739e
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_done_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_exposure_neg_1_white_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_exposure_neg_1_white_48dp.png
new file mode 100644
index 0000000..13de1b2
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_exposure_neg_1_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_exposure_neg_2_white_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_exposure_neg_2_white_48dp.png
new file mode 100644
index 0000000..62909e2
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_exposure_neg_2_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_exposure_plus_1_white_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_exposure_plus_1_white_48dp.png
new file mode 100644
index 0000000..f33def2
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_exposure_plus_1_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_exposure_plus_2_white_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_exposure_plus_2_white_48dp.png
new file mode 100644
index 0000000..7731cad
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_exposure_plus_2_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_face_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_face_black_18dp.png
new file mode 100755
index 0000000..4d66ccf
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_face_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_fast_forward_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_fast_forward_black_18dp.png
new file mode 100755
index 0000000..9b324fa
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_fast_forward_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_fast_forward_black_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_fast_forward_black_48dp.png
new file mode 100755
index 0000000..680e2de
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_fast_forward_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_fast_forward_white_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_fast_forward_white_18dp.png
new file mode 100755
index 0000000..dbf731b
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_fast_forward_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_fast_forward_white_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_fast_forward_white_48dp.png
new file mode 100755
index 0000000..133aa85
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_fast_forward_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_feedback_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_feedback_black_18dp.png
new file mode 100644
index 0000000..7418fc7
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_feedback_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_feedback_black_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_feedback_black_48dp.png
new file mode 100644
index 0000000..52b7aa0
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_feedback_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_feedback_white_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_feedback_white_18dp.png
new file mode 100644
index 0000000..53bc37f
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_feedback_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_info_black_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_info_black_24dp.png
new file mode 100644
index 0000000..a81eeb9
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_info_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_down_white_36dp.png b/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_down_white_36dp.png
new file mode 100644
index 0000000..c21dfb5
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_down_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_right_white_36dp.png b/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_right_white_36dp.png
new file mode 100644
index 0000000..92d59dd
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_right_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_up_white_36dp.png b/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_up_white_36dp.png
new file mode 100644
index 0000000..f91589d
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_up_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_menu_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_menu_black_18dp.png
new file mode 100755
index 0000000..0e6fe8c
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_menu_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_menu_white_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_menu_white_18dp.png
new file mode 100755
index 0000000..59aca7c
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_menu_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_notifications_black_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_notifications_black_24dp.png
new file mode 100644
index 0000000..ab8a9c4
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_notifications_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_person_add_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_person_add_black_18dp.png
new file mode 100755
index 0000000..75ae9dc
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_person_add_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_person_add_white_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_person_add_white_18dp.png
new file mode 100755
index 0000000..996321a
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_person_add_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_person_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_person_black_18dp.png
new file mode 100755
index 0000000..5e516bc
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_person_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_refresh_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_refresh_black_18dp.png
new file mode 100755
index 0000000..0e304ea
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_refresh_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_refresh_black_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_refresh_black_48dp.png
new file mode 100755
index 0000000..710f506
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_refresh_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_refresh_white_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_refresh_white_18dp.png
new file mode 100755
index 0000000..d898810
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_refresh_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_refresh_white_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_refresh_white_48dp.png
new file mode 100755
index 0000000..c0e74dd
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_refresh_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_restore_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_restore_black_18dp.png
new file mode 100755
index 0000000..d7167b8
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_restore_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_restore_white_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_restore_white_18dp.png
new file mode 100755
index 0000000..ebb037e
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_restore_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_search_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_search_black_18dp.png
new file mode 100644
index 0000000..3d70210
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_search_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_sentiment_dissatisfied_white_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_sentiment_dissatisfied_white_48dp.png
new file mode 100644
index 0000000..09ce7c0
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_sentiment_dissatisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_sentiment_neutral_white_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_sentiment_neutral_white_48dp.png
new file mode 100644
index 0000000..09f7ecf
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_sentiment_neutral_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_sentiment_satisfied_white_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_sentiment_satisfied_white_48dp.png
new file mode 100644
index 0000000..a65414e
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_sentiment_satisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_sentiment_very_dissatisfied_white_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_sentiment_very_dissatisfied_white_48dp.png
new file mode 100644
index 0000000..500a02f
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_sentiment_very_dissatisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_sentiment_very_satisfied_white_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_sentiment_very_satisfied_white_48dp.png
new file mode 100644
index 0000000..8d93abc
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_sentiment_very_satisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_settings_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_settings_black_18dp.png
new file mode 100755
index 0000000..f6efb74
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_settings_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_settings_white_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_settings_white_18dp.png
new file mode 100755
index 0000000..64f77e1
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_settings_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_star_black_16dp.png b/app/src/main/res/drawable-xxhdpi/ic_star_black_16dp.png
new file mode 100755
index 0000000..c636ce8
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_star_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_star_black_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_star_black_48dp.png
new file mode 100755
index 0000000..918a395
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_star_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_star_white_16dp.png b/app/src/main/res/drawable-xxhdpi/ic_star_white_16dp.png
new file mode 100755
index 0000000..9143406
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_star_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_sync_black_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_sync_black_24dp.png
new file mode 100644
index 0000000..f799008
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_sync_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_thumb_down_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_thumb_down_black_18dp.png
new file mode 100755
index 0000000..6ff6d34
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_thumb_down_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_thumb_down_white_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_thumb_down_white_18dp.png
new file mode 100755
index 0000000..ce1b05d
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_thumb_down_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_thumb_up_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_thumb_up_black_18dp.png
new file mode 100755
index 0000000..81a8088
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_thumb_up_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_thumb_up_white_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_thumb_up_white_18dp.png
new file mode 100755
index 0000000..0f0fada
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_thumb_up_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_visibility_off_black_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_visibility_off_black_18dp.png
new file mode 100755
index 0000000..48a4f8d
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_visibility_off_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_visibility_off_black_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_visibility_off_black_48dp.png
new file mode 100755
index 0000000..3e49c84
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_visibility_off_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_visibility_off_white_18dp.png b/app/src/main/res/drawable-xxhdpi/ic_visibility_off_white_18dp.png
new file mode 100755
index 0000000..97b5f96
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_visibility_off_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_visibility_off_white_48dp.png b/app/src/main/res/drawable-xxhdpi/ic_visibility_off_white_48dp.png
new file mode 100755
index 0000000..b98249f
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/ic_visibility_off_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/review_it.png b/app/src/main/res/drawable-xxhdpi/review_it.png
new file mode 100644
index 0000000..47fba5f
--- /dev/null
+++ b/app/src/main/res/drawable-xxhdpi/review_it.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_add_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_add_black_18dp.png
new file mode 100755
index 0000000..a84106b
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_add_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_add_black_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_add_black_24dp.png
new file mode 100755
index 0000000..3cb1092
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_add_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_add_box_white_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_add_box_white_18dp.png
new file mode 100755
index 0000000..f66af4b
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_add_box_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_add_box_white_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_add_box_white_24dp.png
new file mode 100755
index 0000000..2b435f7
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_add_box_white_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_arrow_back_white_36dp.png b/app/src/main/res/drawable-xxxhdpi/ic_arrow_back_white_36dp.png
new file mode 100644
index 0000000..f6ad880
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_arrow_back_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_arrow_forward_white_36dp.png b/app/src/main/res/drawable-xxxhdpi/ic_arrow_forward_white_36dp.png
new file mode 100644
index 0000000..f8cf79f
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_arrow_forward_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_clear_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_clear_black_18dp.png
new file mode 100755
index 0000000..51b4401
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_clear_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_clear_black_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_clear_black_24dp.png
new file mode 100755
index 0000000..df42fee
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_clear_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_comment_black_16dp.png b/app/src/main/res/drawable-xxxhdpi/ic_comment_black_16dp.png
new file mode 100755
index 0000000..30bd644
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_comment_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_comment_white_16dp.png b/app/src/main/res/drawable-xxxhdpi/ic_comment_white_16dp.png
new file mode 100755
index 0000000..bfafa97
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_comment_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_content_paste_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_content_paste_black_18dp.png
new file mode 100755
index 0000000..3014ad6
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_content_paste_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_content_paste_black_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_content_paste_black_24dp.png
new file mode 100755
index 0000000..25096d7
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_content_paste_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_create_black_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_create_black_24dp.png
new file mode 100755
index 0000000..d6761ba
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_create_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_done_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_done_black_18dp.png
new file mode 100755
index 0000000..c9c0174
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_done_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_exposure_neg_1_white_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_exposure_neg_1_white_48dp.png
new file mode 100644
index 0000000..13de1b2
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_exposure_neg_1_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_exposure_neg_2_white_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_exposure_neg_2_white_48dp.png
new file mode 100644
index 0000000..62909e2
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_exposure_neg_2_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_exposure_plus_1_white_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_exposure_plus_1_white_48dp.png
new file mode 100644
index 0000000..f33def2
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_exposure_plus_1_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_exposure_plus_2_white_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_exposure_plus_2_white_48dp.png
new file mode 100644
index 0000000..7731cad
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_exposure_plus_2_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_face_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_face_black_18dp.png
new file mode 100755
index 0000000..032c786
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_face_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_fast_forward_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_fast_forward_black_18dp.png
new file mode 100755
index 0000000..abd5453
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_fast_forward_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_fast_forward_black_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_fast_forward_black_48dp.png
new file mode 100755
index 0000000..3ac2687
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_fast_forward_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_fast_forward_white_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_fast_forward_white_18dp.png
new file mode 100755
index 0000000..ad9097d
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_fast_forward_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_fast_forward_white_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_fast_forward_white_48dp.png
new file mode 100755
index 0000000..fb7817e
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_fast_forward_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_feedback_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_feedback_black_18dp.png
new file mode 100644
index 0000000..e68ceb9
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_feedback_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_feedback_black_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_feedback_black_48dp.png
new file mode 100644
index 0000000..bde2348
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_feedback_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_feedback_white_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_feedback_white_18dp.png
new file mode 100644
index 0000000..25810dd
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_feedback_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_info_black_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_info_black_24dp.png
new file mode 100644
index 0000000..c8f86b9
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_info_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_down_white_36dp.png b/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_down_white_36dp.png
new file mode 100644
index 0000000..318aa4d
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_down_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_right_white_36dp.png b/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_right_white_36dp.png
new file mode 100644
index 0000000..25503d1
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_right_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_up_white_36dp.png b/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_up_white_36dp.png
new file mode 100644
index 0000000..62467ce
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_up_white_36dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_menu_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_menu_black_18dp.png
new file mode 100755
index 0000000..7dae60b
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_menu_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_menu_white_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_menu_white_18dp.png
new file mode 100755
index 0000000..9cb0348
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_menu_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_notifications_black_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_notifications_black_24dp.png
new file mode 100644
index 0000000..86f89d7
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_notifications_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_person_add_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_person_add_black_18dp.png
new file mode 100755
index 0000000..48236bc
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_person_add_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_person_add_white_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_person_add_white_18dp.png
new file mode 100755
index 0000000..8f744f0
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_person_add_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_person_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_person_black_18dp.png
new file mode 100755
index 0000000..f1e1484
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_person_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_18dp.png
new file mode 100755
index 0000000..91187eb
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_48dp.png
new file mode 100755
index 0000000..e1eaf8c
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_18dp.png
new file mode 100755
index 0000000..1692d8a
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_48dp.png
new file mode 100755
index 0000000..8bae5d3
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_restore_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_restore_black_18dp.png
new file mode 100755
index 0000000..9a2a433
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_restore_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_restore_white_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_restore_white_18dp.png
new file mode 100755
index 0000000..8008fa6
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_restore_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_search_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_search_black_18dp.png
new file mode 100644
index 0000000..3ae490e
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_search_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_sentiment_dissatisfied_white_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_sentiment_dissatisfied_white_48dp.png
new file mode 100644
index 0000000..5d7f4d5
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_sentiment_dissatisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_sentiment_neutral_white_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_sentiment_neutral_white_48dp.png
new file mode 100644
index 0000000..05ddb52
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_sentiment_neutral_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_sentiment_satisfied_white_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_sentiment_satisfied_white_48dp.png
new file mode 100644
index 0000000..8c977b7
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_sentiment_satisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_sentiment_very_dissatisfied_white_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_sentiment_very_dissatisfied_white_48dp.png
new file mode 100644
index 0000000..8f39162
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_sentiment_very_dissatisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_sentiment_very_satisfied_white_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_sentiment_very_satisfied_white_48dp.png
new file mode 100644
index 0000000..1f839fd
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_sentiment_very_satisfied_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_settings_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_settings_black_18dp.png
new file mode 100755
index 0000000..3023ff8
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_settings_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_settings_white_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_settings_white_18dp.png
new file mode 100755
index 0000000..eabb0a2
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_settings_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_star_black_16dp.png b/app/src/main/res/drawable-xxxhdpi/ic_star_black_16dp.png
new file mode 100755
index 0000000..1fa274d
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_star_black_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_star_black_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_star_black_48dp.png
new file mode 100755
index 0000000..67e25d5
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_star_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_star_white_16dp.png b/app/src/main/res/drawable-xxxhdpi/ic_star_white_16dp.png
new file mode 100755
index 0000000..da8774f
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_star_white_16dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_sync_black_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_sync_black_24dp.png
new file mode 100644
index 0000000..b9f56f3
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_sync_black_24dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_thumb_down_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_thumb_down_black_18dp.png
new file mode 100755
index 0000000..37ce6c9
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_thumb_down_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_thumb_down_white_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_thumb_down_white_18dp.png
new file mode 100755
index 0000000..a6e0b10
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_thumb_down_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_thumb_up_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_thumb_up_black_18dp.png
new file mode 100755
index 0000000..d7004fe
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_thumb_up_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_thumb_up_white_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_thumb_up_white_18dp.png
new file mode 100755
index 0000000..cedf001
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_thumb_up_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_visibility_off_black_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_visibility_off_black_18dp.png
new file mode 100755
index 0000000..13eb65d
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_visibility_off_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_visibility_off_black_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_visibility_off_black_48dp.png
new file mode 100755
index 0000000..4f04173
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_visibility_off_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_visibility_off_white_18dp.png b/app/src/main/res/drawable-xxxhdpi/ic_visibility_off_white_18dp.png
new file mode 100755
index 0000000..6fc6300
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_visibility_off_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_visibility_off_white_48dp.png b/app/src/main/res/drawable-xxxhdpi/ic_visibility_off_white_48dp.png
new file mode 100755
index 0000000..91a5201
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/ic_visibility_off_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/review_it.png b/app/src/main/res/drawable-xxxhdpi/review_it.png
new file mode 100644
index 0000000..8693ede
--- /dev/null
+++ b/app/src/main/res/drawable-xxxhdpi/review_it.png
Binary files differ
diff --git a/app/src/main/res/drawable/app_screen.xml b/app/src/main/res/drawable/app_screen.xml
new file mode 100644
index 0000000..1ee87ce
--- /dev/null
+++ b/app/src/main/res/drawable/app_screen.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+       android:shape="rectangle">
+  <padding
+    android:left="0dp"
+    android:right="0dp"
+    android:top="0dp"
+    android:bottom="0dp"/>
+  <solid android:color="@android:color/white"/>
+</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/counter.xml b/app/src/main/res/drawable/counter.xml
new file mode 100644
index 0000000..42ef49b
--- /dev/null
+++ b/app/src/main/res/drawable/counter.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+       android:shape="rectangle">
+  <solid android:color="@color/counter">
+  </solid>
+
+  <padding
+    android:right="3dp"
+    android:left="3dp">
+  </padding>
+
+  <corners android:radius="2dp">
+  </corners>
+</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/error_page.xml b/app/src/main/res/drawable/error_page.xml
new file mode 100644
index 0000000..b3eab84
--- /dev/null
+++ b/app/src/main/res/drawable/error_page.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+       android:shape="rectangle">
+  <corners android:radius="20dp"/>
+  <padding
+    android:left="10dp"
+    android:right="10dp"
+    android:top="10dp"
+    android:bottom="10dp"/>
+  <solid android:color="@color/error"/>
+</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/grey_page_border.xml b/app/src/main/res/drawable/grey_page_border.xml
new file mode 100644
index 0000000..2d35de4
--- /dev/null
+++ b/app/src/main/res/drawable/grey_page_border.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+       android:shape="rectangle">
+  <corners android:radius="5dp"/>
+  <solid android:color="@color/grey"/>
+  <stroke
+    android:width="2px"
+    android:color="@color/white"/>
+</shape>
diff --git a/app/src/main/res/drawable/ic_fast_forward_black_48dp.png b/app/src/main/res/drawable/ic_fast_forward_black_48dp.png
new file mode 100644
index 0000000..abd5453
--- /dev/null
+++ b/app/src/main/res/drawable/ic_fast_forward_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable/ic_refresh_black_18dp.png b/app/src/main/res/drawable/ic_refresh_black_18dp.png
new file mode 100644
index 0000000..9adddbc
--- /dev/null
+++ b/app/src/main/res/drawable/ic_refresh_black_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable/ic_refresh_black_48dp.png b/app/src/main/res/drawable/ic_refresh_black_48dp.png
new file mode 100644
index 0000000..91187eb
--- /dev/null
+++ b/app/src/main/res/drawable/ic_refresh_black_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable/ic_refresh_white_18dp.png b/app/src/main/res/drawable/ic_refresh_white_18dp.png
new file mode 100644
index 0000000..21ceaf4
--- /dev/null
+++ b/app/src/main/res/drawable/ic_refresh_white_18dp.png
Binary files differ
diff --git a/app/src/main/res/drawable/ic_refresh_white_48dp.png b/app/src/main/res/drawable/ic_refresh_white_48dp.png
new file mode 100644
index 0000000..1692d8a
--- /dev/null
+++ b/app/src/main/res/drawable/ic_refresh_white_48dp.png
Binary files differ
diff --git a/app/src/main/res/drawable/info_table.xml b/app/src/main/res/drawable/info_table.xml
new file mode 100644
index 0000000..660bee6
--- /dev/null
+++ b/app/src/main/res/drawable/info_table.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+       android:shape="rectangle">
+  <corners android:radius="5dp"/>
+  <padding
+    android:left="10dp"
+    android:right="10dp"
+    android:top="10dp"
+    android:bottom="10dp"/>
+  <solid android:color="@color/infoTable"/>
+</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/main_item.xml b/app/src/main/res/drawable/main_item.xml
new file mode 100644
index 0000000..1e86024
--- /dev/null
+++ b/app/src/main/res/drawable/main_item.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+       android:shape="rectangle">
+  <gradient
+    android:startColor="@color/mainItem"
+    android:endColor="@color/mainItem"
+    android:angle="90"/>
+</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/main_item_selected.xml b/app/src/main/res/drawable/main_item_selected.xml
new file mode 100644
index 0000000..84e90c9
--- /dev/null
+++ b/app/src/main/res/drawable/main_item_selected.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+       android:shape="rectangle">
+  <gradient
+    android:startColor="@color/mainItemSelected"
+    android:endColor="@color/mainItemSelected"
+    android:angle="90"/>
+</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/main_selector.xml b/app/src/main/res/drawable/main_selector.xml
new file mode 100644
index 0000000..4860056
--- /dev/null
+++ b/app/src/main/res/drawable/main_selector.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+  <item android:drawable="@drawable/main_item"
+        android:state_activated="false"/>
+  <item android:drawable="@drawable/main_item_selected"
+        android:state_pressed="true"/>
+  <item android:drawable="@drawable/main_item_selected"
+        android:state_activated="true"/>
+</selector>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/multi_page_border.xml b/app/src/main/res/drawable/multi_page_border.xml
new file mode 100644
index 0000000..0c4e61d
--- /dev/null
+++ b/app/src/main/res/drawable/multi_page_border.xml
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+  <item>
+    <shape xmlns:android="http://schemas.android.com/apk/res/android"
+           android:shape="rectangle">
+      <corners android:radius="20dp"/>
+      <padding
+        android:left="0dp"
+        android:right="3dp"
+        android:top="0dp"
+        android:bottom="3dp"/>
+      <solid android:color="@color/commitMessage4"/>
+      <stroke
+        android:width="1px"
+        android:color="@color/commitMessage4"/>
+    </shape>
+  </item>
+  <item>
+    <shape xmlns:android="http://schemas.android.com/apk/res/android"
+           android:shape="rectangle">
+      <corners android:radius="20dp"/>
+      <padding
+        android:left="0dp"
+        android:right="3dp"
+        android:top="0dp"
+        android:bottom="3dp"/>
+      <solid android:color="@color/commitMessage3"/>
+      <stroke
+        android:width="1px"
+        android:color="@color/commitMessage4"/>
+    </shape>
+  </item>
+  <item>
+    <shape xmlns:android="http://schemas.android.com/apk/res/android"
+           android:shape="rectangle">
+      <corners android:radius="20dp"/>
+      <padding
+        android:left="0dp"
+        android:right="3dp"
+        android:top="0dp"
+        android:bottom="3dp"/>
+      <solid android:color="@color/commitMessage2"/>
+      <stroke
+        android:width="1px"
+        android:color="@color/commitMessage4"/>
+    </shape>
+  </item>
+  <item>
+    <shape xmlns:android="http://schemas.android.com/apk/res/android"
+           android:shape="rectangle">
+      <corners android:radius="20dp"/>
+      <padding
+        android:left="10dp"
+        android:right="10dp"
+        android:top="10dp"
+        android:bottom="10dp"/>
+      <solid android:color="@color/commitMessage"/>
+      <stroke
+        android:width="1px"
+        android:color="@color/commitMessage4"/>
+    </shape>
+  </item>
+</layer-list>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/navigation_button_bar.xml b/app/src/main/res/drawable/navigation_button_bar.xml
new file mode 100644
index 0000000..07be6c7
--- /dev/null
+++ b/app/src/main/res/drawable/navigation_button_bar.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android">
+  <gradient
+    android:angle="90"
+    android:startColor="@color/navBarStart"
+    android:centerColor="@color/navBarCenter"
+    android:endColor="@color/navBarEnd"/>
+</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/no_result_page_border.xml b/app/src/main/res/drawable/no_result_page_border.xml
new file mode 100644
index 0000000..ea820a0
--- /dev/null
+++ b/app/src/main/res/drawable/no_result_page_border.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+       android:shape="rectangle">
+  <corners android:radius="20dp"/>
+  <padding
+    android:left="10dp"
+    android:right="10dp"
+    android:top="10dp"
+    android:bottom="10dp"/>
+  <solid android:color="@color/noResults"/>
+</shape>
diff --git a/app/src/main/res/drawable/preview_screen.xml b/app/src/main/res/drawable/preview_screen.xml
new file mode 100644
index 0000000..f2e8043
--- /dev/null
+++ b/app/src/main/res/drawable/preview_screen.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+  <item>
+    <shape xmlns:android="http://schemas.android.com/apk/res/android"
+           android:shape="rectangle">
+      <padding
+        android:left="0dp"
+        android:right="0dp"
+        android:top="0dp"
+        android:bottom="0dp"/>
+      <solid android:color="@android:color/white"/>
+    </shape>
+  </item>
+  <item>
+    <bitmap
+      android:src="@drawable/review_it_logo"
+      android:gravity="center"/>
+  </item>
+</layer-list>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/progress.xml b/app/src/main/res/drawable/progress.xml
new file mode 100644
index 0000000..3733399
--- /dev/null
+++ b/app/src/main/res/drawable/progress.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+  <item android:id="@android:id/background">
+    <shape>
+      <stroke
+        android:width="2px"
+        android:color="@color/progressBarBackgroundStroke"/>
+      <solid android:color="@color/progressBarBackground"/>
+    </shape>
+  </item>
+  <item android:id="@android:id/progress">
+    <clip>
+      <shape>
+        <solid android:color="@color/progressBar"/>
+      </shape>
+    </clip>
+  </item>
+</layer-list>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/review_it_logo.png b/app/src/main/res/drawable/review_it_logo.png
new file mode 100644
index 0000000..97c2f8a
--- /dev/null
+++ b/app/src/main/res/drawable/review_it_logo.png
Binary files differ
diff --git a/app/src/main/res/drawable/single_page_border.xml b/app/src/main/res/drawable/single_page_border.xml
new file mode 100644
index 0000000..e8490a8
--- /dev/null
+++ b/app/src/main/res/drawable/single_page_border.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+       android:shape="rectangle">
+  <corners android:radius="20dp"/>
+  <solid android:color="@color/commitMessage"/>
+  <stroke
+    android:width="1px"
+    android:color="@color/commitMessage4"/>
+</shape>
diff --git a/app/src/main/res/drawable/three_page_border.xml b/app/src/main/res/drawable/three_page_border.xml
new file mode 100644
index 0000000..3f64b82
--- /dev/null
+++ b/app/src/main/res/drawable/three_page_border.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+  <item>
+    <shape xmlns:android="http://schemas.android.com/apk/res/android"
+           android:shape="rectangle">
+      <corners android:radius="20dp"/>
+      <padding
+        android:left="0dp"
+        android:right="3dp"
+        android:top="0dp"
+        android:bottom="3dp"/>
+      <solid android:color="@color/commitMessage3"/>
+      <stroke
+        android:width="1px"
+        android:color="@color/commitMessage4"/>
+    </shape>
+  </item>
+  <item>
+    <shape xmlns:android="http://schemas.android.com/apk/res/android"
+           android:shape="rectangle">
+      <corners android:radius="20dp"/>
+      <padding
+        android:left="0dp"
+        android:right="3dp"
+        android:top="0dp"
+        android:bottom="3dp"/>
+      <solid android:color="@color/commitMessage2"/>
+      <stroke
+        android:width="1px"
+        android:color="@color/commitMessage4"/>
+    </shape>
+  </item>
+  <item>
+    <shape xmlns:android="http://schemas.android.com/apk/res/android"
+           android:shape="rectangle">
+      <corners android:radius="20dp"/>
+      <padding
+        android:left="10dp"
+        android:right="10dp"
+        android:top="10dp"
+        android:bottom="10dp"/>
+      <solid android:color="@color/commitMessage"/>
+      <stroke
+        android:width="1px"
+        android:color="@color/commitMessage4"/>
+    </shape>
+  </item>
+</layer-list>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/two_page_border.xml b/app/src/main/res/drawable/two_page_border.xml
new file mode 100644
index 0000000..fbe7cd9
--- /dev/null
+++ b/app/src/main/res/drawable/two_page_border.xml
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+  <item>
+    <shape xmlns:android="http://schemas.android.com/apk/res/android"
+           android:shape="rectangle">
+      <corners android:radius="20dp"/>
+      <padding
+        android:left="0dp"
+        android:right="3dp"
+        android:top="0dp"
+        android:bottom="3dp"/>
+      <solid android:color="@color/commitMessage2"/>
+      <stroke
+        android:width="1px"
+        android:color="@color/commitMessage4"/>
+    </shape>
+  </item>
+  <item>
+    <shape xmlns:android="http://schemas.android.com/apk/res/android"
+           android:shape="rectangle">
+      <corners android:radius="20dp"/>
+      <padding
+        android:left="10dp"
+        android:right="10dp"
+        android:top="10dp"
+        android:bottom="10dp"/>
+      <solid android:color="@color/commitMessage"/>
+      <stroke
+        android:width="1px"
+        android:color="@color/commitMessage4"/>
+    </shape>
+  </item>
+</layer-list>
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..dca177c
--- /dev/null
+++ b/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+<android.support.v4.widget.DrawerLayout
+  xmlns:android="http://schemas.android.com/apk/res/android"
+  xmlns:app="http://schemas.android.com/apk/res-auto"
+  android:id="@+id/drawer"
+  android:layout_width="match_parent"
+  android:layout_height="match_parent"
+  android:fitsSystemWindows="true">
+
+  <LinearLayout
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:orientation="vertical">
+
+    <android.support.design.widget.AppBarLayout
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:theme="@style/AppTheme.AppBarOverlay">
+
+      <android.support.v7.widget.Toolbar
+        android:id="@+id/toolbar"
+        android:layout_width="match_parent"
+        android:layout_height="?attr/actionBarSize"
+        android:background="?attr/colorPrimary"
+        app:popupTheme="@style/AppTheme.PopupOverlay"/>
+    </android.support.design.widget.AppBarLayout>
+
+    <FrameLayout
+      android:id="@+id/mainFrame"
+      android:layout_width="match_parent"
+      android:layout_height="match_parent"/>
+  </LinearLayout>
+
+  <ListView
+    android:id="@+id/mainList"
+    android:layout_width="240dp"
+    android:layout_height="match_parent"
+    android:layout_gravity="start"
+    android:choiceMode="singleChoice"
+    android:divider="@color/mainListDivider"
+    android:dividerHeight="1dp"
+    android:listSelector="@drawable/main_selector"
+    android:background="@color/mainList"/>
+</android.support.v4.widget.DrawerLayout>
diff --git a/app/src/main/res/layout/add_reviewer.xml b/app/src/main/res/layout/add_reviewer.xml
new file mode 100644
index 0000000..e93cb73
--- /dev/null
+++ b/app/src/main/res/layout/add_reviewer.xml
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
+             android:id="@+id/reviewerTable"
+             android:layout_width="match_parent"
+             android:layout_height="wrap_content"
+             android:layout_marginBottom="10dp"
+             android:stretchColumns="1"
+             android:shrinkColumns="1"
+             android:background="@drawable/info_table">
+
+  <TableRow>
+
+    <AutoCompleteTextView
+      android:id="@+id/reviewerInput"
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:layout_marginBottom="5dp"
+      android:layout_span="2"
+      android:hint="@string/reviewer_hint"
+      android:inputType="textEmailAddress"
+      android:singleLine="true"
+      android:imeActionLabel="Add"
+      android:imeActionId="4"
+      android:imeOptions="actionSend"/>
+  </TableRow>
+
+  <TableRow>
+
+    <TextView
+      android:id="@+id/reviewersLabel"
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:layout_marginBottom="3dp"
+      android:layout_span="2"
+      android:textSize="20sp"
+      android:text="@string/reviewers"/>
+  </TableRow>
+</TableLayout>
diff --git a/app/src/main/res/layout/change_box.xml b/app/src/main/res/layout/change_box.xml
new file mode 100644
index 0000000..e8eeccf
--- /dev/null
+++ b/app/src/main/res/layout/change_box.xml
@@ -0,0 +1,290 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+              xmlns:reviewit="http://schemas.android.com/apk/res-auto"
+              android:orientation="vertical"
+              android:layout_width="match_parent"
+              android:layout_height="match_parent"
+              android:padding="10dp">
+
+  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:reviewit="http://schemas.android.com/apk/res-auto"
+                android:id="@+id/changeBoxUpperPart"
+                android:orientation="vertical"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:layout_weight="1">
+
+    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                  android:orientation="horizontal"
+                  android:layout_width="match_parent"
+                  android:layout_height="wrap_content">
+
+      <LinearLayout
+        android:orientation="horizontal"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_weight="1">
+
+        <TextView
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:layout_marginRight="3dp"
+          android:textSize="9sp"
+          android:text="@string/project"/>
+
+        <TextView
+          android:id="@+id/project"
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:textSize="9sp"/>
+      </LinearLayout>
+
+      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                    android:orientation="horizontal"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:layout_weight="1">
+
+        <TextView
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:layout_marginRight="3dp"
+          android:textSize="9sp"
+          android:text="@string/branch"/>
+
+        <TextView
+          android:id="@+id/branch"
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:textSize="9sp"/>
+      </LinearLayout>
+
+      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                    android:orientation="horizontal"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:layout_weight="1">
+
+        <TextView
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:layout_marginRight="3dp"
+          android:textSize="9sp"
+          android:text="@string/topic"/>
+
+        <TextView
+          android:id="@+id/topic"
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:textSize="9sp"/>
+      </LinearLayout>
+
+      <TextView
+        android:id="@+id/age"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="9sp"/>
+    </LinearLayout>
+
+    <View
+      android:background="@color/separator"
+      android:layout_height="1dp"
+      android:layout_width="match_parent"
+      android:layout_marginTop="3dp"
+      android:layout_marginBottom="3dp"/>
+
+    <com.google.reviewit.widget.MaxFontSizeTextView
+      android:id="@+id/subject"
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:layout_marginBottom="3dp"
+      android:fontFamily="monospace"
+      reviewit:minTextSize="14sp"
+      reviewit:maxTextSize="18sp"/>
+
+    <com.google.reviewit.widget.MaxFontSizeTextView
+      android:id="@+id/commitMessage"
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:textSize="8sp"
+      android:textColorLink="@color/hyperlink"
+      android:layout_weight="1"
+      android:fontFamily="monospace"
+      reviewit:maxTextSize="13sp"
+      reviewit:maxLineLength="72"
+      reviewit:ellipsize="true"/>
+
+    <View
+      android:background="@color/separator"
+      android:layout_height="1dp"
+      android:layout_width="match_parent"
+      android:layout_marginTop="3dp"
+      android:layout_marginBottom="3dp"/>
+  </LinearLayout>
+
+  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                android:id="@+id/changeBoxLowerPart"
+                android:orientation="horizontal"
+                android:layout_width="match_parent"
+                android:layout_height="wrap_content">
+
+    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                  android:orientation="horizontal"
+                  android:layout_width="wrap_content"
+                  android:layout_height="wrap_content"
+                  android:layout_marginTop="4dp">
+
+      <ImageView
+        android:id="@+id/avatar"
+        android:layout_width="20dp"
+        android:layout_height="20dp"
+        android:layout_marginRight="3dp"/>
+
+      <TextView
+        android:id="@+id/owner"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"/>
+    </LinearLayout>
+
+    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                  android:orientation="horizontal"
+                  android:layout_width="wrap_content"
+                  android:layout_height="wrap_content">
+
+      <View
+        android:layout_width="0dp"
+        android:layout_height="0dp"
+        android:layout_weight="1"
+        />
+
+      <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                   android:layout_width="wrap_content"
+                   android:layout_height="wrap_content">
+
+        <TableRow>
+
+          <TextView
+            android:id="@+id/patchSetIcon"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:gravity="center_horizontal"
+            android:textColor="@color/icon"
+            android:layout_marginTop="-2dp"
+            android:layout_marginRight="2dp"
+            android:text="PS"/>
+
+          <ImageView
+            android:id="@+id/positiveReviewIcon"
+            android:layout_width="16dp"
+            android:layout_height="16dp"
+            android:layout_marginRight="2dp"
+            android:src="@drawable/ic_thumb_up_black_18dp"/>
+
+          <ImageView
+            android:id="@+id/negativeReviewIcon"
+            android:layout_width="16dp"
+            android:layout_height="16dp"
+            android:layout_marginRight="2dp"
+            android:src="@drawable/ic_thumb_down_black_18dp"/>
+
+          <ImageView
+            android:id="@+id/commentIcon"
+            android:layout_width="16dp"
+            android:layout_height="16dp"
+            android:layout_marginRight="2dp"
+            android:src="@drawable/ic_comment_black_16dp"/>
+
+          <ImageView
+            android:id="@+id/reviewerIcon"
+            android:layout_width="16dp"
+            android:layout_height="16dp"
+            android:src="@drawable/ic_face_black_18dp"/>
+        </TableRow>
+
+        <TableRow>
+
+          <TextView
+            android:id="@+id/patchsets"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:gravity="center_horizontal"
+            android:layout_marginTop="-3dp"
+            android:textSize="10sp"/>
+
+          <TextView
+            android:id="@+id/likes"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:gravity="center_horizontal"
+            android:layout_marginTop="-3dp"
+            android:textSize="10sp"/>
+
+          <TextView
+            android:id="@+id/dislikes"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:gravity="center_horizontal"
+            android:layout_marginTop="-3dp"
+            android:textSize="10sp"/>
+
+          <TextView
+            android:id="@+id/comments"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:gravity="center_horizontal"
+            android:layout_marginTop="-3dp"
+            android:textSize="10sp"
+            android:visibility="invisible"/>
+
+          <TextView
+            android:id="@+id/reviewers"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:gravity="center_horizontal"
+            android:layout_marginTop="-3dp"
+            android:textSize="10sp"/>
+        </TableRow>
+      </TableLayout>
+    </LinearLayout>
+  </LinearLayout>
+
+  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                android:id="@+id/changeUrlBox"
+                android:orientation="vertical"
+                android:layout_width="match_parent"
+                android:layout_height="wrap_content"
+                android:visibility="gone">
+
+    <View
+      android:background="@color/separator"
+      android:layout_height="1dp"
+      android:layout_width="match_parent"
+      android:layout_marginTop="3dp"
+      android:layout_marginBottom="3dp"/>
+
+    <TextView
+      android:id="@+id/changeUrl"
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content"
+      android:textColorLink="@color/hyperlink"
+      android:layout_gravity="center_horizontal"
+      android:textSize="12sp"
+      android:autoLink="web"
+      android:linksClickable="true"/>
+  </LinearLayout>
+</LinearLayout>
\ No newline at end of file
diff --git a/app/src/main/res/layout/content_abandon.xml b/app/src/main/res/layout/content_abandon.xml
new file mode 100644
index 0000000..da2b061
--- /dev/null
+++ b/app/src/main/res/layout/content_abandon.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:paddingBottom="@dimen/activity_vertical_margin"
+                android:paddingLeft="@dimen/activity_horizontal_margin"
+                android:paddingRight="@dimen/activity_horizontal_margin"
+                android:paddingTop="@dimen/activity_vertical_margin"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent">
+
+    <LinearLayout
+      android:orientation="vertical"
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content">
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/reason"
+        android:textSize="16dp"/>
+
+      <EditText
+        android:id="@+id/abandonMessageInput"
+        android:inputType="textMultiLine"
+        android:lines="4"
+        android:gravity="top|left"
+        android:layout_height="wrap_content"
+        android:layout_width="match_parent"
+        android:scrollbars="vertical"
+        />
+
+      <Button
+        android:id="@+id/abandonButton"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:background="@color/button"
+        android:textColor="@color/buttonFont"
+        android:text="@string/abandon"/>
+    </LinearLayout>
+  </ScrollView>
+</RelativeLayout>
diff --git a/app/src/main/res/layout/content_add_reviewer.xml b/app/src/main/res/layout/content_add_reviewer.xml
new file mode 100644
index 0000000..1698ac6
--- /dev/null
+++ b/app/src/main/res/layout/content_add_reviewer.xml
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:id="@+id/root"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:paddingBottom="@dimen/activity_vertical_margin"
+                android:paddingTop="@dimen/activity_vertical_margin"
+                android:paddingLeft="@dimen/activity_horizontal_margin"
+                android:paddingRight="@dimen/activity_horizontal_margin"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent">
+
+    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                  xmlns:app="http://schemas.android.com/apk/res-auto"
+                  android:orientation="vertical"
+                  android:layout_width="match_parent"
+                  android:layout_height="match_parent">
+
+      <include layout="@layout/add_reviewer"/>
+
+      <com.google.reviewit.widget.ChangeBox
+        xmlns:android="http://schemas.android.com/apk/res/android"
+        xmlns:app="http://schemas.android.com/apk/res-auto"
+        android:id="@+id/changeBox"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"/>
+
+      <View
+        android:layout_width="0dp"
+        android:layout_height="0dp"
+        android:layout_weight="99"/>
+    </LinearLayout>
+  </ScrollView>
+</RelativeLayout>
diff --git a/app/src/main/res/layout/content_detailed_change.xml b/app/src/main/res/layout/content_detailed_change.xml
new file mode 100644
index 0000000..d0779c6
--- /dev/null
+++ b/app/src/main/res/layout/content_detailed_change.xml
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:id="@+id/root"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <include layout="@layout/progress"/>
+
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent">
+
+    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                  xmlns:app="http://schemas.android.com/apk/res-auto"
+                  android:id="@+id/scrollContent"
+                  android:orientation="vertical"
+                  android:layout_width="wrap_content"
+                  android:layout_height="wrap_content"
+                  android:paddingBottom="@dimen/activity_vertical_margin"
+                  android:paddingLeft="@dimen/activity_horizontal_margin"
+                  android:paddingRight="@dimen/activity_horizontal_margin"
+                  android:paddingTop="@dimen/activity_vertical_margin">
+
+      <com.google.reviewit.widget.ChangeBox
+        xmlns:android="http://schemas.android.com/apk/res/android"
+        xmlns:app="http://schemas.android.com/apk/res-auto"
+        android:id="@+id/changeBox"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"/>
+
+      <View
+        android:layout_width="match_parent"
+        android:layout_height="10dp"/>
+
+      <com.google.reviewit.widget.ApprovalsView
+        xmlns:android="http://schemas.android.com/apk/res/android"
+        xmlns:app="http://schemas.android.com/apk/res-auto"
+        android:id="@+id/approvals"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content">
+      </com.google.reviewit.widget.ApprovalsView>
+
+      <View
+        android:layout_width="match_parent"
+        android:layout_height="10dp"/>
+
+      <include layout="@layout/files"/>
+
+      <View
+        android:layout_width="match_parent"
+        android:layout_height="10dp"/>
+    </LinearLayout>
+  </ScrollView>
+</RelativeLayout>
diff --git a/app/src/main/res/layout/content_error.xml b/app/src/main/res/layout/content_error.xml
new file mode 100644
index 0000000..bb12acb
--- /dev/null
+++ b/app/src/main/res/layout/content_error.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:paddingBottom="@dimen/activity_vertical_margin"
+                android:paddingLeft="@dimen/activity_horizontal_margin"
+                android:paddingRight="@dimen/activity_horizontal_margin"
+                android:paddingTop="@dimen/activity_vertical_margin"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:background="@drawable/error_page">
+
+    <TextView
+      android:id="@+id/error"
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content"
+      android:textSize="6sp"/>
+  </ScrollView>
+
+</RelativeLayout>
diff --git a/app/src/main/res/layout/content_help.xml b/app/src/main/res/layout/content_help.xml
new file mode 100644
index 0000000..439f868
--- /dev/null
+++ b/app/src/main/res/layout/content_help.xml
@@ -0,0 +1,86 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:paddingBottom="@dimen/activity_vertical_margin"
+                android:paddingLeft="@dimen/activity_horizontal_margin"
+                android:paddingRight="@dimen/activity_horizontal_margin"
+                android:paddingTop="@dimen/activity_vertical_margin"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent">
+
+    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                  xmlns:app="http://schemas.android.com/apk/res-auto"
+                  android:orientation="vertical"
+                  android:layout_width="wrap_content"
+                  android:layout_height="wrap_content">
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/about_app"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/disclaimer_app"
+        android:textSize="10sp"
+        android:textColor="@color/errorText"/>
+
+      <View
+        android:background="@color/separator"
+        android:layout_height="1dp"
+        android:layout_width="match_parent"
+        android:layout_marginTop="3dp"
+        android:layout_marginBottom="3dp"/>
+
+      <include layout="@layout/help_actions"/>
+
+      <View
+        android:background="@color/separator"
+        android:layout_height="1dp"
+        android:layout_width="match_parent"
+        android:layout_marginTop="3dp"
+        android:layout_marginBottom="3dp"/>
+
+      <include layout="@layout/help_info"/>
+
+      <View
+        android:background="@color/separator"
+        android:layout_height="1dp"
+        android:layout_width="match_parent"
+        android:layout_marginTop="3dp"
+        android:layout_marginBottom="3dp"/>
+
+      <include layout="@layout/help_menu"/>
+
+      <View
+        android:background="@color/separator"
+        android:layout_height="1dp"
+        android:layout_width="match_parent"
+        android:layout_marginTop="3dp"
+        android:layout_marginBottom="3dp"/>
+
+      <include layout="@layout/licenses"/>
+    </LinearLayout>
+  </ScrollView>
+</RelativeLayout>
diff --git a/app/src/main/res/layout/content_intro1.xml b/app/src/main/res/layout/content_intro1.xml
new file mode 100644
index 0000000..345f0de
--- /dev/null
+++ b/app/src/main/res/layout/content_intro1.xml
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:paddingBottom="@dimen/activity_vertical_margin"
+                android:paddingLeft="@dimen/activity_horizontal_margin"
+                android:paddingRight="@dimen/activity_horizontal_margin"
+                android:paddingTop="@dimen/activity_vertical_margin"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent">
+
+    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                  xmlns:app="http://schemas.android.com/apk/res-auto"
+                  android:orientation="vertical"
+                  android:layout_width="wrap_content"
+                  android:layout_height="wrap_content">
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/about_app"/>
+
+      <View
+        android:background="@color/separator"
+        android:layout_height="1dp"
+        android:layout_width="match_parent"
+        android:layout_marginTop="3dp"
+        android:layout_marginBottom="3dp"/>
+
+      <include layout="@layout/help_actions"/>
+
+      <Button
+        android:id="@+id/continueIntro"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:text="@string/continue_intro"/>
+    </LinearLayout>
+  </ScrollView>
+</RelativeLayout>
diff --git a/app/src/main/res/layout/content_intro2.xml b/app/src/main/res/layout/content_intro2.xml
new file mode 100644
index 0000000..3f875ed
--- /dev/null
+++ b/app/src/main/res/layout/content_intro2.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:paddingBottom="@dimen/activity_vertical_margin"
+                android:paddingLeft="@dimen/activity_horizontal_margin"
+                android:paddingRight="@dimen/activity_horizontal_margin"
+                android:paddingTop="@dimen/activity_vertical_margin"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent">
+
+    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                  xmlns:app="http://schemas.android.com/apk/res-auto"
+                  android:orientation="vertical"
+                  android:layout_width="wrap_content"
+                  android:layout_height="wrap_content">
+
+      <include layout="@layout/help_info"/>
+
+      <Button
+        android:id="@+id/continueIntro"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:text="@string/continue_intro"/>
+    </LinearLayout>
+  </ScrollView>
+</RelativeLayout>
diff --git a/app/src/main/res/layout/content_post_review.xml b/app/src/main/res/layout/content_post_review.xml
new file mode 100644
index 0000000..0347ae0
--- /dev/null
+++ b/app/src/main/res/layout/content_post_review.xml
@@ -0,0 +1,169 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<LinearLayout
+  xmlns:android="http://schemas.android.com/apk/res/android"
+  xmlns:app="http://schemas.android.com/apk/res-auto"
+  android:layout_width="match_parent"
+  android:layout_height="match_parent"
+  android:orientation="vertical"
+  android:paddingBottom="@dimen/activity_vertical_margin"
+  app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <LinearLayout
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:orientation="vertical"
+    android:layout_marginBottom="5dp"
+    android:background="@drawable/navigation_button_bar">
+
+    <include layout="@layout/progress"/>
+
+    <LinearLayout
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:paddingTop="5dp"
+      android:orientation="horizontal">
+
+      <ImageView
+        android:id="@+id/expandCommitMessage"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="-7dp"
+        android:clickable="true"
+        android:src="@drawable/ic_keyboard_arrow_right_white_36dp"/>
+
+      <ImageView
+        android:id="@+id/collapseCommitMessage"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="-7dp"
+        android:clickable="true"
+        android:src="@drawable/ic_keyboard_arrow_down_white_36dp"
+        android:visibility="gone"/>
+
+      <TextView
+        android:id="@+id/subject"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:padding="5dp"
+        android:layout_marginBottom="5dp"
+        android:layout_marginRight="36dp"
+        android:layout_weight="1"
+        android:textSize="9sp"
+        android:background="@drawable/grey_page_border"
+        android:textColor="@color/darkGrey"/>
+    </LinearLayout>
+
+    <LinearLayout
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:orientation="horizontal">
+
+      <ImageView
+        android:id="@+id/emoticon"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginLeft="7dp"
+        android:layout_marginTop="3dp"
+        android:clickable="true"/>
+
+      <View
+        android:layout_width="0dp"
+        android:layout_height="0dp"
+        android:layout_weight="1"/>
+
+      <Button
+        android:id="@+id/postReviewButton"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:background="@color/button"
+        android:textColor="@color/buttonFont"
+        android:layout_marginTop="5dp"
+        android:layout_marginBottom="5dp"
+        android:paddingLeft="5dp"
+        android:paddingRight="5dp"
+        android:text="@string/publish"/>
+
+      <View
+        android:layout_width="0dp"
+        android:layout_height="0dp"
+        android:layout_weight="1"/>
+
+      <Button
+        android:id="@+id/postReviewAndSubmitButton"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:background="@color/button"
+        android:textColor="@color/buttonFont"
+        android:layout_marginTop="5dp"
+        android:layout_marginBottom="5dp"
+        android:paddingLeft="5dp"
+        android:paddingRight="5dp"
+        android:text="@string/publishAndSubmit"/>
+
+      <View
+        android:layout_width="0dp"
+        android:layout_height="0dp"
+        android:layout_weight="1"/>
+    </LinearLayout>
+  </LinearLayout>
+
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:paddingLeft="5dp"
+    android:paddingRight="5dp">
+
+    <LinearLayout
+      android:orientation="vertical"
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content">
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/message"
+        android:textSize="15dp"/>
+
+      <EditText
+        android:id="@+id/changeMessageInput"
+        android:inputType="textMultiLine"
+        android:lines="4"
+        android:gravity="top|left"
+        android:layout_height="wrap_content"
+        android:layout_width="match_parent"
+        android:scrollbars="vertical"/>
+
+      <LinearLayout
+        android:id="@+id/voteInput"
+        android:orientation="vertical"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="10dp"
+        android:layout_marginBottom="10dp">
+      </LinearLayout>
+
+      <com.google.reviewit.widget.ApprovalsView
+        xmlns:android="http://schemas.android.com/apk/res/android"
+        xmlns:app="http://schemas.android.com/apk/res-auto"
+        android:id="@+id/approvals"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content">
+      </com.google.reviewit.widget.ApprovalsView>
+    </LinearLayout>
+  </ScrollView>
+</LinearLayout>
diff --git a/app/src/main/res/layout/content_preferences.xml b/app/src/main/res/layout/content_preferences.xml
new file mode 100644
index 0000000..f08ed24
--- /dev/null
+++ b/app/src/main/res/layout/content_preferences.xml
@@ -0,0 +1,105 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:paddingBottom="@dimen/activity_vertical_margin"
+                android:paddingLeft="@dimen/activity_horizontal_margin"
+                android:paddingRight="@dimen/activity_horizontal_margin"
+                android:paddingTop="@dimen/activity_vertical_margin"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent">
+
+    <LinearLayout
+      android:orientation="vertical"
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content">
+
+      <CheckBox
+        android:id="@+id/colorBackgroundPref"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/pref_color_background"/>
+
+      <CheckBox
+        android:id="@+id/showPatchSetsPref"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/pref_show_patch_sets"/>
+
+      <CheckBox
+        android:id="@+id/showPositiveCodeReviewVotesPref"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/pref_show_positive_code_review_votes"/>
+
+      <CheckBox
+        android:id="@+id/showNegativeCodeReviewVotesPref"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/pref_show_negative_code_review_votes"/>
+
+      <CheckBox
+        android:id="@+id/showCommentsPref"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/pref_show_comments"/>
+
+      <CheckBox
+        android:id="@+id/showReviewersPref"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/pref_show_reviewers"/>
+
+      <CheckBox
+        android:id="@+id/autoFontSize"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/pref_auto_font_size"/>
+
+      <LinearLayout
+        android:orientation="horizontal"
+        android:layout_width="wrap_content"
+        android:layout_height="match_parent">
+
+        <TextView
+          android:id="@+id/fontSize"
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:layout_marginRight="3dp"
+          android:text="@string/pref_font_size"/>
+
+        <EditText
+          android:id="@+id/fontSizeInput"
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:layout_weight="1"
+          android:singleLine="true"/>
+      </LinearLayout>
+
+      <Button
+        android:id="@+id/savePreferences"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:text="@string/save"/>
+    </LinearLayout>
+  </ScrollView>
+</RelativeLayout>
diff --git a/app/src/main/res/layout/content_restore.xml b/app/src/main/res/layout/content_restore.xml
new file mode 100644
index 0000000..5d6e879
--- /dev/null
+++ b/app/src/main/res/layout/content_restore.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:paddingBottom="@dimen/activity_vertical_margin"
+                android:paddingLeft="@dimen/activity_horizontal_margin"
+                android:paddingRight="@dimen/activity_horizontal_margin"
+                android:paddingTop="@dimen/activity_vertical_margin"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent">
+
+    <LinearLayout
+      android:orientation="vertical"
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content">
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/reason"
+        android:textSize="16dp"/>
+
+      <EditText
+        android:id="@+id/restoreMessageInput"
+        android:inputType="textMultiLine"
+        android:lines="4"
+        android:gravity="top|left"
+        android:layout_height="wrap_content"
+        android:layout_width="match_parent"
+        android:scrollbars="vertical"
+        />
+
+      <Button
+        android:id="@+id/restoreButton"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:background="@color/button"
+        android:textColor="@color/buttonFont"
+        android:text="@string/restore"/>
+    </LinearLayout>
+  </ScrollView>
+</RelativeLayout>
diff --git a/app/src/main/res/layout/content_review_changes.xml b/app/src/main/res/layout/content_review_changes.xml
new file mode 100644
index 0000000..456ce76
--- /dev/null
+++ b/app/src/main/res/layout/content_review_changes.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+              android:orientation="vertical"
+              android:layout_width="match_parent"
+              android:layout_height="match_parent">
+
+  <TextView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:gravity="center"
+    android:textSize="40sp"
+    android:text="TODO"/>
+</LinearLayout>
\ No newline at end of file
diff --git a/app/src/main/res/layout/content_server_list.xml b/app/src/main/res/layout/content_server_list.xml
new file mode 100644
index 0000000..0f2f601
--- /dev/null
+++ b/app/src/main/res/layout/content_server_list.xml
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:paddingBottom="@dimen/activity_vertical_margin"
+                android:paddingLeft="@dimen/activity_horizontal_margin"
+                android:paddingRight="@dimen/activity_horizontal_margin"
+                android:paddingTop="@dimen/activity_vertical_margin"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent">
+
+    <LinearLayout
+      android:orientation="vertical"
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content">
+
+      <TextView
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginLeft="5dp"
+        android:layout_marginBottom="5dp"
+        android:textSize="20sp"
+        android:text="@string/servers"/>
+
+      <TableLayout
+        android:id="@+id/serverTable"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginLeft="5dp"
+        android:layout_marginBottom="10dp"
+        android:stretchColumns="2">
+      </TableLayout>
+
+      <Button
+        android:id="@+id/add_server"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/add_server"
+        android:drawableLeft="@drawable/ic_add_black_24dp"/>
+    </LinearLayout>
+  </ScrollView>
+
+</RelativeLayout>
diff --git a/app/src/main/res/layout/content_server_settings.xml b/app/src/main/res/layout/content_server_settings.xml
new file mode 100644
index 0000000..37ee288
--- /dev/null
+++ b/app/src/main/res/layout/content_server_settings.xml
@@ -0,0 +1,184 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+              xmlns:app="http://schemas.android.com/apk/res-auto"
+              android:orientation="vertical"
+              android:layout_width="wrap_content"
+              android:layout_height="wrap_content"
+              android:paddingBottom="@dimen/activity_vertical_margin"
+              android:paddingLeft="@dimen/activity_horizontal_margin"
+              android:paddingRight="@dimen/activity_horizontal_margin"
+              android:paddingTop="@dimen/activity_vertical_margin"
+              app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
+               android:id="@+id/serverInputTable"
+               android:layout_width="match_parent"
+               android:layout_height="wrap_content"
+               android:layout_marginBottom="10dp"
+               android:stretchColumns="1"
+               android:shrinkColumns="1">
+
+    <TableRow
+      android:visibility="gone">
+
+      <TextView
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginRight="3dp"
+        android:text="@string/id"/>
+
+      <EditText
+        android:id="@+id/idInput"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:inputType="text"
+        android:singleLine="true"/>
+    </TableRow>
+
+    <TableRow>
+
+      <TextView
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginRight="3dp"
+        android:text="@string/url"/>
+
+      <AutoCompleteTextView
+        android:id="@+id/urlInput"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:hint="@string/url_hint"
+        android:inputType="textUri"
+        android:singleLine="true"/>
+    </TableRow>
+
+    <TableRow>
+
+      <TextView
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginRight="3dp"
+        android:text="@string/name"/>
+
+      <EditText
+        android:id="@+id/nameInput"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:hint="@string/name_hint"
+        android:inputType="textUri"
+        android:singleLine="true"/>
+    </TableRow>
+
+    <TableRow>
+
+      <LinearLayout
+        android:id="@+id/crendentialsInfo"
+        android:orientation="vertical"
+        android:layout_span="2">
+
+        <TextView
+          android:id="@+id/credentialsInfoText"
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:textColorLink="@color/hyperlink"/>
+
+        <Button
+          android:id="@+id/pasteCredentialsButton"
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:layout_gravity="center_horizontal"
+          android:text="@string/paste_credentials"
+          android:textSize="10sp"
+          android:visibility="gone"/>
+      </LinearLayout>
+    </TableRow>
+
+    <TableRow>
+
+      <TextView
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginRight="3dp"
+        android:text="@string/user"/>
+
+      <EditText
+        android:id="@+id/userInput"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:hint="@string/user_hint"
+        android:inputType="textFilter"
+        android:singleLine="true"/>
+    </TableRow>
+
+    <TableRow>
+
+      <TextView
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginRight="3dp"
+        android:text="@string/password"/>
+
+      <EditText
+        android:id="@+id/passwordInput"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:hint="@string/password_hint"
+        android:inputType="text"
+        android:password="true"
+        android:singleLine="true"/>
+    </TableRow>
+  </TableLayout>
+
+  <LinearLayout
+    android:id="@+id/statusTestConnection"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:orientation="horizontal"
+    android:visibility="gone">
+
+    <ProgressBar
+      android:id="@+id/statusTestConnectionProgress"
+      android:layout_width="wrap_content"
+      android:layout_height="match_parent"
+      android:indeterminate="true"/>
+
+    <TextView
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content"
+      android:layout_marginRight="3dp"
+      android:text="@string/test_server_connection"/>
+
+    <TextView
+      android:id="@+id/statusTestConnectionText"
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content"/>
+  </LinearLayout>
+
+  <Button
+    android:id="@+id/saveServerSettings"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:text="@string/save"/>
+
+  <TextView
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:textSize="14dp"
+    android:layout_marginTop="3dp"
+    android:text="@string/storage_info"/>
+</LinearLayout>
diff --git a/app/src/main/res/layout/content_settings.xml b/app/src/main/res/layout/content_settings.xml
new file mode 100644
index 0000000..41bd70a
--- /dev/null
+++ b/app/src/main/res/layout/content_settings.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:paddingBottom="@dimen/activity_vertical_margin"
+                android:paddingLeft="@dimen/activity_horizontal_margin"
+                android:paddingRight="@dimen/activity_horizontal_margin"
+                android:paddingTop="@dimen/activity_vertical_margin"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent">
+
+    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                  android:orientation="vertical"
+                  android:layout_width="match_parent"
+                  android:layout_height="wrap_content">
+
+      <TextView
+        android:id="@+id/serverConfig"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:text="@string/serverConfig"
+        android:gravity="center_horizontal"
+        android:textSize="20sp"/>
+
+      <View
+        android:background="@color/separator"
+        android:layout_height="1dp"
+        android:layout_width="match_parent"
+        android:layout_marginTop="10dp"
+        android:layout_marginBottom="10dp"/>
+
+      <TextView
+        android:id="@+id/sortConfig"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:text="@string/sortConfig"
+        android:gravity="center_horizontal"
+        android:textSize="20sp"/>
+    </LinearLayout>
+  </ScrollView>
+
+</RelativeLayout>
diff --git a/app/src/main/res/layout/content_sort_changes.xml b/app/src/main/res/layout/content_sort_changes.xml
new file mode 100644
index 0000000..fe0cab7
--- /dev/null
+++ b/app/src/main/res/layout/content_sort_changes.xml
@@ -0,0 +1,216 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:id="@+id/root"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:visibility="invisible"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <include layout="@layout/progress"/>
+
+  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                  xmlns:app="http://schemas.android.com/apk/res-auto"
+                  android:id="@+id/resultBox"
+                  android:orientation="vertical"
+                  android:layout_width="match_parent"
+                  android:layout_height="match_parent">
+
+    <View
+      android:id="@+id/page"
+      android:layout_width="match_parent"
+      android:layout_height="match_parent"
+      android:layout_marginTop="@dimen/activity_vertical_margin"
+      android:layout_marginRight="@dimen/activity_horizontal_margin"
+      android:layout_marginLeft="@dimen/activity_horizontal_margin"
+      android:layout_marginBottom="@dimen/reviewit_bottom_area_height"
+      android:visibility="gone"/>
+
+    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                  xmlns:app="http://schemas.android.com/apk/res-auto"
+                  android:orientation="horizontal"
+                  android:layout_alignParentBottom="true"
+                  android:layout_width="match_parent"
+                  android:layout_height="@dimen/reviewit_bottom_area_height">
+
+      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                    xmlns:app="http://schemas.android.com/apk/res-auto"
+                    android:id="@+id/ignoreLayout"
+                    android:orientation="vertical"
+                    android:layout_width="wrap_content"
+                    android:layout_height="match_parent"
+                    android:paddingRight="15dp"
+                    android:layout_marginTop="15dp"
+                    android:layout_marginBottom="@dimen/activity_vertical_margin">
+
+        <View
+          android:layout_width="0dp"
+          android:layout_height="0dp"
+          android:layout_weight="1"
+          />
+
+        <ImageView
+          android:id="@+id/ignoreButton"
+          android:layout_width="80dp"
+          android:layout_height="80dp"
+          android:clickable="true"
+          android:src="@drawable/ic_visibility_off_black_48dp"/>
+
+        <View
+          android:layout_width="0dp"
+          android:layout_height="0dp"
+          android:layout_weight="1"/>
+      </LinearLayout>
+
+      <View
+        android:layout_width="0dp"
+        android:layout_height="0dp"
+        android:layout_weight="1"
+        />
+
+      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                    xmlns:app="http://schemas.android.com/apk/res-auto"
+                    android:orientation="vertical"
+                    android:layout_width="wrap_content"
+                    android:layout_height="match_parent">
+
+        <View
+          android:layout_width="0dp"
+          android:layout_height="0dp"
+          android:layout_weight="1"/>
+
+        <ImageView
+          android:id="@+id/skipButton"
+          android:layout_width="110dp"
+          android:layout_height="60dp"
+          android:paddingLeft="25dp"
+          android:paddingRight="25dp"
+          android:paddingTop="15dp"
+          android:clickable="true"
+          android:src="@drawable/ic_fast_forward_black_48dp"/>
+      </LinearLayout>
+
+      <View
+        android:layout_width="0dp"
+        android:layout_height="0dp"
+        android:layout_weight="1"/>
+
+      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                    xmlns:app="http://schemas.android.com/apk/res-auto"
+                    android:id="@+id/starLayout"
+                    android:orientation="vertical"
+                    android:layout_width="wrap_content"
+                    android:layout_height="match_parent"
+                    android:paddingLeft="15dp"
+                    android:layout_marginTop="15dp"
+                    android:layout_marginBottom="@dimen/activity_vertical_margin">
+
+        <View
+          android:layout_width="0dp"
+          android:layout_height="0dp"
+          android:layout_weight="1"
+          />
+
+        <ImageView
+          android:id="@+id/starButton"
+          android:layout_width="80dp"
+          android:layout_height="80dp"
+          android:clickable="true"
+          android:src="@drawable/ic_star_black_48dp"/>
+
+        <View
+          android:layout_width="0dp"
+          android:layout_height="0dp"
+          android:layout_weight="1"
+          />
+      </LinearLayout>
+    </LinearLayout>
+  </RelativeLayout>
+
+  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:id="@+id/noResultBox"
+                android:orientation="vertical"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:layout_marginTop="@dimen/activity_vertical_margin"
+                android:layout_marginRight="@dimen/activity_horizontal_margin"
+                android:layout_marginLeft="@dimen/activity_horizontal_margin"
+                android:layout_marginBottom="@dimen/reviewit_bottom_area_height"
+                android:paddingTop="@dimen/activity_vertical_margin"
+                android:background="@drawable/no_result_page_border"
+                android:visibility="gone">
+
+    <TextView
+      android:id="@+id/noResultBoxText"
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:gravity="center_horizontal"
+      android:textSize="24sp"/>
+
+    <View
+      android:background="@color/separator"
+      android:layout_height="1dp"
+      android:layout_width="match_parent"
+      android:layout_marginTop="3dp"
+      android:layout_marginBottom="3dp"/>
+
+    <ImageView
+      android:id="@+id/reloadButton"
+      android:layout_width="match_parent"
+      android:layout_height="150dp"
+      android:layout_marginTop="20dp"
+      android:gravity="center_horizontal"
+      android:clickable="true"
+      android:src="@drawable/ic_refresh_black_48dp"/>
+  </LinearLayout>
+
+  <LinearLayout
+    android:id="@+id/loadingBox"
+    android:orientation="vertical"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:layout_marginTop="@dimen/activity_vertical_margin"
+    android:layout_marginRight="@dimen/activity_horizontal_margin"
+    android:layout_marginLeft="@dimen/activity_horizontal_margin"
+    android:layout_marginBottom="@dimen/reviewit_bottom_area_height"
+    android:paddingTop="@dimen/activity_vertical_margin"
+    android:background="@drawable/no_result_page_border"
+    android:visibility="gone">
+
+    <TextView
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:gravity="center_horizontal"
+      android:textSize="24sp"
+      android:text="@string/loading"/>
+
+    <View
+      android:background="@color/separator"
+      android:layout_height="1dp"
+      android:layout_width="match_parent"
+      android:layout_marginTop="3dp"
+      android:layout_marginBottom="3dp"/>
+
+    <ProgressBar
+      android:layout_marginTop="20dp"
+      android:layout_width="match_parent"
+      android:layout_height="150dp"
+      android:indeterminate="true"/>
+  </LinearLayout>
+</RelativeLayout>
diff --git a/app/src/main/res/layout/content_sort_settings.xml b/app/src/main/res/layout/content_sort_settings.xml
new file mode 100644
index 0000000..076d0c8
--- /dev/null
+++ b/app/src/main/res/layout/content_sort_settings.xml
@@ -0,0 +1,127 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                xmlns:app="http://schemas.android.com/apk/res-auto"
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:paddingBottom="@dimen/activity_vertical_margin"
+                android:paddingLeft="@dimen/activity_horizontal_margin"
+                android:paddingRight="@dimen/activity_horizontal_margin"
+                android:paddingTop="@dimen/activity_vertical_margin"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent">
+
+    <LinearLayout
+      android:orientation="vertical"
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content">
+
+      <TableLayout
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginBottom="10dp"
+        android:stretchColumns="1"
+        android:shrinkColumns="1">
+
+        <TableRow>
+
+          <TextView
+            android:id="@+id/incompleteSettings"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_marginRight="3dp"
+            android:layout_span="2"
+            android:textColor="@color/errorText"
+            android:text="@string/incompleteSettings"/>
+        </TableRow>
+
+        <TableRow>
+
+          <TextView
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_marginRight="3dp"
+            android:text="@string/server"/>
+
+          <LinearLayout
+            android:orientation="horizontal"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content">
+
+            <Spinner
+              android:id="@+id/serverIdInput"
+              android:layout_width="wrap_content"
+              android:layout_height="wrap_content"
+              android:layout_weight="1"
+              android:background="@android:drawable/btn_dropdown"
+              android:spinnerMode="dropdown"/>
+
+            <Button
+              android:id="@+id/edit_server"
+              android:layout_width="45dp"
+              android:layout_height="wrap_content"
+              android:drawableLeft="@drawable/ic_create_black_24dp"/>
+          </LinearLayout>
+        </TableRow>
+
+        <TableRow>
+
+          <TextView
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_marginRight="3dp"
+            android:text="@string/query"/>
+
+          <EditText
+            android:id="@+id/queryInput"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:hint="@string/query_hint"
+            android:inputType="textFilter"
+            android:singleLine="true"/>
+        </TableRow>
+
+        <TableRow>
+
+          <TextView
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_marginRight="3dp"
+            android:text="@string/label"/>
+
+          <EditText
+            android:id="@+id/labelInput"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:hint="@string/label_hint"
+            android:inputType="textFilter"
+            android:singleLine="true"/>
+        </TableRow>
+      </TableLayout>
+
+      <Button
+        android:id="@+id/saveQuerySettings"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:text="@string/save"/>
+    </LinearLayout>
+  </ScrollView>
+
+</RelativeLayout>
diff --git a/app/src/main/res/layout/content_unified_diff.xml b/app/src/main/res/layout/content_unified_diff.xml
new file mode 100644
index 0000000..70b2ca7
--- /dev/null
+++ b/app/src/main/res/layout/content_unified_diff.xml
@@ -0,0 +1,169 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+              xmlns:app="http://schemas.android.com/apk/res-auto"
+              android:layout_width="match_parent"
+              android:layout_height="match_parent"
+              android:orientation="vertical"
+              app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+  <com.google.reviewit.widget.ScrollWithHeadingsView
+    xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    android:id="@+id/unifiedDiffRoot"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:layout_weight="1">
+  </com.google.reviewit.widget.ScrollWithHeadingsView>
+
+  <LinearLayout
+    android:id="@+id/postReviewPanel"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:background="@drawable/navigation_button_bar"
+    android:orientation="vertical"
+    android:visibility="gone">
+
+    <com.google.reviewit.widget.PostReviewView
+      xmlns:android="http://schemas.android.com/apk/res/android"
+      xmlns:app="http://schemas.android.com/apk/res-auto"
+      android:id="@+id/postReview"
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:background="@color/postReview"
+      android:layout_marginTop="5dp"
+      android:layout_marginLeft="5dp"
+      android:layout_marginRight="5dp"
+      android:visibility="gone">
+    </com.google.reviewit.widget.PostReviewView>
+
+    <ImageView
+      android:id="@+id/expandPostReviewPanel"
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content"
+      android:layout_gravity="center_horizontal"
+      android:clickable="true"
+      android:src="@drawable/ic_keyboard_arrow_up_white_36dp"/>
+
+    <ImageView
+      android:id="@+id/collapsePostReviewPanel"
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content"
+      android:layout_gravity="center_horizontal"
+      android:clickable="true"
+      android:src="@drawable/ic_keyboard_arrow_down_white_36dp"
+      android:visibility="gone"/>
+  </LinearLayout>
+
+
+  <LinearLayout
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:orientation="vertical"
+    android:background="@drawable/navigation_button_bar">
+
+    <com.google.reviewit.widget.PostReviewView
+      xmlns:android="http://schemas.android.com/apk/res/android"
+      xmlns:app="http://schemas.android.com/apk/res-auto"
+      android:id="@+id/postReviewNav"
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:background="@color/postReview"
+      android:layout_marginTop="5dp"
+      android:layout_marginLeft="5dp"
+      android:layout_marginRight="5dp"
+      android:visibility="gone">
+    </com.google.reviewit.widget.PostReviewView>
+
+    <RelativeLayout
+      android:id="@+id/navigationButtons"
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:orientation="horizontal"
+      android:visibility="gone">
+
+      <LinearLayout
+        android:id="@+id/navigationPrev"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:orientation="horizontal"
+        android:layout_alignParentLeft="true"
+        android:visibility="gone">
+
+        <ImageView
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:layout_margin="3dp"
+          android:layout_gravity="center_vertical"
+          android:src="@drawable/ic_arrow_back_white_36dp"/>
+
+        <TextView
+          android:id="@+id/navigationPrevFile"
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:textColor="@color/navBarFont"
+          android:layout_gravity="center_vertical"
+          android:textSize="10sp"
+          android:layout_marginRight="4dp"/>
+      </LinearLayout>
+
+      <ImageView
+        android:id="@+id/expandPostReviewPanelNav"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:clickable="true"
+        android:layout_centerInParent="true"
+        android:src="@drawable/ic_keyboard_arrow_up_white_36dp"/>
+
+      <ImageView
+        android:id="@+id/collapsePostReviewPanelNav"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:clickable="true"
+        android:layout_centerInParent="true"
+        android:src="@drawable/ic_keyboard_arrow_down_white_36dp"
+        android:visibility="gone"/>
+
+      <LinearLayout
+        android:id="@+id/navigationNext"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:orientation="horizontal"
+        android:layout_alignParentRight="true"
+        android:visibility="gone">
+
+        <TextView
+          android:id="@+id/navigationNextFile"
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:textColor="@color/navBarFont"
+          android:layout_gravity="center_vertical"
+          android:gravity="right"
+          android:textSize="10sp"
+          android:layout_marginLeft="4dp"/>
+
+        <ImageView
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:layout_margin="3dp"
+          android:layout_gravity="center_vertical"
+          android:src="@drawable/ic_arrow_forward_white_36dp"/>
+      </LinearLayout>
+    </RelativeLayout>
+  </LinearLayout>
+
+</LinearLayout>
diff --git a/app/src/main/res/layout/files.xml b/app/src/main/res/layout/files.xml
new file mode 100644
index 0000000..597b1c8
--- /dev/null
+++ b/app/src/main/res/layout/files.xml
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+              android:orientation="vertical"
+              android:layout_width="match_parent"
+              android:layout_height="wrap_content"
+              android:background="@drawable/info_table">
+
+  <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
+               android:id="@+id/filesTable"
+               android:layout_width="match_parent"
+               android:layout_height="wrap_content"
+               android:stretchColumns="1"
+               android:shrinkColumns="1">
+
+    <TableRow>
+
+      <LinearLayout
+        android:orientation="horizontal"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_span="2">
+
+        <ImageView
+          android:id="@+id/reviewButton"
+          android:layout_width="24dp"
+          android:layout_height="24dp"
+          android:layout_marginTop="3dp"
+          android:layout_marginRight="3dp"
+          android:clickable="true"
+          android:src="@drawable/ic_feedback_black_18dp"/>
+
+        <TextView
+          android:id="@+id/filesLabel"
+          android:layout_width="match_parent"
+          android:layout_height="wrap_content"
+          android:layout_marginBottom="3dp"
+          android:textSize="20dp"
+          android:text="@string/files"/>
+      </LinearLayout>
+    </TableRow>
+  </TableLayout>
+
+  <LinearLayout
+    android:id="@+id/fileButtons"
+    android:orientation="horizontal"
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:visibility="gone">
+
+    <View
+      android:id="@+id/showMoreArea"
+      android:layout_width="0dp"
+      android:layout_height="0dp"
+      android:layout_weight="1"
+      />
+
+    <Button
+      android:id="@+id/showMore"
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content"
+      android:textColor="@color/hyperlink"
+      android:textSize="9sp"
+      android:textAllCaps="false"
+      android:layout_marginTop="-10dp"
+      android:layout_marginBottom="-10dp"
+      android:background="@color/transparent"/>
+
+    <View
+      android:layout_width="0dp"
+      android:layout_height="0dp"
+      android:layout_weight="1"
+      />
+
+    <Button
+      android:id="@+id/showAll"
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content"
+      android:textColor="@color/hyperlink"
+      android:textSize="9sp"
+      android:textAllCaps="false"
+      android:layout_marginTop="-10dp"
+      android:layout_marginBottom="-10dp"
+      android:background="@color/transparent"/>
+
+    <View
+      android:layout_width="0dp"
+      android:layout_height="0dp"
+      android:layout_weight="1"
+      />
+  </LinearLayout>
+</LinearLayout>
diff --git a/app/src/main/res/layout/help_actions.xml b/app/src/main/res/layout/help_actions.xml
new file mode 100644
index 0000000..e18fbec
--- /dev/null
+++ b/app/src/main/res/layout/help_actions.xml
@@ -0,0 +1,105 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+              android:orientation="vertical"
+              android:layout_width="wrap_content"
+              android:layout_height="wrap_content">
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:text="@string/actions"/>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:text="@string/disclaimer_actions"
+    android:textSize="10sp"
+    android:textColor="@color/errorText"/>
+
+  <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
+               android:layout_width="wrap_content"
+               android:layout_height="wrap_content"
+               android:layout_marginTop="3dp"
+               android:stretchColumns="1"
+               android:shrinkColumns="1">
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:src="@drawable/ic_star_black_16dp"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_star"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:src="@drawable/ic_visibility_off_black_18dp"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_ignore"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:src="@drawable/ic_fast_forward_black_18dp"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_skip"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="24dp"
+        android:layout_height="24dp"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:src="@drawable/ic_restore_black_18dp"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_undo"/>
+    </TableRow>
+  </TableLayout>
+</LinearLayout>
\ No newline at end of file
diff --git a/app/src/main/res/layout/help_info.xml b/app/src/main/res/layout/help_info.xml
new file mode 100644
index 0000000..ac54f1f
--- /dev/null
+++ b/app/src/main/res/layout/help_info.xml
@@ -0,0 +1,207 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+              android:orientation="vertical"
+              android:layout_width="wrap_content"
+              android:layout_height="wrap_content">
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:text="@string/info"/>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:textSize="10sp"
+    android:text="@string/about_info"/>
+
+  <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
+               android:layout_width="wrap_content"
+               android:layout_height="wrap_content"
+               android:layout_marginTop="3dp"
+               android:stretchColumns="1"
+               android:shrinkColumns="1">
+
+    <TableRow>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="5dp"
+        android:textColor="@android:color/black"
+        android:textSize="20sp"
+        android:text="PS"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_patch_sets"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:src="@drawable/ic_thumb_up_black_18dp"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_thumb_up"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:src="@drawable/ic_thumb_down_black_18dp"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_thumb_down"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:src="@drawable/ic_comment_black_16dp"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_comments"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:src="@drawable/ic_face_black_18dp"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_reviewers"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="24dp"
+        android:layout_height="24dp"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:layout_marginBottom="3dp"
+        android:background="@color/verifiedPlusOne"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_verified_plus_one"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="24dp"
+        android:layout_height="24dp"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:layout_marginBottom="3dp"
+        android:background="@color/verifiedMinusOne"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_verified_minus_one"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="24dp"
+        android:layout_height="24dp"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:layout_marginBottom="3dp"
+        android:background="@color/nonMergable"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_non_mergeable"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="24dp"
+        android:layout_height="24dp"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:layout_marginBottom="3dp"
+        android:background="@color/abandoned"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_abandoned"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="24dp"
+        android:layout_height="24dp"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:layout_marginBottom="3dp"
+        android:background="@color/merged"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_merged"/>
+    </TableRow>
+  </TableLayout>
+</LinearLayout>
\ No newline at end of file
diff --git a/app/src/main/res/layout/help_menu.xml b/app/src/main/res/layout/help_menu.xml
new file mode 100644
index 0000000..4c4db1a
--- /dev/null
+++ b/app/src/main/res/layout/help_menu.xml
@@ -0,0 +1,114 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+              android:orientation="vertical"
+              android:layout_width="wrap_content"
+              android:layout_height="wrap_content">
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:text="@string/menu"/>
+
+  <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
+               android:layout_width="wrap_content"
+               android:layout_height="wrap_content"
+               android:layout_marginTop="3dp"
+               android:stretchColumns="1"
+               android:shrinkColumns="1">
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:src="@drawable/ic_settings_black_18dp"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_settings"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:src="@drawable/ic_refresh_black_18dp"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_reload_change"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:src="@drawable/ic_restore_black_18dp"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_undo"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="27dp"
+        android:layout_height="27dp"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:src="@drawable/ic_menu_black_18dp"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_preferences"/>
+    </TableRow>
+
+    <TableRow>
+
+      <ImageView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="3dp"
+        android:layout_marginRight="3dp"
+        android:src="@drawable/ic_person_add_black_18dp"/>
+
+      <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textSize="10sp"
+        android:text="@string/about_add_reviewer"/>
+    </TableRow>
+  </TableLayout>
+</LinearLayout>
\ No newline at end of file
diff --git a/app/src/main/res/layout/licenses.xml b/app/src/main/res/layout/licenses.xml
new file mode 100644
index 0000000..2936315
--- /dev/null
+++ b/app/src/main/res/layout/licenses.xml
@@ -0,0 +1,194 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+              android:orientation="vertical"
+              android:layout_width="match_parent"
+              android:layout_height="match_parent">
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:text="@string/licenses"/>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:text="@string/about_licenses"
+    android:textSize="10sp"/>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:textSize="10sp"
+    android:textStyle="bold"
+    android:text="@string/apache2.0"/>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:textSize="10sp"
+    android:text="@string/apache2.0_link"
+    android:linksClickable="true"
+    android:autoLink="web"
+    android:textColorLink="@color/hyperlink"/>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:textSize="10sp"
+    android:text="@string/lib_gerrit_rest_java_client"
+    android:linksClickable="true"
+    android:autoLink="web"
+    android:textColorLink="@color/hyperlink"/>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:textSize="10sp"
+    android:text="@string/lib_gson"
+    android:linksClickable="true"
+    android:autoLink="web"
+    android:textColorLink="@color/hyperlink"/>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:textSize="10sp"
+    android:text="@string/lib_guava"
+    android:linksClickable="true"
+    android:autoLink="web"
+    android:textColorLink="@color/hyperlink"/>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:textSize="10sp"
+    android:text="@string/lib_httpclient_android"
+    android:linksClickable="true"
+    android:autoLink="web"
+    android:textColorLink="@color/hyperlink"/>
+
+  <HorizontalScrollView
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:layout_marginBottom="5dp">
+
+    <TextView
+      android:id="@+id/license_apache2.0"
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content"
+      android:layout_marginTop="5dp"
+      android:padding="2dp"
+      android:fontFamily="monospace"
+      android:textSize="7sp"
+      android:textColor="@color/licenseColor"
+      android:background="@color/licenseBox"
+      android:linksClickable="true"
+      android:autoLink="web"
+      android:textColorLink="@color/hyperlink"/>
+  </HorizontalScrollView>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:textSize="10sp"
+    android:textStyle="bold"
+    android:text="@string/cc_by_3.0"/>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:textSize="10sp"
+    android:text="@string/cc_by_3.0_link"
+    android:linksClickable="true"
+    android:autoLink="web"
+    android:textColorLink="@color/hyperlink"/>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:textSize="10sp"
+    android:text="@string/lib_diffy"
+    android:linksClickable="true"
+    android:autoLink="web"
+    android:textColorLink="@color/hyperlink"/>
+
+  <HorizontalScrollView
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:layout_marginBottom="5dp">
+
+    <TextView
+      android:id="@+id/license_cc_by_3.0"
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content"
+      android:layout_marginTop="5dp"
+      android:padding="2dp"
+      android:fontFamily="monospace"
+      android:textSize="7sp"
+      android:textColor="@color/licenseColor"
+      android:background="@color/licenseBox"
+      android:linksClickable="true"
+      android:autoLink="web"
+      android:textColorLink="@color/hyperlink"/>
+  </HorizontalScrollView>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:textSize="10sp"
+    android:textStyle="bold"
+    android:text="@string/cc_by_4.0"/>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:textSize="10sp"
+    android:text="@string/cc_by_4.0_link"
+    android:linksClickable="true"
+    android:autoLink="web"
+    android:textColorLink="@color/hyperlink"/>
+
+  <TextView
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:textSize="10sp"
+    android:text="@string/lib_material_icons"
+    android:linksClickable="true"
+    android:autoLink="web"
+    android:textColorLink="@color/hyperlink"/>
+
+  <HorizontalScrollView
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:layout_marginBottom="5dp">
+
+    <TextView
+      android:id="@+id/license_cc_by_4.0"
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content"
+      android:layout_marginTop="5dp"
+      android:padding="2dp"
+      android:fontFamily="monospace"
+      android:textSize="7sp"
+      android:textColor="@color/licenseColor"
+      android:background="@color/licenseBox"
+      android:linksClickable="true"
+      android:autoLink="web"
+      android:textColorLink="@color/hyperlink"/>
+  </HorizontalScrollView>
+</LinearLayout>
\ No newline at end of file
diff --git a/app/src/main/res/layout/main_list_item.xml b/app/src/main/res/layout/main_list_item.xml
new file mode 100644
index 0000000..6e4adc5
--- /dev/null
+++ b/app/src/main/res/layout/main_list_item.xml
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                android:layout_width="match_parent"
+                android:layout_height="48dp"
+                android:background="@drawable/main_selector">
+
+  <ImageView
+    android:id="@+id/mainListItemIcon"
+    android:layout_width="25dp"
+    android:layout_height="wrap_content"
+    android:layout_alignParentLeft="true"
+    android:layout_marginLeft="12dp"
+    android:layout_marginRight="12dp"
+    android:layout_centerVertical="true"/>
+
+  <TextView
+    android:id="@+id/mainListItemTitle"
+    android:layout_width="wrap_content"
+    android:layout_height="match_parent"
+    android:layout_toRightOf="@id/mainListItemIcon"
+    android:minHeight="?android:attr/listPreferredItemHeightSmall"
+    android:textAppearance="?android:attr/textAppearanceListItemSmall"
+    android:textColor="@color/mainItemTitle"
+    android:gravity="center_vertical"
+    android:paddingRight="40dp"/>
+
+  <TextView
+    android:id="@+id/mainListItemCounter"
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:background="@drawable/counter"
+    android:layout_alignParentRight="true"
+    android:layout_centerVertical="true"
+    android:layout_marginRight="8dp"
+    android:textColor="@color/counterText"/>
+</RelativeLayout>
\ No newline at end of file
diff --git a/app/src/main/res/layout/progress.xml b/app/src/main/res/layout/progress.xml
new file mode 100644
index 0000000..8da14a2
--- /dev/null
+++ b/app/src/main/res/layout/progress.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<ProgressBar
+  xmlns:android="http://schemas.android.com/apk/res/android"
+  android:id="@+id/progress"
+  android:layout_width="match_parent"
+  android:layout_height="wrap_content"
+  android:indeterminate="true"
+  android:maxHeight="2dp"
+  android:minHeight="2dp"
+  android:indeterminateDrawable="@drawable/progress"
+  style="?android:attr/progressBarStyleHorizontal"/>
\ No newline at end of file
diff --git a/app/src/main/res/layout/server_settings.xml b/app/src/main/res/layout/server_settings.xml
new file mode 100644
index 0000000..2c43c91
--- /dev/null
+++ b/app/src/main/res/layout/server_settings.xml
@@ -0,0 +1,178 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+              android:orientation="vertical"
+              android:layout_width="wrap_content"
+              android:layout_height="wrap_content">
+
+  <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
+               android:id="@+id/serverInputTable"
+               android:layout_width="match_parent"
+               android:layout_height="wrap_content"
+               android:layout_marginBottom="10dp"
+               android:stretchColumns="1"
+               android:shrinkColumns="1">
+
+    <TableRow
+      android:visibility="gone">
+
+      <TextView
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginRight="3dp"
+        android:text="@string/id"/>
+
+      <EditText
+        android:id="@+id/idInput"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:inputType="text"
+        android:singleLine="true"/>
+    </TableRow>
+
+    <TableRow>
+
+      <TextView
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginRight="3dp"
+        android:text="@string/url"/>
+
+      <AutoCompleteTextView
+        android:id="@+id/urlInput"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:hint="@string/url_hint"
+        android:inputType="textUri"
+        android:singleLine="true"/>
+    </TableRow>
+
+    <TableRow>
+
+      <TextView
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginRight="3dp"
+        android:text="@string/name"/>
+
+      <EditText
+        android:id="@+id/nameInput"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:hint="@string/name_hint"
+        android:inputType="textUri"
+        android:singleLine="true"/>
+    </TableRow>
+
+    <TableRow>
+
+      <LinearLayout
+        android:id="@+id/crendentialsInfo"
+        android:orientation="vertical"
+        android:layout_span="2">
+
+        <TextView
+          android:id="@+id/credentialsInfoText"
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:textColorLink="@color/hyperlink"/>
+
+        <Button
+          android:id="@+id/pasteCredentialsButton"
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:layout_gravity="center_horizontal"
+          android:text="@string/paste_credentials"
+          android:textSize="10sp"
+          android:visibility="gone"/>
+      </LinearLayout>
+    </TableRow>
+
+    <TableRow>
+
+      <TextView
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginRight="3dp"
+        android:text="@string/user"/>
+
+      <EditText
+        android:id="@+id/userInput"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:hint="@string/user_hint"
+        android:inputType="textFilter"
+        android:singleLine="true"/>
+    </TableRow>
+
+    <TableRow>
+
+      <TextView
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginRight="3dp"
+        android:text="@string/password"/>
+
+      <EditText
+        android:id="@+id/passwordInput"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:hint="@string/password_hint"
+        android:inputType="text"
+        android:password="true"
+        android:singleLine="true"/>
+    </TableRow>
+  </TableLayout>
+
+  <LinearLayout
+    android:id="@+id/statusTestConnection"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:orientation="horizontal"
+    android:visibility="gone">
+
+    <ProgressBar
+      android:id="@+id/statusTestConnectionProgress"
+      android:layout_width="wrap_content"
+      android:layout_height="match_parent"
+      android:indeterminate="true"/>
+
+    <TextView
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content"
+      android:layout_marginRight="3dp"
+      android:text="@string/test_server_connection"/>
+
+    <TextView
+      android:id="@+id/statusTestConnectionText"
+      android:layout_width="wrap_content"
+      android:layout_height="wrap_content"/>
+  </LinearLayout>
+
+  <Button
+    android:id="@+id/saveServerSettings"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:text="@string/save"/>
+
+  <TextView
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:textSize="14dp"
+    android:layout_marginTop="3dp"
+    android:text="@string/storage_info"/>
+</LinearLayout>
diff --git a/app/src/main/res/menu/menu_detailed_change.xml b/app/src/main/res/menu/menu_detailed_change.xml
new file mode 100644
index 0000000..3e930fc
--- /dev/null
+++ b/app/src/main/res/menu/menu_detailed_change.xml
@@ -0,0 +1,58 @@
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
+      xmlns:app="http://schemas.android.com/apk/res-auto"
+      xmlns:tools="http://schemas.android.com/tools"
+      tools:context=".DetailedChangeFragment">
+  <item
+    android:id="@+id/action_ignore"
+    android:orderInCategory="100"
+    android:title="@string/action_ignore"
+    android:icon="@drawable/ic_visibility_off_white_18dp"
+    app:showAsAction="always"/>
+  <item
+    android:id="@+id/action_skip"
+    android:orderInCategory="100"
+    android:title="@string/action_skip"
+    android:icon="@drawable/ic_fast_forward_white_18dp"
+    app:showAsAction="always"/>
+  <item
+    android:id="@+id/action_star"
+    android:orderInCategory="100"
+    android:title="@string/action_star"
+    android:icon="@drawable/ic_star_white_16dp"
+    app:showAsAction="always"/>
+  <item
+    android:id="@+id/action_add_reviewer"
+    android:orderInCategory="100"
+    android:title="@string/action_add_reviewer"
+    android:icon="@drawable/ic_person_add_white_18dp"
+    app:showAsAction="never"/>
+  <item
+    android:id="@+id/action_abandon"
+    android:orderInCategory="100"
+    android:title="@string/action_abandon"
+    app:showAsAction="never"/>
+  <item
+    android:id="@+id/action_restore"
+    android:orderInCategory="100"
+    android:title="@string/action_restore"
+    app:showAsAction="never"/>
+  <item
+    android:id="@+id/action_help"
+    android:orderInCategory="100"
+    android:title="@string/action_help"
+    app:showAsAction="never"/>
+</menu>
\ No newline at end of file
diff --git a/app/src/main/res/menu/menu_settings.xml b/app/src/main/res/menu/menu_settings.xml
new file mode 100644
index 0000000..9f88738
--- /dev/null
+++ b/app/src/main/res/menu/menu_settings.xml
@@ -0,0 +1,24 @@
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
+      xmlns:app="http://schemas.android.com/apk/res-auto"
+      xmlns:tools="http://schemas.android.com/tools"
+      tools:context=".SettingsActivity">
+  <item
+    android:id="@+id/action_clean_avatar_cache"
+    android:orderInCategory="100"
+    android:title="@string/action_clean_avatar_cache"
+    app:showAsAction="never"/>
+</menu>
\ No newline at end of file
diff --git a/app/src/main/res/menu/menu_sort_changes.xml b/app/src/main/res/menu/menu_sort_changes.xml
new file mode 100644
index 0000000..cb5d24b
--- /dev/null
+++ b/app/src/main/res/menu/menu_sort_changes.xml
@@ -0,0 +1,61 @@
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
+      xmlns:app="http://schemas.android.com/apk/res-auto">
+  <item
+    android:id="@+id/action_undo"
+    android:orderInCategory="100"
+    android:title="@string/action_undo"
+    android:icon="@drawable/ic_restore_white_18dp"
+    app:showAsAction="always"/>
+  <item
+    android:id="@+id/action_reload_change"
+    android:orderInCategory="100"
+    android:title="@string/action_reload_change"
+    android:icon="@drawable/ic_refresh_white_18dp"
+    app:showAsAction="always"/>
+  <item
+    android:id="@+id/action_add_reviewer"
+    android:orderInCategory="100"
+    android:title="@string/action_add_reviewer"
+    android:icon="@drawable/ic_person_add_white_18dp"
+    app:showAsAction="never"/>
+  <item
+    android:id="@+id/action_abandon"
+    android:orderInCategory="100"
+    android:title="@string/action_abandon"
+    app:showAsAction="never"/>
+  <item
+    android:id="@+id/action_restore"
+    android:orderInCategory="100"
+    android:title="@string/action_restore"
+    app:showAsAction="never"/>
+  <item
+    android:id="@+id/action_reload_query"
+    android:orderInCategory="100"
+    android:title="@string/action_reload_query"
+    app:showAsAction="never"/>
+  <item
+    android:id="@+id/action_preferences"
+    android:orderInCategory="100"
+    android:title="@string/action_preferences"
+    android:icon="@drawable/ic_menu_white_18dp"
+    app:showAsAction="never"/>
+  <item
+    android:id="@+id/action_help"
+    android:orderInCategory="100"
+    android:title="@string/action_help"
+    app:showAsAction="never"/>
+</menu>
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..cde69bc
--- /dev/null
+++ b/app/src/main/res/mipmap-hdpi/ic_launcher.png
Binary files differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..c133a0c
--- /dev/null
+++ b/app/src/main/res/mipmap-mdpi/ic_launcher.png
Binary files differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..bfa42f0
--- /dev/null
+++ b/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Binary files differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..324e72c
--- /dev/null
+++ b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Binary files differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..aee44e1
--- /dev/null
+++ b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Binary files differ
diff --git a/app/src/main/res/values-v21/styles.xml b/app/src/main/res/values-v21/styles.xml
new file mode 100644
index 0000000..840e61b
--- /dev/null
+++ b/app/src/main/res/values-v21/styles.xml
@@ -0,0 +1,9 @@
+<resources>>
+
+  <style name="AppTheme.NoActionBar">
+    <item name="windowActionBar">false</item>
+    <item name="windowNoTitle">true</item>
+    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
+    <item name="android:statusBarColor">@android:color/transparent</item>
+  </style>
+</resources>
diff --git a/app/src/main/res/values-w820dp/dimens.xml b/app/src/main/res/values-w820dp/dimens.xml
new file mode 100644
index 0000000..1e656d6
--- /dev/null
+++ b/app/src/main/res/values-w820dp/dimens.xml
@@ -0,0 +1,6 @@
+<resources>
+  <!-- Example customization of dimensions originally defined in res/values/dimens.xml
+       (such as screen margins) for screens with more than 820dp of available width. This
+       would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively). -->
+  <dimen name="activity_horizontal_margin">64dp</dimen>
+</resources>
diff --git a/app/src/main/res/values/attrs.xml b/app/src/main/res/values/attrs.xml
new file mode 100644
index 0000000..662122a
--- /dev/null
+++ b/app/src/main/res/values/attrs.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<resources>
+  <declare-styleable name="MaxFontSizeTextView">
+    <attr name="minTextSize" format="string"/>
+    <attr name="maxTextSize" format="string"/>
+    <attr name="maxLineLength" format="integer"/>
+    <attr name="ellipsize" format="boolean"/>
+  </declare-styleable>
+</resources>
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..ae4b300
--- /dev/null
+++ b/app/src/main/res/values/colors.xml
@@ -0,0 +1,100 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<resources>
+  <color name="abandoned">#B1B3AF</color>
+  <color name="black">#000000</color>
+  <color name="button">#4183ff</color>
+  <color name="buttonBorder">#8699B3</color>
+  <color name="buttonBorderDisabled">#858583</color>
+  <color name="buttonDisabled">#d7d7d7</color>
+  <color name="buttonFont">#FFF</color>
+  <color name="buttonFill">#C9E1FF</color>
+  <color name="buttonFillDisabled">#D3D4D2</color>
+  <color name="commitMessage">#F9FFBF</color>
+  <color name="commitMessage2">#E9F0B1</color>
+  <color name="commitMessage3">#D6DBA4</color>
+  <color name="commitMessage4">#B6BA8D</color>
+  <color name="commitMessageIgnore">#FFE9BF</color>
+  <color name="commitMessageStar">#E0FFBF</color>
+  <color name="counter">#919191</color>
+  <color name="counterText">#d7d7d7</color>
+  <color name="darkGrey">#585858</color>
+  <color name="disabled">#d7d7d7</color>
+  <color name="grey">#d7d7d7</color>
+  <color name="headingFont">#FFF</color>
+  <color name="heading1">#CCa8e26d</color>
+  <color name="heading2">#cca46de2</color>
+  <color name="heading3">#ccffa443</color>
+  <color name="heading4">#cc448aff</color>
+  <color name="heading5">#ccf53336</color>
+  <color name="heading6">#cc67fc99</color>
+  <color name="heading7">#cc8eb9ed</color>
+  <color name="heading8">#ccee6af1</color>
+  <color name="heading9">#cc3a7b31</color>
+  <color name="heading10">#cc45f2e1</color>
+  <color name="heading11">#cc393b3d</color>
+  <color name="heading12">#ccf56e65</color>
+  <color name="hyperlink">#3863F2</color>
+  <color name="icon">#555555</color>
+  <color name="iconHighlightedGreen">#119f14</color>
+  <color name="iconHighlightedRed">#B51414</color>
+  <color name="infoTable">#EEE</color>
+  <color name="licenseBox">#ECECEC</color>
+  <color name="licenseColor">#067400</color>
+  <color name="lineAdded">#d2fdd8</color>
+  <color name="lineAddedIntraline">#7ed18a</color>
+  <color name="lineDeleted">#facbcb</color>
+  <color name="lineDeletedIntraline">#e28383</color>
+  <color name="lineNumbers">#CFCFCF</color>
+  <color name="lineSkipped">#C9E1FF</color>
+  <color name="error">#CCC</color>
+  <color name="errorText">#910022</color>
+  <color name="mainItem">#6e6e6e</color>
+  <color name="mainItemSelected">#5E76FF</color>
+  <color name="mainItemTitle">#ffffff</color>
+  <color name="mainList">#6e6e6e</color>
+  <color name="mainListDivider">#484848</color>
+  <color name="merged">#5E76FF</color>
+  <color name="navBarCenter">#494949</color>
+  <color name="navBarEnd">#232323</color>
+  <color name="navBarFont">#e4e4e4</color>
+  <color name="navBarStart">#232323</color>
+  <color name="nonMergable">#F5BC00</color>
+  <color name="noResults">#CEFFB8</color>
+  <color name="noState">#FFFFFF</color>
+  <color name="postReview">#FFF</color>
+  <color name="progressBar">#4f91c9</color>
+  <color name="progressBarBackground">#08000000</color>
+  <color name="progressBarBackgroundStroke">#80c4c4c4</color>
+  <color name="progressReload">#efefef</color>
+  <color name="separator">@android:color/darker_gray</color>
+  <color name="statusFailed">#910022</color>
+  <color name="statusOk">#009122</color>
+  <color name="text">#000</color>
+  <color name="text_disabeled">#BBB</color>
+  <color name="transparent">#00000000</color>
+  <color name="verifiedMinusOne">#910022</color>
+  <color name="verifiedPlusOne">#009122</color>
+  <color name="voteNegative">#910022</color>
+  <color name="votePositive">#009122</color>
+  <color name="votingNegative">#facbcb</color>
+  <color name="votingNegativeSelected">#dc5151</color>
+  <color name="votingNeutral">#f4d640</color>
+  <color name="votingPositive">#bcfcc5</color>
+  <color name="votingPositiveSelected">#57d469</color>
+  <color name="white">#FFF</color>
+</resources>
diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml
new file mode 100644
index 0000000..f204345
--- /dev/null
+++ b/app/src/main/res/values/dimens.xml
@@ -0,0 +1,20 @@
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<resources>
+  <dimen name="activity_horizontal_margin">16dp</dimen>
+  <dimen name="activity_vertical_margin">16dp</dimen>
+  <dimen name="reviewit_bottom_area_height">170dp</dimen>
+  <dimen name="fab_margin">16dp</dimen>
+</resources>
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..452866f
--- /dev/null
+++ b/app/src/main/res/values/strings.xml
@@ -0,0 +1,269 @@
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<resources>
+  <string name="app_name">Review It!?</string>
+  <string name="app_menu_sort">Sort Changes</string>
+  <string name="app_menu_review">Review Changes</string>
+  <string name="app_menu_settings">Settings</string>
+
+  <!-- SortChangesFragment -->
+  <string name="branch">branch:</string>
+  <string name="help">Help</string>
+  <string name="project">project:</string>
+  <string name="reload_error">Reloading change failed with %1$d %2$s</string>
+  <string name="topic">topic:</string>
+
+  <string name="no_network">No network connection available!</string>
+
+  <string name="no_more_changes">No more changes!</string>
+  <string name="loading">Loading!</string>
+
+  <!-- SortChangesFragment - menu -->
+  <string name="action_abandon">Abandon...</string>
+  <string name="action_add_reviewer">Add Reviewer...</string>
+  <string name="action_help">Help</string>
+  <string name="action_preferences">Preferences</string>
+  <string name="action_reload_change">Reload Change</string>
+  <string name="action_reload_query">Reload Query</string>
+  <string name="action_restore">Restore...</string>
+  <string name="action_undo">Undo</string>
+
+  <!-- ErrorFragment -->
+  <string name="title_activity_error">Error</string>
+
+  <!-- HelpFragment -->
+  <string name="about_app">This app allows you to sort incoming changes.</string>
+  <string name="disclaimer_app">This is not an official Google product.</string>
+    <string name="disclaimer_actions">This app is a prototype. The
+        ignore, skip and star actions are not implemented yet and don\'t have any effect.</string>
+
+  <string name="actions">Actions:</string>
+    <string name="about_star">By clicking on the star button the change is added to your ReviewIt
+        dashboard. Alternatively you can swipe the change to the right.</string>
+    <string name="about_ignore">By clicking on the ignore button the change is added to your ignore
+        list and you will not be asked again if you want to review this change. Alternatively you
+        can swipe the change to the left.</string>
+    <string name="about_skip">By clicking on the skip button the change is skipped and when a new
+        patch set is available you will be asked again if you want to review this change.</string>
+
+  <string name="info">Info:</string>
+    <string name="about_info">Which information is displayed can be configured in the
+        preferences.\nClicking at the bottom of the change box opens the detailed change
+        view.</string>
+  <string name="about_patch_sets">Number of patch sets.</string>
+  <string name="about_thumb_up">Number of positive votes on the Code-Review label.</string>
+  <string name="about_thumb_down">Number of negative votes on the Code-Review label.</string>
+    <string name="about_comments">Number of inline comments on the current revision of the
+        change.</string>
+  <string name="about_reviewers">Number of reviewers (exclusive the change owner).</string>
+    <string name="about_verified_plus_one">Green background indicates a verified change. This means
+        that the change has at least one positive voting on the Verified label and no negative
+        Verified vote.</string>
+    <string name="about_verified_minus_one">Red background indicates that the change has at least
+        one negative voting on the Verified label.</string>
+    <string name="about_non_mergeable">Orange background indicates that the change is not
+        mergeable.</string>
+  <string name="about_abandoned">Grey background indicates that the change is abandoned.</string>
+  <string name="about_merged">Blue background indicates that the change is merged.</string>
+
+  <string name="menu">Menu:</string>
+  <string name="about_preferences">User preferences.</string>
+    <string name="about_settings">Application settings. Configure the connection to the Gerrit
+        server.</string>
+  <string name="about_reload_change">Reload the current change.</string>
+    <string name="about_undo">Undo. The rating of the previous change is undone and you are asked
+        again if you want to review it. Alternatively you can also press the hardware back
+        button.</string>
+    <string name="about_add_reviewer">Add Reviewer. Allows you to add a reviewer to this
+        change.</string>
+
+  <string name="licenses">Licenses:</string>
+    <string name="about_licenses">The \'Review It!?\' app is licensed under
+        the Apache License 2.0. Executable distributions also include other
+        software components that are provided under additional licenses.</string>
+  <string name="apache2.0">Apache License, Version 2.0:</string>
+  <string name="apache2.0_link">http://www.apache.org/licenses/LICENSE-2.0</string>
+    <string name="lib_gerrit_rest_java_client">&#8226;\tJava REST client for Gerrit Code Review:\n
+        \tCopyright 2013 - 2015 Urs Wolfer\n
+        \thttps://github.com/uwolfer/gerrit-rest-java-client</string>
+    <string name="lib_gson">&#8226;\tGson:\n
+        \tCopyright 2008 Google Inc.\n
+        \thttps://github.com/google/gson</string>
+    <string name="lib_guava">&#8226;\tGuava:\n
+        \thttps://github.com/google/guava</string>
+    <string name="lib_httpclient_android">&#8226;\tHttpClient for Android:\n
+        \thttps://hc.apache.org/httpcomponents-client-4.3.x/android-port.html</string>
+    <string name="cc_by_3.0">Creative Commons Attribution 3.0 United States
+        (CC BY 3.0 US):</string>
+  <string name="cc_by_3.0_link">http://creativecommons.org/licenses/by/3.0/us/</string>
+    <string name="lib_diffy">&#8226;\tDiffy:\n
+        \tCopyright Sara Owens\n
+        \thttp://inkylabs.com/</string>
+    <string name="cc_by_4.0">Creative Commons Attribution 4.0 international
+        (CC BY 4.0):</string>
+  <string name="cc_by_4.0_link">https://creativecommons.org/licenses/by/4.0/</string>
+    <string name="lib_material_icons">&#8226;\tMaterial Icons:\n
+        \tCopyright Google Inc.\n
+        \thttps://design.google.com/icons/</string>
+
+  <string name="title_activity_help">Help</string>
+
+  <!-- AddReviewerFragment -->
+  <string name="title_activity_add_reviewer">Add Reviewer</string>
+  <string name="add_reviewer_error">Add reviewer failed with %1$d %2$s</string>
+  <string name="ccs">CC\'s:</string>
+  <string name="reviewer_hint">Fullname or Email</string>
+  <string name="reviewers">Reviewers:</string>
+  <string name="no_reviewers">No Reviewers</string>
+  <string name="save">Save</string>
+
+  <!-- SettingsFragmnet -->
+  <string name="serverConfig">Server Configuration</string>
+  <string name="sortConfig">Sort Configuration</string>
+
+  <string name="add_server">Add Server</string>
+  <string name="connection_failed">Connection failed: %1$s</string>
+    <string name="credentials_info">Go to %1$s, generate a password and copy/paste the user and the
+        password.</string>
+    <string name="credentials_info_googlesource">Go to %1$s, copy the box content to the clipboard
+        and click on the \'Paste\' button.</string>
+    <string name="duplicate_server_name">A server configuration with name %1$s exists
+        already. The name must be unique.</string>
+  <string name="error_title">Error</string>
+  <string name="error_with_cause">%1$s\nCaused by: %2$s</string>
+  <string name="googlesource_obtain_password">Obtain Password</string>
+  <string name="http_password">HTTP Password.</string>
+  <string name="id">ID*:</string>
+  <string name="incompleteInput">Required input parameters are missing.</string>
+  <string name="incompleteSettings">Please complete the settings!</string>
+  <string name="invalidLabel">Invalid label, must match \'%1$s\'.</string>
+  <string name="invalidUrl">Invalid URL</string>
+  <string name="label">Star Label*:</string>
+  <string name="label_hint">Label to mark changes</string>
+  <string name="name">Name*:</string>
+  <string name="name_hint">Server Name</string>
+  <string name="password">Password*:</string>
+  <string name="password_hint">Gerrit HTTP Password</string>
+  <string name="paste_credentials">Paste Credentials</string>
+  <string name="save_anyway">Save anyway</string>
+  <string name="server">Server*:</string>
+  <string name="servers">Servers:</string>
+  <string name="server_remove_message">Are you sure you want to delete server \'%1$s\'</string>
+  <string name="server_remove_title">Delete Server</string>
+    <string name="storage_info">The server configuration is stored in the application preferences.
+        All values are encrypted.</string>
+  <string name="test_server_connection">Testing connection to the server ...</string>
+  <string name="test_server_connection_ok">OK</string>
+  <string name="test_server_connection_failed">FAILED</string>
+  <string name="title_activity_settings">Settings</string>
+  <string name="url">URL*:</string>
+  <string name="url_hint">Gerrit Server URL</string>
+  <string-array name="urls">
+    <item>https://gerrit-review.googlesource.com/</item>
+    <item>https://android-review.googlesource.com/</item>
+    <item>http://localhost:8080/</item>
+  </string-array>
+  <string name="user">User*:</string>
+  <string name="user_hint">Gerrit User</string>
+  <string name="query">Query*:</string>
+  <string name="query_hint">Change Query</string>
+
+  <!-- SettingsFragment - menu -->
+  <string name="action_clean_avatar_cache">Clean avatar cache</string>
+
+  <!-- DetailedChangeFragment -->
+  <string name="title_activity_detailed_change">Change Details</string>
+  <string name="approvals">Approvals:</string>
+  <string name="detailed_change_title">Change %1$d</string>
+  <string name="files">Files:</string>
+  <string name="show_more">Show %1$d more</string>
+  <string name="show_all">Show all (+%1$d)</string>
+
+  <!-- DetailedChangeFragment - menu -->
+  <string name="action_ignore">Ignore</string>
+  <string name="action_skip">Skip</string>
+  <string name="action_star">Star</string>
+
+  <!-- IntroFragment -->
+  <string name="title_activity_intro">Review It!? - Introduction</string>
+  <string name="continue_intro">Continue</string>
+
+  <!-- PreferencesFragment -->
+  <string name="title_activity_preferences">Preferences</string>
+    <string name="pref_color_background">Use different color as app background to visualize the
+        state of the current change.</string>
+  <string name="pref_show_patch_sets">Show number of patch sets on change card.</string>
+    <string name="pref_show_positive_code_review_votes">Show number of positive Code-Review votes on
+        change card.</string>
+    <string name="pref_show_negative_code_review_votes">Show number of negative Code-Review votes on
+        change card.</string>
+  <string name="pref_show_comments">Show number of inline comments on change card.</string>
+  <string name="pref_show_reviewers">Show number of reviewers on change card.</string>
+    <string name="pref_auto_font_size">Maximize font for commit message so that no lines are
+        wrapped.</string>
+  <string name="pref_font_size">Font size for commit message.</string>
+
+  <!-- AbandonFragment -->
+  <string name="title_activity_abandon">Abandon Change</string>
+  <string name="abandon_change_title">Abandon Change %1$d</string>
+  <string name="abandon">Abandon</string>
+  <string name="abandon_error">Abandon failed with %1$d %2$s</string>
+  <string name="reason">Reason:</string>
+
+  <!-- RestoreActivity -->
+  <string name="title_activity_restore">Restore Change</string>
+  <string name="restore_change_title">Restore Change %1$d</string>
+  <string name="restore">Restore</string>
+  <string name="restore_error">Restore failed with %1$d %2$s</string>
+
+  <!-- UnifiedDiffFragment -->
+  <string name="title_activity_unified_diff">UnifiedDiffActivity</string>
+
+  <!-- UnfifiedDiffView -->
+  <string name="skipped_common_lines">... skipped %1$d common lines ...</string>
+  <string name="expand_before">+%1$d&#x21e7;</string>
+  <string name="expand_after">+%1$d&#x21e9;</string>
+
+  <!-- PostReviewFragment -->
+  <string name="title_activity_post_review">PostReviewActivity</string>
+  <string name="message">Message:</string>
+  <string name="publish">Publish</string>
+  <string name="publishAndSubmit">Publish and Submit</string>
+  <string name="review_error">Posting review failed with %1$d %2$s</string>
+  <string name="submit_error">Submit failed with %1$d %2$s</string>
+
+  <!-- RelativeDateFormatter -->
+  <string name="in_the_future">in the future</string>
+  <string name="month">m</string>
+  <string name="months">m</string>
+  <string name="year">y</string>
+  <string name="years">y</string>
+  <string name="one_second_ago">1sec</string>
+  <string name="one_minute_ago">1min</string>
+  <string name="one_hour_ago">1h</string>
+  <string name="one_day_ago">1d</string>
+  <string name="one_week_ago">1w</string>
+  <string name="one_month_ago">1m</string>
+  <string name="one_year_ago">1y</string>
+  <string name="seconds_ago">%1$dsec</string>
+  <string name="minutes_ago">%1$dmin</string>
+  <string name="hours_ago">%1$dh</string>
+  <string name="days_ago">%1$dd</string>
+  <string name="weeks_ago">%1$dw</string>
+  <string name="months_ago">%1$dm</string>
+  <string name="years_ago">%1$dy</string>
+  <string name="years_0_months_ago">%1$d%2$s</string>
+  <string name="years_months_ago">%1$d%2$s,%3$d%4$s</string>
+</resources>
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..230b562
--- /dev/null
+++ b/app/src/main/res/values/styles.xml
@@ -0,0 +1,30 @@
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<resources>
+
+  <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
+    <item name="android:windowBackground">@drawable/preview_screen</item>
+  </style>
+
+  <style name="AppTheme.NoActionBar">
+    <item name="windowActionBar">false</item>
+    <item name="windowNoTitle">true</item>
+  </style>
+
+  <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/>
+
+  <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"/>
+
+</resources>
diff --git a/app/src/main/res/values/tags.xml b/app/src/main/res/values/tags.xml
new file mode 100644
index 0000000..faadd59
--- /dev/null
+++ b/app/src/main/res/values/tags.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
+
+<resources>
+  <item name="UNIFIED_DIFF_A" type="id"/>
+  <item name="UNIFIED_DIFF_B" type="id"/>
+  <item name="UNIFIED_DIFF_LINES" type="id"/>
+</resources>
\ No newline at end of file
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..e0b366a
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,23 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+
+buildscript {
+    repositories {
+        jcenter()
+    }
+    dependencies {
+        classpath 'com.android.tools.build:gradle:1.5.0'
+
+        // NOTE: Do not place your application dependencies here; they belong
+        // in the individual module build.gradle files
+    }
+}
+
+allprojects {
+    repositories {
+        jcenter()
+    }
+}
+
+task clean(type: Delete) {
+    delete rootProject.buildDir
+}
diff --git a/gradle.properties b/gradle.properties
new file mode 100644
index 0000000..1d3591c
--- /dev/null
+++ b/gradle.properties
@@ -0,0 +1,18 @@
+# Project-wide Gradle settings.
+
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+# Default value: -Xmx10248m -XX:MaxPermSize=256m
+# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
+
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
\ No newline at end of file
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..05ef575
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.jar
Binary files differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..f23df6e
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Wed Oct 21 11:34:03 PDT 2015
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip
diff --git a/gradlew b/gradlew
new file mode 100755
index 0000000..9d82f78
--- /dev/null
+++ b/gradlew
@@ -0,0 +1,160 @@
+#!/usr/bin/env bash
+
+##############################################################################
+##
+##  Gradle start up script for UN*X
+##
+##############################################################################
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn ( ) {
+    echo "$*"
+}
+
+die ( ) {
+    echo
+    echo "$*"
+    echo
+    exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+case "`uname`" in
+  CYGWIN* )
+    cygwin=true
+    ;;
+  Darwin* )
+    darwin=true
+    ;;
+  MINGW* )
+    msys=true
+    ;;
+esac
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+    ls=`ls -ld "$PRG"`
+    link=`expr "$ls" : '.*-> \(.*\)$'`
+    if expr "$link" : '/.*' > /dev/null; then
+        PRG="$link"
+    else
+        PRG=`dirname "$PRG"`"/$link"
+    fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+        # IBM's JDK on AIX uses strange locations for the executables
+        JAVACMD="$JAVA_HOME/jre/sh/java"
+    else
+        JAVACMD="$JAVA_HOME/bin/java"
+    fi
+    if [ ! -x "$JAVACMD" ] ; then
+        die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+    fi
+else
+    JAVACMD="java"
+    which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
+    MAX_FD_LIMIT=`ulimit -H -n`
+    if [ $? -eq 0 ] ; then
+        if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+            MAX_FD="$MAX_FD_LIMIT"
+        fi
+        ulimit -n $MAX_FD
+        if [ $? -ne 0 ] ; then
+            warn "Could not set maximum file descriptor limit: $MAX_FD"
+        fi
+    else
+        warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+    fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+    GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+    APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+    CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+    JAVACMD=`cygpath --unix "$JAVACMD"`
+
+    # We build the pattern for arguments to be converted via cygpath
+    ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+    SEP=""
+    for dir in $ROOTDIRSRAW ; do
+        ROOTDIRS="$ROOTDIRS$SEP$dir"
+        SEP="|"
+    done
+    OURCYGPATTERN="(^($ROOTDIRS))"
+    # Add a user-defined pattern to the cygpath arguments
+    if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+        OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+    fi
+    # Now convert the arguments - kludge to limit ourselves to /bin/sh
+    i=0
+    for arg in "$@" ; do
+        CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+        CHECK2=`echo "$arg"|egrep -c "^-"`                                 ### Determine if an option
+
+        if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then                    ### Added a condition
+            eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+        else
+            eval `echo args$i`="\"$arg\""
+        fi
+        i=$((i+1))
+    done
+    case $i in
+        (0) set -- ;;
+        (1) set -- "$args0" ;;
+        (2) set -- "$args0" "$args1" ;;
+        (3) set -- "$args0" "$args1" "$args2" ;;
+        (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+        (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+        (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+        (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+        (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+        (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+    esac
+fi
+
+# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
+function splitJvmOpts() {
+    JVM_OPTS=("$@")
+}
+eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
+JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
+
+exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
diff --git a/gradlew.bat b/gradlew.bat
new file mode 100644
index 0000000..aec9973
--- /dev/null
+++ b/gradlew.bat
@@ -0,0 +1,90 @@
+@if "%DEBUG%" == "" @echo off

+@rem ##########################################################################

+@rem

+@rem  Gradle startup script for Windows

+@rem

+@rem ##########################################################################

+

+@rem Set local scope for the variables with windows NT shell

+if "%OS%"=="Windows_NT" setlocal

+

+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.

+set DEFAULT_JVM_OPTS=

+

+set DIRNAME=%~dp0

+if "%DIRNAME%" == "" set DIRNAME=.

+set APP_BASE_NAME=%~n0

+set APP_HOME=%DIRNAME%

+

+@rem Find java.exe

+if defined JAVA_HOME goto findJavaFromJavaHome

+

+set JAVA_EXE=java.exe

+%JAVA_EXE% -version >NUL 2>&1

+if "%ERRORLEVEL%" == "0" goto init

+

+echo.

+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.

+echo.

+echo Please set the JAVA_HOME variable in your environment to match the

+echo location of your Java installation.

+

+goto fail

+

+:findJavaFromJavaHome

+set JAVA_HOME=%JAVA_HOME:"=%

+set JAVA_EXE=%JAVA_HOME%/bin/java.exe

+

+if exist "%JAVA_EXE%" goto init

+

+echo.

+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%

+echo.

+echo Please set the JAVA_HOME variable in your environment to match the

+echo location of your Java installation.

+

+goto fail

+

+:init

+@rem Get command-line arguments, handling Windowz variants

+

+if not "%OS%" == "Windows_NT" goto win9xME_args

+if "%@eval[2+2]" == "4" goto 4NT_args

+

+:win9xME_args

+@rem Slurp the command line arguments.

+set CMD_LINE_ARGS=

+set _SKIP=2

+

+:win9xME_args_slurp

+if "x%~1" == "x" goto execute

+

+set CMD_LINE_ARGS=%*

+goto execute

+

+:4NT_args

+@rem Get arguments from the 4NT Shell from JP Software

+set CMD_LINE_ARGS=%$

+

+:execute

+@rem Setup the command line

+

+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar

+

+@rem Execute Gradle

+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%

+

+:end

+@rem End local scope for the variables with windows NT shell

+if "%ERRORLEVEL%"=="0" goto mainEnd

+

+:fail

+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of

+rem the _cmd.exe /c_ return code!

+if  not "" == "%GRADLE_EXIT_CONSOLE%" exit 1

+exit /b 1

+

+:mainEnd

+if "%OS%"=="Windows_NT" endlocal

+

+:omega

diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 0000000..e7b4def
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1 @@
+include ':app'
diff --git a/third_party/gerrit-rest-java-client-0.8.8-SNAPSHOT.jar b/third_party/gerrit-rest-java-client-0.8.8-SNAPSHOT.jar
new file mode 100644
index 0000000..3758760
--- /dev/null
+++ b/third_party/gerrit-rest-java-client-0.8.8-SNAPSHOT.jar
Binary files differ
diff --git a/third_party/gson-2.3.1.jar b/third_party/gson-2.3.1.jar
new file mode 100644
index 0000000..250132c
--- /dev/null
+++ b/third_party/gson-2.3.1.jar
Binary files differ
diff --git a/third_party/guava-19.0-rc2.jar b/third_party/guava-19.0-rc2.jar
new file mode 100644
index 0000000..e080044
--- /dev/null
+++ b/third_party/guava-19.0-rc2.jar
Binary files differ
diff --git a/third_party/httpclient-android-4.3.5.1.jar b/third_party/httpclient-android-4.3.5.1.jar
new file mode 100644
index 0000000..ab03a08
--- /dev/null
+++ b/third_party/httpclient-android-4.3.5.1.jar
Binary files differ