├── README.md ├── admin ├── css │ ├── base.css │ ├── changelists.css │ ├── dashboard.css │ ├── fonts.css │ ├── forms.css │ ├── login.css │ ├── rtl.css │ └── widgets.css ├── fonts │ ├── LICENSE.txt │ ├── README.txt │ ├── Roboto-Bold-webfont.woff │ ├── Roboto-Light-webfont.woff │ └── Roboto-Regular-webfont.woff ├── img │ ├── LICENSE │ ├── README.txt │ ├── calendar-icons.svg │ ├── gis │ │ ├── move_vertex_off.svg │ │ └── move_vertex_on.svg │ ├── icon-addlink.svg │ ├── icon-alert.svg │ ├── icon-calendar.svg │ ├── icon-changelink.svg │ ├── icon-clock.svg │ ├── icon-deletelink.svg │ ├── icon-no.svg │ ├── icon-unknown-alt.svg │ ├── icon-unknown.svg │ ├── icon-yes.svg │ ├── inline-delete.svg │ ├── search.svg │ ├── selector-icons.svg │ ├── sorting-icons.svg │ ├── tooltag-add.svg │ └── tooltag-arrowright.svg └── js │ ├── SelectBox.js │ ├── SelectFilter2.js │ ├── actions.js │ ├── actions.min.js │ ├── admin │ ├── DateTimeShortcuts.js │ └── RelatedObjectLookups.js │ ├── calendar.js │ ├── cancel.js │ ├── change_form.js │ ├── collapse.js │ ├── collapse.min.js │ ├── core.js │ ├── inlines.js │ ├── inlines.min.js │ ├── jquery.init.js │ ├── popup_response.js │ ├── prepopulate.js │ ├── prepopulate.min.js │ ├── prepopulate_init.js │ ├── timeparse.js │ ├── urlify.js │ └── vendor │ ├── jquery │ ├── LICENSE-JQUERY.txt │ ├── jquery.js │ └── jquery.min.js │ └── xregexp │ ├── LICENSE-XREGEXP.txt │ ├── xregexp.js │ └── xregexp.min.js ├── alpha ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── settings.py ├── settings.pyc ├── urls.py ├── urls.pyc ├── wsgi.py └── wsgi.pyc ├── auth_part ├── README.txt ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── apps.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── admin.pyc ├── apps.py ├── apps.pyc ├── auth_dao.py ├── images │ ├── mail.svg │ └── mail1.svg ├── index1.html ├── license.txt ├── migrations │ ├── 0001_initial.py │ ├── 0001_initial.pyc │ ├── 0002_auto_20171002_1707.py │ ├── 0002_auto_20171002_1707.pyc │ ├── __init__.py │ ├── __init__.pyc │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_auto_20171002_1707.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── models.pyc ├── scss │ └── style.scss ├── static │ ├── auth_part │ │ ├── README.txt │ │ ├── css │ │ │ ├── 1.jpg │ │ │ ├── sb-admin.css │ │ │ └── style.css │ │ ├── images │ │ │ ├── mail.svg │ │ │ └── mail1.svg │ │ ├── index.html │ │ ├── js │ │ │ ├── index.js │ │ │ ├── sb-admin-charts.js │ │ │ ├── sb-admin-charts.min.js │ │ │ ├── sb-admin-datatables.js │ │ │ ├── sb-admin-datatables.min.js │ │ │ ├── sb-admin.js │ │ │ └── sb-admin.min.js │ │ ├── license.txt │ │ └── scss │ │ │ └── style.scss │ └── vendor │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── chart.js │ │ ├── Chart.bundle.js │ │ ├── Chart.bundle.min.js │ │ ├── Chart.js │ │ └── Chart.min.js │ │ ├── datatables │ │ ├── dataTables.bootstrap4.css │ │ ├── dataTables.bootstrap4.js │ │ └── jquery.dataTables.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── jquery-easing │ │ ├── jquery.easing.compatibility.js │ │ ├── jquery.easing.js │ │ └── jquery.easing.min.js │ │ └── jquery │ │ ├── jquery.js │ │ └── jquery.min.js ├── templates │ ├── css │ │ ├── 1.jpg │ │ ├── sb-admin.css │ │ └── style.css │ ├── index.html │ ├── index1.html │ ├── js │ │ ├── bootstrap.bundle.min.js │ │ ├── index.js │ │ ├── jquery.easing.min.js │ │ └── jquery.min.js │ └── register.html ├── tests.py ├── urls.py ├── urls.pyc ├── views.py └── views.pyc ├── db.sqlite3 ├── manage.py ├── plants ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── apps.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── abs.jpg ├── admin.py ├── admin.pyc ├── apps.py ├── apps.pyc ├── builder │ ├── build_data.json │ ├── cheatsheet │ │ ├── icon-row.html │ │ └── template.html │ ├── generate.py │ ├── manifest.json │ └── scripts │ │ ├── eotlitetool.py │ │ ├── generate_font.py │ │ └── sfnt2woff ├── css │ ├── font-awesome.min.css │ ├── ie8.css │ ├── ie9.css │ ├── images │ │ ├── ie │ │ │ └── grad0-15.svg │ │ └── overlay.png │ ├── ionicons.min.css │ ├── main.css │ ├── materialize.css │ └── materialize.min.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ ├── ionicons.woff │ └── roboto │ │ ├── Roboto-Bold.eot │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.eot │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.eot │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.eot │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-Thin.eot │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-Thin.woff │ │ └── Roboto-Thin.woff2 ├── images │ ├── avatar.jpg │ ├── banner1.jpg │ ├── man.svg │ ├── pic02.jpg │ ├── pic03.jpg │ ├── pic04.jpg │ ├── pic05.jpg │ ├── pic06.jpg │ ├── pic07.jpg │ └── pic08.jpg ├── ionicons-2.0.1 │ └── ionicons-2.0.1 │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── builder │ │ ├── build_data.json │ │ ├── cheatsheet │ │ │ ├── icon-row.html │ │ │ └── template.html │ │ ├── generate.py │ │ ├── manifest.json │ │ └── scripts │ │ │ ├── eotlitetool.py │ │ │ ├── generate_font.py │ │ │ └── sfnt2woff │ │ ├── cheatsheet.html │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ ├── ionicons.css │ │ └── ionicons.min.css │ │ ├── fonts │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ │ ├── less │ │ ├── _ionicons-font.less │ │ ├── _ionicons-icons.less │ │ ├── _ionicons-variables.less │ │ └── ionicons.less │ │ ├── png │ │ └── 512 │ │ │ ├── alert-circled.png │ │ │ ├── alert.png │ │ │ ├── android-add-contact.png │ │ │ ├── android-add.png │ │ │ ├── android-alarm.png │ │ │ ├── android-archive.png │ │ │ ├── android-arrow-back.png │ │ │ ├── android-arrow-down-left.png │ │ │ ├── android-arrow-down-right.png │ │ │ ├── android-arrow-forward.png │ │ │ ├── android-arrow-up-left.png │ │ │ ├── android-arrow-up-right.png │ │ │ ├── android-battery.png │ │ │ ├── android-book.png │ │ │ ├── android-calendar.png │ │ │ ├── android-call.png │ │ │ ├── android-camera.png │ │ │ ├── android-chat.png │ │ │ ├── android-checkmark.png │ │ │ ├── android-clock.png │ │ │ ├── android-close.png │ │ │ ├── android-contact.png │ │ │ ├── android-contacts.png │ │ │ ├── android-data.png │ │ │ ├── android-developer.png │ │ │ ├── android-display.png │ │ │ ├── android-download.png │ │ │ ├── android-drawer.png │ │ │ ├── android-dropdown.png │ │ │ ├── android-earth.png │ │ │ ├── android-folder.png │ │ │ ├── android-forums.png │ │ │ ├── android-friends.png │ │ │ ├── android-hand.png │ │ │ ├── android-image.png │ │ │ ├── android-inbox.png │ │ │ ├── android-information.png │ │ │ ├── android-keypad.png │ │ │ ├── android-lightbulb.png │ │ │ ├── android-locate.png │ │ │ ├── android-location.png │ │ │ ├── android-mail.png │ │ │ ├── android-microphone.png │ │ │ ├── android-mixer.png │ │ │ ├── android-more.png │ │ │ ├── android-note.png │ │ │ ├── android-playstore.png │ │ │ ├── android-printer.png │ │ │ ├── android-promotion.png │ │ │ ├── android-reminder.png │ │ │ ├── android-remove.png │ │ │ ├── android-search.png │ │ │ ├── android-send.png │ │ │ ├── android-settings.png │ │ │ ├── android-share.png │ │ │ ├── android-social-user.png │ │ │ ├── android-social.png │ │ │ ├── android-sort.png │ │ │ ├── android-stair-drawer.png │ │ │ ├── android-star.png │ │ │ ├── android-stopwatch.png │ │ │ ├── android-storage.png │ │ │ ├── android-system-back.png │ │ │ ├── android-system-home.png │ │ │ ├── android-system-windows.png │ │ │ ├── android-timer.png │ │ │ ├── android-trash.png │ │ │ ├── android-user-menu.png │ │ │ ├── android-volume.png │ │ │ ├── android-wifi.png │ │ │ ├── aperture.png │ │ │ ├── archive.png │ │ │ ├── arrow-down-a.png │ │ │ ├── arrow-down-b.png │ │ │ ├── arrow-down-c.png │ │ │ ├── arrow-expand.png │ │ │ ├── arrow-graph-down-left.png │ │ │ ├── arrow-graph-down-right.png │ │ │ ├── arrow-graph-up-left.png │ │ │ ├── arrow-graph-up-right.png │ │ │ ├── arrow-left-a.png │ │ │ ├── arrow-left-b.png │ │ │ ├── arrow-left-c.png │ │ │ ├── arrow-move.png │ │ │ ├── arrow-resize.png │ │ │ ├── arrow-return-left.png │ │ │ ├── arrow-return-right.png │ │ │ ├── arrow-right-a.png │ │ │ ├── arrow-right-b.png │ │ │ ├── arrow-right-c.png │ │ │ ├── arrow-shrink.png │ │ │ ├── arrow-swap.png │ │ │ ├── arrow-up-a.png │ │ │ ├── arrow-up-b.png │ │ │ ├── arrow-up-c.png │ │ │ ├── asterisk.png │ │ │ ├── at.png │ │ │ ├── bag.png │ │ │ ├── battery-charging.png │ │ │ ├── battery-empty.png │ │ │ ├── battery-full.png │ │ │ ├── battery-half.png │ │ │ ├── battery-low.png │ │ │ ├── beaker.png │ │ │ ├── beer.png │ │ │ ├── bluetooth.png │ │ │ ├── bonfire.png │ │ │ ├── bookmark.png │ │ │ ├── briefcase.png │ │ │ ├── bug.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── card.png │ │ │ ├── cash.png │ │ │ ├── chatbox-working.png │ │ │ ├── chatbox.png │ │ │ ├── chatboxes.png │ │ │ ├── chatbubble-working.png │ │ │ ├── chatbubble.png │ │ │ ├── chatbubbles.png │ │ │ ├── checkmark-circled.png │ │ │ ├── checkmark-round.png │ │ │ ├── checkmark.png │ │ │ ├── chevron-down.png │ │ │ ├── chevron-left.png │ │ │ ├── chevron-right.png │ │ │ ├── chevron-up.png │ │ │ ├── clipboard.png │ │ │ ├── clock.png │ │ │ ├── close-circled.png │ │ │ ├── close-round.png │ │ │ ├── close.png │ │ │ ├── closed-captioning.png │ │ │ ├── cloud.png │ │ │ ├── code-download.png │ │ │ ├── code-working.png │ │ │ ├── code.png │ │ │ ├── coffee.png │ │ │ ├── compass.png │ │ │ ├── compose.png │ │ │ ├── connection-bars.png │ │ │ ├── contrast.png │ │ │ ├── cube.png │ │ │ ├── disc.png │ │ │ ├── document-text.png │ │ │ ├── document.png │ │ │ ├── drag.png │ │ │ ├── earth.png │ │ │ ├── edit.png │ │ │ ├── egg.png │ │ │ ├── eject.png │ │ │ ├── email.png │ │ │ ├── eye-disabled.png │ │ │ ├── eye.png │ │ │ ├── female.png │ │ │ ├── filing.png │ │ │ ├── film-marker.png │ │ │ ├── fireball.png │ │ │ ├── flag.png │ │ │ ├── flame.png │ │ │ ├── flash-off.png │ │ │ ├── flash.png │ │ │ ├── flask.png │ │ │ ├── folder.png │ │ │ ├── fork-repo.png │ │ │ ├── fork.png │ │ │ ├── forward.png │ │ │ ├── funnel.png │ │ │ ├── game-controller-a.png │ │ │ ├── game-controller-b.png │ │ │ ├── gear-a.png │ │ │ ├── gear-b.png │ │ │ ├── grid.png │ │ │ ├── hammer.png │ │ │ ├── happy.png │ │ │ ├── headphone.png │ │ │ ├── heart-broken.png │ │ │ ├── heart.png │ │ │ ├── help-buoy.png │ │ │ ├── help-circled.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── icecream.png │ │ │ ├── icon-social-google-plus-outline.png │ │ │ ├── icon-social-google-plus.png │ │ │ ├── image.png │ │ │ ├── images.png │ │ │ ├── information-circled.png │ │ │ ├── information.png │ │ │ ├── ionic.png │ │ │ ├── ios7-alarm-outline.png │ │ │ ├── ios7-alarm.png │ │ │ ├── ios7-albums-outline.png │ │ │ ├── ios7-albums.png │ │ │ ├── ios7-americanfootball-outline.png │ │ │ ├── ios7-americanfootball.png │ │ │ ├── ios7-analytics-outline.png │ │ │ ├── ios7-analytics.png │ │ │ ├── ios7-arrow-back.png │ │ │ ├── ios7-arrow-down.png │ │ │ ├── ios7-arrow-forward.png │ │ │ ├── ios7-arrow-left.png │ │ │ ├── ios7-arrow-right.png │ │ │ ├── ios7-arrow-thin-down.png │ │ │ ├── ios7-arrow-thin-left.png │ │ │ ├── ios7-arrow-thin-right.png │ │ │ ├── ios7-arrow-thin-up.png │ │ │ ├── ios7-arrow-up.png │ │ │ ├── ios7-at-outline.png │ │ │ ├── ios7-at.png │ │ │ ├── ios7-barcode-outline.png │ │ │ ├── ios7-barcode.png │ │ │ ├── ios7-baseball-outline.png │ │ │ ├── ios7-baseball.png │ │ │ ├── ios7-basketball-outline.png │ │ │ ├── ios7-basketball.png │ │ │ ├── ios7-bell-outline.png │ │ │ ├── ios7-bell.png │ │ │ ├── ios7-bolt-outline.png │ │ │ ├── ios7-bolt.png │ │ │ ├── ios7-bookmarks-outline.png │ │ │ ├── ios7-bookmarks.png │ │ │ ├── ios7-box-outline.png │ │ │ ├── ios7-box.png │ │ │ ├── ios7-briefcase-outline.png │ │ │ ├── ios7-briefcase.png │ │ │ ├── ios7-browsers-outline.png │ │ │ ├── ios7-browsers.png │ │ │ ├── ios7-calculator-outline.png │ │ │ ├── ios7-calculator.png │ │ │ ├── ios7-calendar-outline.png │ │ │ ├── ios7-calendar.png │ │ │ ├── ios7-camera-outline.png │ │ │ ├── ios7-camera.png │ │ │ ├── ios7-cart-outline.png │ │ │ ├── ios7-cart.png │ │ │ ├── ios7-chatboxes-outline.png │ │ │ ├── ios7-chatboxes.png │ │ │ ├── ios7-chatbubble-outline.png │ │ │ ├── ios7-chatbubble.png │ │ │ ├── ios7-checkmark-empty.png │ │ │ ├── ios7-checkmark-outline.png │ │ │ ├── ios7-checkmark.png │ │ │ ├── ios7-circle-filled.png │ │ │ ├── ios7-circle-outline.png │ │ │ ├── ios7-clock-outline.png │ │ │ ├── ios7-clock.png │ │ │ ├── ios7-close-empty.png │ │ │ ├── ios7-close-outline.png │ │ │ ├── ios7-close.png │ │ │ ├── ios7-cloud-download-outline.png │ │ │ ├── ios7-cloud-download.png │ │ │ ├── ios7-cloud-outline.png │ │ │ ├── ios7-cloud-upload-outline.png │ │ │ ├── ios7-cloud-upload.png │ │ │ ├── ios7-cloud.png │ │ │ ├── ios7-cloudy-night-outline.png │ │ │ ├── ios7-cloudy-night.png │ │ │ ├── ios7-cloudy-outline.png │ │ │ ├── ios7-cloudy.png │ │ │ ├── ios7-cog-outline.png │ │ │ ├── ios7-cog.png │ │ │ ├── ios7-compose-outline.png │ │ │ ├── ios7-compose.png │ │ │ ├── ios7-contact-outline.png │ │ │ ├── ios7-contact.png │ │ │ ├── ios7-copy-outline.png │ │ │ ├── ios7-copy.png │ │ │ ├── ios7-download-outline.png │ │ │ ├── ios7-download.png │ │ │ ├── ios7-drag.png │ │ │ ├── ios7-email-outline.png │ │ │ ├── ios7-email.png │ │ │ ├── ios7-expand.png │ │ │ ├── ios7-eye-outline.png │ │ │ ├── ios7-eye.png │ │ │ ├── ios7-fastforward-outline.png │ │ │ ├── ios7-fastforward.png │ │ │ ├── ios7-filing-outline.png │ │ │ ├── ios7-filing.png │ │ │ ├── ios7-film-outline.png │ │ │ ├── ios7-film.png │ │ │ ├── ios7-flag-outline.png │ │ │ ├── ios7-flag.png │ │ │ ├── ios7-folder-outline.png │ │ │ ├── ios7-folder.png │ │ │ ├── ios7-football-outline.png │ │ │ ├── ios7-football.png │ │ │ ├── ios7-gear-outline.png │ │ │ ├── ios7-gear.png │ │ │ ├── ios7-glasses-outline.png │ │ │ ├── ios7-glasses.png │ │ │ ├── ios7-heart-outline.png │ │ │ ├── ios7-heart.png │ │ │ ├── ios7-help-empty.png │ │ │ ├── ios7-help-outline.png │ │ │ ├── ios7-help.png │ │ │ ├── ios7-home-outline.png │ │ │ ├── ios7-home.png │ │ │ ├── ios7-infinite-outline.png │ │ │ ├── ios7-infinite.png │ │ │ ├── ios7-information-empty.png │ │ │ ├── ios7-information-outline.png │ │ │ ├── ios7-information.png │ │ │ ├── ios7-ionic-outline.png │ │ │ ├── ios7-keypad-outline.png │ │ │ ├── ios7-keypad.png │ │ │ ├── ios7-lightbulb-outline.png │ │ │ ├── ios7-lightbulb.png │ │ │ ├── ios7-location-outline.png │ │ │ ├── ios7-location.png │ │ │ ├── ios7-locked-outline.png │ │ │ ├── ios7-locked.png │ │ │ ├── ios7-loop-strong.png │ │ │ ├── ios7-loop.png │ │ │ ├── ios7-medkit-outline.png │ │ │ ├── ios7-medkit.png │ │ │ ├── ios7-mic-off.png │ │ │ ├── ios7-mic-outline.png │ │ │ ├── ios7-mic.png │ │ │ ├── ios7-minus-empty.png │ │ │ ├── ios7-minus-outline.png │ │ │ ├── ios7-minus.png │ │ │ ├── ios7-monitor-outline.png │ │ │ ├── ios7-monitor.png │ │ │ ├── ios7-moon-outline.png │ │ │ ├── ios7-moon.png │ │ │ ├── ios7-more-outline.png │ │ │ ├── ios7-more.png │ │ │ ├── ios7-musical-note.png │ │ │ ├── ios7-musical-notes.png │ │ │ ├── ios7-navigate-outline.png │ │ │ ├── ios7-navigate.png │ │ │ ├── ios7-paper-outline.png │ │ │ ├── ios7-paper.png │ │ │ ├── ios7-paperplane-outline.png │ │ │ ├── ios7-paperplane.png │ │ │ ├── ios7-partlysunny-outline.png │ │ │ ├── ios7-partlysunny.png │ │ │ ├── ios7-pause-outline.png │ │ │ ├── ios7-pause.png │ │ │ ├── ios7-paw-outline.png │ │ │ ├── ios7-paw.png │ │ │ ├── ios7-people-outline.png │ │ │ ├── ios7-people.png │ │ │ ├── ios7-person-outline.png │ │ │ ├── ios7-person.png │ │ │ ├── ios7-personadd-outline.png │ │ │ ├── ios7-personadd.png │ │ │ ├── ios7-photos-outline.png │ │ │ ├── ios7-photos.png │ │ │ ├── ios7-pie-outline.png │ │ │ ├── ios7-pie.png │ │ │ ├── ios7-play-outline.png │ │ │ ├── ios7-play.png │ │ │ ├── ios7-plus-empty.png │ │ │ ├── ios7-plus-outline.png │ │ │ ├── ios7-plus.png │ │ │ ├── ios7-pricetag-outline.png │ │ │ ├── ios7-pricetag.png │ │ │ ├── ios7-pricetags-outline.png │ │ │ ├── ios7-pricetags.png │ │ │ ├── ios7-printer-outline.png │ │ │ ├── ios7-printer.png │ │ │ ├── ios7-pulse-strong.png │ │ │ ├── ios7-pulse.png │ │ │ ├── ios7-rainy-outline.png │ │ │ ├── ios7-rainy.png │ │ │ ├── ios7-recording-outline.png │ │ │ ├── ios7-recording.png │ │ │ ├── ios7-redo-outline.png │ │ │ ├── ios7-redo.png │ │ │ ├── ios7-refresh-empty.png │ │ │ ├── ios7-refresh-outline.png │ │ │ ├── ios7-refresh.png │ │ │ ├── ios7-reload.png │ │ │ ├── ios7-reverse-camera-outline.png │ │ │ ├── ios7-reverse-camera.png │ │ │ ├── ios7-rewind-outline.png │ │ │ ├── ios7-rewind.png │ │ │ ├── ios7-search-strong.png │ │ │ ├── ios7-search.png │ │ │ ├── ios7-settings-strong.png │ │ │ ├── ios7-settings.png │ │ │ ├── ios7-shrink.png │ │ │ ├── ios7-skipbackward-outline.png │ │ │ ├── ios7-skipbackward.png │ │ │ ├── ios7-skipforward-outline.png │ │ │ ├── ios7-skipforward.png │ │ │ ├── ios7-snowy.png │ │ │ ├── ios7-speedometer-outline.png │ │ │ ├── ios7-speedometer.png │ │ │ ├── ios7-star-half.png │ │ │ ├── ios7-star-outline.png │ │ │ ├── ios7-star.png │ │ │ ├── ios7-stopwatch-outline.png │ │ │ ├── ios7-stopwatch.png │ │ │ ├── ios7-sunny-outline.png │ │ │ ├── ios7-sunny.png │ │ │ ├── ios7-telephone-outline.png │ │ │ ├── ios7-telephone.png │ │ │ ├── ios7-tennisball-outline.png │ │ │ ├── ios7-tennisball.png │ │ │ ├── ios7-thunderstorm-outline.png │ │ │ ├── ios7-thunderstorm.png │ │ │ ├── ios7-time-outline.png │ │ │ ├── ios7-time.png │ │ │ ├── ios7-timer-outline.png │ │ │ ├── ios7-timer.png │ │ │ ├── ios7-toggle-outline.png │ │ │ ├── ios7-toggle.png │ │ │ ├── ios7-trash-outline.png │ │ │ ├── ios7-trash.png │ │ │ ├── ios7-undo-outline.png │ │ │ ├── ios7-undo.png │ │ │ ├── ios7-unlocked-outline.png │ │ │ ├── ios7-unlocked.png │ │ │ ├── ios7-upload-outline.png │ │ │ ├── ios7-upload.png │ │ │ ├── ios7-videocam-outline.png │ │ │ ├── ios7-videocam.png │ │ │ ├── ios7-volume-high.png │ │ │ ├── ios7-volume-low.png │ │ │ ├── ios7-wineglass-outline.png │ │ │ ├── ios7-wineglass.png │ │ │ ├── ios7-world-outline.png │ │ │ ├── ios7-world.png │ │ │ ├── ipad.png │ │ │ ├── iphone.png │ │ │ ├── ipod.png │ │ │ ├── jet.png │ │ │ ├── key.png │ │ │ ├── knife.png │ │ │ ├── laptop.png │ │ │ ├── leaf.png │ │ │ ├── levels.png │ │ │ ├── lightbulb.png │ │ │ ├── link.png │ │ │ ├── load-a.png │ │ │ ├── load-b.png │ │ │ ├── load-c.png │ │ │ ├── load-d.png │ │ │ ├── location.png │ │ │ ├── locked.png │ │ │ ├── log-in.png │ │ │ ├── log-out.png │ │ │ ├── loop.png │ │ │ ├── magnet.png │ │ │ ├── male.png │ │ │ ├── man.png │ │ │ ├── map.png │ │ │ ├── medkit.png │ │ │ ├── merge.png │ │ │ ├── mic-a.png │ │ │ ├── mic-b.png │ │ │ ├── mic-c.png │ │ │ ├── minus-circled.png │ │ │ ├── minus-round.png │ │ │ ├── minus.png │ │ │ ├── model-s.png │ │ │ ├── monitor.png │ │ │ ├── more.png │ │ │ ├── mouse.png │ │ │ ├── music-note.png │ │ │ ├── navicon-round.png │ │ │ ├── navicon.png │ │ │ ├── navigate.png │ │ │ ├── network.png │ │ │ ├── no-smoking.png │ │ │ ├── nuclear.png │ │ │ ├── outlet.png │ │ │ ├── paper-airplane.png │ │ │ ├── paperclip.png │ │ │ ├── pause.png │ │ │ ├── person-add.png │ │ │ ├── person-stalker.png │ │ │ ├── person.png │ │ │ ├── pie-graph.png │ │ │ ├── pin.png │ │ │ ├── pinpoint.png │ │ │ ├── pizza.png │ │ │ ├── plane.png │ │ │ ├── planet.png │ │ │ ├── play.png │ │ │ ├── playstation.png │ │ │ ├── plus-circled.png │ │ │ ├── plus-round.png │ │ │ ├── plus.png │ │ │ ├── podium.png │ │ │ ├── pound.png │ │ │ ├── power.png │ │ │ ├── pricetag.png │ │ │ ├── pricetags.png │ │ │ ├── printer.png │ │ │ ├── pull-request.png │ │ │ ├── qr-scanner.png │ │ │ ├── quote.png │ │ │ ├── radio-waves.png │ │ │ ├── record.png │ │ │ ├── refresh.png │ │ │ ├── reply-all.png │ │ │ ├── reply.png │ │ │ ├── ribbon-a.png │ │ │ ├── ribbon-b.png │ │ │ ├── sad.png │ │ │ ├── scissors.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── share.png │ │ │ ├── shuffle.png │ │ │ ├── skip-backward.png │ │ │ ├── skip-forward.png │ │ │ ├── social-android-outline.png │ │ │ ├── social-android.png │ │ │ ├── social-apple-outline.png │ │ │ ├── social-apple.png │ │ │ ├── social-bitcoin-outline.png │ │ │ ├── social-bitcoin.png │ │ │ ├── social-buffer-outline.png │ │ │ ├── social-buffer.png │ │ │ ├── social-designernews-outline.png │ │ │ ├── social-designernews.png │ │ │ ├── social-dribbble-outline.png │ │ │ ├── social-dribbble.png │ │ │ ├── social-dropbox-outline.png │ │ │ ├── social-dropbox.png │ │ │ ├── social-facebook-outline.png │ │ │ ├── social-facebook.png │ │ │ ├── social-foursquare-outline.png │ │ │ ├── social-foursquare.png │ │ │ ├── social-freebsd-devil.png │ │ │ ├── social-github-outline.png │ │ │ ├── social-github.png │ │ │ ├── social-google-outline.png │ │ │ ├── social-google.png │ │ │ ├── social-googleplus-outline.png │ │ │ ├── social-googleplus.png │ │ │ ├── social-hackernews-outline.png │ │ │ ├── social-hackernews.png │ │ │ ├── social-instagram-outline.png │ │ │ ├── social-instagram.png │ │ │ ├── social-linkedin-outline.png │ │ │ ├── social-linkedin.png │ │ │ ├── social-pinterest-outline.png │ │ │ ├── social-pinterest.png │ │ │ ├── social-reddit-outline.png │ │ │ ├── social-reddit.png │ │ │ ├── social-rss-outline.png │ │ │ ├── social-rss.png │ │ │ ├── social-skype-outline.png │ │ │ ├── social-skype.png │ │ │ ├── social-tumblr-outline.png │ │ │ ├── social-tumblr.png │ │ │ ├── social-tux.png │ │ │ ├── social-twitter-outline.png │ │ │ ├── social-twitter.png │ │ │ ├── social-usd-outline.png │ │ │ ├── social-usd.png │ │ │ ├── social-vimeo-outline.png │ │ │ ├── social-vimeo.png │ │ │ ├── social-windows-outline.png │ │ │ ├── social-windows.png │ │ │ ├── social-wordpress-outline.png │ │ │ ├── social-wordpress.png │ │ │ ├── social-yahoo-outline.png │ │ │ ├── social-yahoo.png │ │ │ ├── social-youtube-outline.png │ │ │ ├── social-youtube.png │ │ │ ├── speakerphone.png │ │ │ ├── speedometer.png │ │ │ ├── spoon.png │ │ │ ├── star.png │ │ │ ├── stats-bars.png │ │ │ ├── steam.png │ │ │ ├── stop.png │ │ │ ├── thermometer.png │ │ │ ├── thumbsdown.png │ │ │ ├── thumbsup.png │ │ │ ├── toggle-filled.png │ │ │ ├── toggle.png │ │ │ ├── trash-a.png │ │ │ ├── trash-b.png │ │ │ ├── trophy.png │ │ │ ├── umbrella.png │ │ │ ├── university.png │ │ │ ├── unlocked.png │ │ │ ├── upload.png │ │ │ ├── usb.png │ │ │ ├── videocamera.png │ │ │ ├── volume-high.png │ │ │ ├── volume-low.png │ │ │ ├── volume-medium.png │ │ │ ├── volume-mute.png │ │ │ ├── wand.png │ │ │ ├── waterdrop.png │ │ │ ├── wifi.png │ │ │ ├── wineglass.png │ │ │ ├── woman.png │ │ │ ├── wrench.png │ │ │ └── xbox.png │ │ ├── readme.md │ │ ├── scss │ │ ├── _ionicons-font.scss │ │ ├── _ionicons-icons.scss │ │ ├── _ionicons-variables.scss │ │ └── ionicons.scss │ │ └── src │ │ ├── alert-circled.svg │ │ ├── alert.svg │ │ ├── android-add-circle.svg │ │ ├── android-add.svg │ │ ├── android-alarm-clock.svg │ │ ├── android-alert.svg │ │ ├── android-apps.svg │ │ ├── android-archive.svg │ │ ├── android-arrow-back.svg │ │ ├── android-arrow-down.svg │ │ ├── android-arrow-dropdown-circle.svg │ │ ├── android-arrow-dropdown.svg │ │ ├── android-arrow-dropleft-circle.svg │ │ ├── android-arrow-dropleft.svg │ │ ├── android-arrow-dropright-circle.svg │ │ ├── android-arrow-dropright.svg │ │ ├── android-arrow-dropup-circle.svg │ │ ├── android-arrow-dropup.svg │ │ ├── android-arrow-forward.svg │ │ ├── android-arrow-up.svg │ │ ├── android-attach.svg │ │ ├── android-bar.svg │ │ ├── android-bicycle.svg │ │ ├── android-boat.svg │ │ ├── android-bookmark.svg │ │ ├── android-bulb.svg │ │ ├── android-bus.svg │ │ ├── android-calendar.svg │ │ ├── android-call.svg │ │ ├── android-camera.svg │ │ ├── android-cancel.svg │ │ ├── android-car.svg │ │ ├── android-cart.svg │ │ ├── android-chat.svg │ │ ├── android-checkbox-blank.svg │ │ ├── android-checkbox-outline-blank.svg │ │ ├── android-checkbox-outline.svg │ │ ├── android-checkbox.svg │ │ ├── android-checkmark-circle.svg │ │ ├── android-clipboard.svg │ │ ├── android-close.svg │ │ ├── android-cloud-circle.svg │ │ ├── android-cloud-done.svg │ │ ├── android-cloud-outline.svg │ │ ├── android-cloud.svg │ │ ├── android-color-palette.svg │ │ ├── android-compass.svg │ │ ├── android-contact.svg │ │ ├── android-contacts.svg │ │ ├── android-contract.svg │ │ ├── android-create.svg │ │ ├── android-delete.svg │ │ ├── android-desktop.svg │ │ ├── android-document.svg │ │ ├── android-done-all.svg │ │ ├── android-done.svg │ │ ├── android-download.svg │ │ ├── android-drafts.svg │ │ ├── android-exit.svg │ │ ├── android-expand.svg │ │ ├── android-favorite-outline.svg │ │ ├── android-favorite.svg │ │ ├── android-film.svg │ │ ├── android-folder-open.svg │ │ ├── android-folder.svg │ │ ├── android-funnel.svg │ │ ├── android-globe.svg │ │ ├── android-hand.svg │ │ ├── android-hangout.svg │ │ ├── android-happy.svg │ │ ├── android-home.svg │ │ ├── android-image.svg │ │ ├── android-laptop.svg │ │ ├── android-list.svg │ │ ├── android-locate.svg │ │ ├── android-lock.svg │ │ ├── android-mail.svg │ │ ├── android-map.svg │ │ ├── android-menu.svg │ │ ├── android-microphone-off.svg │ │ ├── android-microphone.svg │ │ ├── android-more-horizontal.svg │ │ ├── android-more-vertical.svg │ │ ├── android-navigate.svg │ │ ├── android-notifications-none.svg │ │ ├── android-notifications-off.svg │ │ ├── android-notifications.svg │ │ ├── android-open.svg │ │ ├── android-options.svg │ │ ├── android-people.svg │ │ ├── android-person-add.svg │ │ ├── android-person.svg │ │ ├── android-phone-landscape.svg │ │ ├── android-phone-portrait.svg │ │ ├── android-pin.svg │ │ ├── android-plane.svg │ │ ├── android-playstore.svg │ │ ├── android-print.svg │ │ ├── android-radio-button-off.svg │ │ ├── android-radio-button-on.svg │ │ ├── android-refresh.svg │ │ ├── android-remove-circle.svg │ │ ├── android-remove.svg │ │ ├── android-restaurant.svg │ │ ├── android-sad.svg │ │ ├── android-search.svg │ │ ├── android-send.svg │ │ ├── android-settings.svg │ │ ├── android-share-alt.svg │ │ ├── android-share.svg │ │ ├── android-star-half.svg │ │ ├── android-star-outline.svg │ │ ├── android-star.svg │ │ ├── android-stopwatch.svg │ │ ├── android-subway.svg │ │ ├── android-sunny.svg │ │ ├── android-sync.svg │ │ ├── android-textsms.svg │ │ ├── android-time.svg │ │ ├── android-train.svg │ │ ├── android-unlock.svg │ │ ├── android-upload.svg │ │ ├── android-volume-down.svg │ │ ├── android-volume-mute.svg │ │ ├── android-volume-off.svg │ │ ├── android-volume-up.svg │ │ ├── android-walk.svg │ │ ├── android-warning.svg │ │ ├── android-watch.svg │ │ ├── android-wifi.svg │ │ ├── aperture.svg │ │ ├── archive.svg │ │ ├── arrow-down-a.svg │ │ ├── arrow-down-b.svg │ │ ├── arrow-down-c.svg │ │ ├── arrow-expand.svg │ │ ├── arrow-graph-down-left.svg │ │ ├── arrow-graph-down-right.svg │ │ ├── arrow-graph-up-left.svg │ │ ├── arrow-graph-up-right.svg │ │ ├── arrow-left-a.svg │ │ ├── arrow-left-b.svg │ │ ├── arrow-left-c.svg │ │ ├── arrow-move.svg │ │ ├── arrow-resize.svg │ │ ├── arrow-return-left.svg │ │ ├── arrow-return-right.svg │ │ ├── arrow-right-a.svg │ │ ├── arrow-right-b.svg │ │ ├── arrow-right-c.svg │ │ ├── arrow-shrink.svg │ │ ├── arrow-swap.svg │ │ ├── arrow-up-a.svg │ │ ├── arrow-up-b.svg │ │ ├── arrow-up-c.svg │ │ ├── asterisk.svg │ │ ├── at.svg │ │ ├── backspace-outline.svg │ │ ├── backspace.svg │ │ ├── bag.svg │ │ ├── battery-charging.svg │ │ ├── battery-empty.svg │ │ ├── battery-full.svg │ │ ├── battery-half.svg │ │ ├── battery-low.svg │ │ ├── beaker.svg │ │ ├── beer.svg │ │ ├── bluetooth.svg │ │ ├── bonfire.svg │ │ ├── bookmark.svg │ │ ├── bowtie.svg │ │ ├── briefcase.svg │ │ ├── bug.svg │ │ ├── calculator.svg │ │ ├── calendar.svg │ │ ├── camera.svg │ │ ├── card.svg │ │ ├── cash.svg │ │ ├── chatbox-working.svg │ │ ├── chatbox.svg │ │ ├── chatboxes.svg │ │ ├── chatbubble-working.svg │ │ ├── chatbubble.svg │ │ ├── chatbubbles.svg │ │ ├── checkmark-circled.svg │ │ ├── checkmark-round.svg │ │ ├── checkmark.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right.svg │ │ ├── chevron-up.svg │ │ ├── clipboard.svg │ │ ├── clock.svg │ │ ├── close-circled.svg │ │ ├── close-round.svg │ │ ├── close.svg │ │ ├── closed-captioning.svg │ │ ├── cloud.svg │ │ ├── code-download.svg │ │ ├── code-working.svg │ │ ├── code.svg │ │ ├── coffee.svg │ │ ├── compass.svg │ │ ├── compose.svg │ │ ├── connection-bars.svg │ │ ├── contrast.svg │ │ ├── crop.svg │ │ ├── cube.svg │ │ ├── disc.svg │ │ ├── document-text.svg │ │ ├── document.svg │ │ ├── drag.svg │ │ ├── earth.svg │ │ ├── easel.svg │ │ ├── edit.svg │ │ ├── egg.svg │ │ ├── eject.svg │ │ ├── email-unread.svg │ │ ├── email.svg │ │ ├── erlenmeyer-flask-bubbles.svg │ │ ├── erlenmeyer-flask.svg │ │ ├── eye-disabled.svg │ │ ├── eye.svg │ │ ├── female.svg │ │ ├── filing.svg │ │ ├── film-marker.svg │ │ ├── fireball.svg │ │ ├── flag.svg │ │ ├── flame.svg │ │ ├── flash-off.svg │ │ ├── flash.svg │ │ ├── folder.svg │ │ ├── fork-repo.svg │ │ ├── fork.svg │ │ ├── forward.svg │ │ ├── funnel.svg │ │ ├── gear-a.svg │ │ ├── gear-b.svg │ │ ├── grid.svg │ │ ├── hammer.svg │ │ ├── happy-outline.svg │ │ ├── happy.svg │ │ ├── headphone.svg │ │ ├── heart-broken.svg │ │ ├── heart.svg │ │ ├── help-buoy.svg │ │ ├── help-circled.svg │ │ ├── help.svg │ │ ├── home.svg │ │ ├── icecream.svg │ │ ├── image.svg │ │ ├── images.svg │ │ ├── information-circled.svg │ │ ├── information.svg │ │ ├── ionic.svg │ │ ├── ios-alarm-outline.svg │ │ ├── ios-alarm.svg │ │ ├── ios-albums-outline.svg │ │ ├── ios-albums.svg │ │ ├── ios-americanfootball-outline.svg │ │ ├── ios-americanfootball.svg │ │ ├── ios-analytics-outline.svg │ │ ├── ios-analytics.svg │ │ ├── ios-arrow-back.svg │ │ ├── ios-arrow-down.svg │ │ ├── ios-arrow-forward.svg │ │ ├── ios-arrow-left.svg │ │ ├── ios-arrow-right.svg │ │ ├── ios-arrow-thin-down.svg │ │ ├── ios-arrow-thin-left.svg │ │ ├── ios-arrow-thin-right.svg │ │ ├── ios-arrow-thin-up.svg │ │ ├── ios-arrow-up.svg │ │ ├── ios-at-outline.svg │ │ ├── ios-at.svg │ │ ├── ios-barcode-outline.svg │ │ ├── ios-barcode.svg │ │ ├── ios-baseball-outline.svg │ │ ├── ios-baseball.svg │ │ ├── ios-basketball-outline.svg │ │ ├── ios-basketball.svg │ │ ├── ios-bell-outline.svg │ │ ├── ios-bell.svg │ │ ├── ios-body-outline.svg │ │ ├── ios-body.svg │ │ ├── ios-bolt-outline.svg │ │ ├── ios-bolt.svg │ │ ├── ios-book-outline.svg │ │ ├── ios-book.svg │ │ ├── ios-bookmarks-outline.svg │ │ ├── ios-bookmarks.svg │ │ ├── ios-box-outline.svg │ │ ├── ios-box.svg │ │ ├── ios-briefcase-outline.svg │ │ ├── ios-briefcase.svg │ │ ├── ios-browsers-outline.svg │ │ ├── ios-browsers.svg │ │ ├── ios-calculator-outline.svg │ │ ├── ios-calculator.svg │ │ ├── ios-calendar-outline.svg │ │ ├── ios-calendar.svg │ │ ├── ios-camera-outline.svg │ │ ├── ios-camera.svg │ │ ├── ios-cart-outline.svg │ │ ├── ios-cart.svg │ │ ├── ios-chatboxes-outline.svg │ │ ├── ios-chatboxes.svg │ │ ├── ios-chatbubble-outline.svg │ │ ├── ios-chatbubble.svg │ │ ├── ios-checkmark-empty.svg │ │ ├── ios-checkmark-outline.svg │ │ ├── ios-checkmark.svg │ │ ├── ios-circle-filled.svg │ │ ├── ios-circle-outline.svg │ │ ├── ios-clock-outline.svg │ │ ├── ios-clock.svg │ │ ├── ios-close-empty.svg │ │ ├── ios-close-outline.svg │ │ ├── ios-close.svg │ │ ├── ios-cloud-download-outline.svg │ │ ├── ios-cloud-download.svg │ │ ├── ios-cloud-outline.svg │ │ ├── ios-cloud-upload-outline.svg │ │ ├── ios-cloud-upload.svg │ │ ├── ios-cloud.svg │ │ ├── ios-cloudy-night-outline.svg │ │ ├── ios-cloudy-night.svg │ │ ├── ios-cloudy-outline.svg │ │ ├── ios-cloudy.svg │ │ ├── ios-cog-outline.svg │ │ ├── ios-cog.svg │ │ ├── ios-color-filter-outline.svg │ │ ├── ios-color-filter.svg │ │ ├── ios-color-wand-outline.svg │ │ ├── ios-color-wand.svg │ │ ├── ios-compose-outline.svg │ │ ├── ios-compose.svg │ │ ├── ios-contact-outline.svg │ │ ├── ios-contact.svg │ │ ├── ios-copy-outline.svg │ │ ├── ios-copy.svg │ │ ├── ios-crop-strong.svg │ │ ├── ios-crop.svg │ │ ├── ios-download-outline.svg │ │ ├── ios-download.svg │ │ ├── ios-drag.svg │ │ ├── ios-email-outline.svg │ │ ├── ios-email.svg │ │ ├── ios-eye-outline.svg │ │ ├── ios-eye.svg │ │ ├── ios-fastforward-outline.svg │ │ ├── ios-fastforward.svg │ │ ├── ios-filing-outline.svg │ │ ├── ios-filing.svg │ │ ├── ios-film-outline.svg │ │ ├── ios-film.svg │ │ ├── ios-flag-outline.svg │ │ ├── ios-flag.svg │ │ ├── ios-flame-outline.svg │ │ ├── ios-flame.svg │ │ ├── ios-flask-outline.svg │ │ ├── ios-flask.svg │ │ ├── ios-flower-outline.svg │ │ ├── ios-flower.svg │ │ ├── ios-folder-outline.svg │ │ ├── ios-folder.svg │ │ ├── ios-football-outline.svg │ │ ├── ios-football.svg │ │ ├── ios-game-controller-a-outline.svg │ │ ├── ios-game-controller-a.svg │ │ ├── ios-game-controller-b-outline.svg │ │ ├── ios-game-controller-b.svg │ │ ├── ios-gear-outline.svg │ │ ├── ios-gear.svg │ │ ├── ios-glasses-outline.svg │ │ ├── ios-glasses.svg │ │ ├── ios-grid-view-outline.svg │ │ ├── ios-grid-view.svg │ │ ├── ios-heart-outline.svg │ │ ├── ios-heart.svg │ │ ├── ios-help-empty.svg │ │ ├── ios-help-outline.svg │ │ ├── ios-help.svg │ │ ├── ios-home-outline.svg │ │ ├── ios-home.svg │ │ ├── ios-infinite-outline.svg │ │ ├── ios-infinite.svg │ │ ├── ios-information-empty.svg │ │ ├── ios-information-outline.svg │ │ ├── ios-information.svg │ │ ├── ios-ionic-outline.svg │ │ ├── ios-keypad-outline.svg │ │ ├── ios-keypad.svg │ │ ├── ios-lightbulb-outline.svg │ │ ├── ios-lightbulb.svg │ │ ├── ios-list-outline.svg │ │ ├── ios-list.svg │ │ ├── ios-location-outline.svg │ │ ├── ios-location.svg │ │ ├── ios-locked-outline.svg │ │ ├── ios-locked.svg │ │ ├── ios-loop-strong.svg │ │ ├── ios-loop.svg │ │ ├── ios-medical-outline.svg │ │ ├── ios-medical.svg │ │ ├── ios-medkit-outline.svg │ │ ├── ios-medkit.svg │ │ ├── ios-mic-off.svg │ │ ├── ios-mic-outline.svg │ │ ├── ios-mic.svg │ │ ├── ios-minus-empty.svg │ │ ├── ios-minus-outline.svg │ │ ├── ios-minus.svg │ │ ├── ios-monitor-outline.svg │ │ ├── ios-monitor.svg │ │ ├── ios-moon-outline.svg │ │ ├── ios-moon.svg │ │ ├── ios-more-outline.svg │ │ ├── ios-more.svg │ │ ├── ios-musical-note.svg │ │ ├── ios-musical-notes.svg │ │ ├── ios-navigate-outline.svg │ │ ├── ios-navigate.svg │ │ ├── ios-nutrition-outline.svg │ │ ├── ios-nutrition.svg │ │ ├── ios-paper-outline.svg │ │ ├── ios-paper.svg │ │ ├── ios-paperplane-outline.svg │ │ ├── ios-paperplane.svg │ │ ├── ios-partlysunny-outline.svg │ │ ├── ios-partlysunny.svg │ │ ├── ios-pause-outline.svg │ │ ├── ios-pause.svg │ │ ├── ios-paw-outline.svg │ │ ├── ios-paw.svg │ │ ├── ios-people-outline.svg │ │ ├── ios-people.svg │ │ ├── ios-person-outline.svg │ │ ├── ios-person.svg │ │ ├── ios-personadd-outline.svg │ │ ├── ios-personadd.svg │ │ ├── ios-photos-outline.svg │ │ ├── ios-photos.svg │ │ ├── ios-pie-outline.svg │ │ ├── ios-pie.svg │ │ ├── ios-pint-outline.svg │ │ ├── ios-pint.svg │ │ ├── ios-play-outline.svg │ │ ├── ios-play.svg │ │ ├── ios-plus-empty.svg │ │ ├── ios-plus-outline.svg │ │ ├── ios-plus.svg │ │ ├── ios-pricetag-outline.svg │ │ ├── ios-pricetag.svg │ │ ├── ios-pricetags-outline.svg │ │ ├── ios-pricetags.svg │ │ ├── ios-printer-outline.svg │ │ ├── ios-printer.svg │ │ ├── ios-pulse-strong.svg │ │ ├── ios-pulse.svg │ │ ├── ios-rainy-outline.svg │ │ ├── ios-rainy.svg │ │ ├── ios-recording-outline.svg │ │ ├── ios-recording.svg │ │ ├── ios-redo-outline.svg │ │ ├── ios-redo.svg │ │ ├── ios-refresh-empty.svg │ │ ├── ios-refresh-outline.svg │ │ ├── ios-refresh.svg │ │ ├── ios-reload.svg │ │ ├── ios-reverse-camera-outline.svg │ │ ├── ios-reverse-camera.svg │ │ ├── ios-rewind-outline.svg │ │ ├── ios-rewind.svg │ │ ├── ios-rose-outline.svg │ │ ├── ios-rose.svg │ │ ├── ios-search-strong.svg │ │ ├── ios-search.svg │ │ ├── ios-settings-strong.svg │ │ ├── ios-settings.svg │ │ ├── ios-shuffle-strong.svg │ │ ├── ios-shuffle.svg │ │ ├── ios-skipbackward-outline.svg │ │ ├── ios-skipbackward.svg │ │ ├── ios-skipforward-outline.svg │ │ ├── ios-skipforward.svg │ │ ├── ios-snowy.svg │ │ ├── ios-speedometer-outline.svg │ │ ├── ios-speedometer.svg │ │ ├── ios-star-half.svg │ │ ├── ios-star-outline.svg │ │ ├── ios-star.svg │ │ ├── ios-stopwatch-outline.svg │ │ ├── ios-stopwatch.svg │ │ ├── ios-sunny-outline.svg │ │ ├── ios-sunny.svg │ │ ├── ios-telephone-outline.svg │ │ ├── ios-telephone.svg │ │ ├── ios-tennisball-outline.svg │ │ ├── ios-tennisball.svg │ │ ├── ios-thunderstorm-outline.svg │ │ ├── ios-thunderstorm.svg │ │ ├── ios-time-outline.svg │ │ ├── ios-time.svg │ │ ├── ios-timer-outline.svg │ │ ├── ios-timer.svg │ │ ├── ios-toggle-outline.svg │ │ ├── ios-toggle.svg │ │ ├── ios-trash-outline.svg │ │ ├── ios-trash.svg │ │ ├── ios-undo-outline.svg │ │ ├── ios-undo.svg │ │ ├── ios-unlocked-outline.svg │ │ ├── ios-unlocked.svg │ │ ├── ios-upload-outline.svg │ │ ├── ios-upload.svg │ │ ├── ios-videocam-outline.svg │ │ ├── ios-videocam.svg │ │ ├── ios-volume-high.svg │ │ ├── ios-volume-low.svg │ │ ├── ios-wineglass-outline.svg │ │ ├── ios-wineglass.svg │ │ ├── ios-world-outline.svg │ │ ├── ios-world.svg │ │ ├── ipad.svg │ │ ├── iphone.svg │ │ ├── ipod.svg │ │ ├── jet.svg │ │ ├── key.svg │ │ ├── knife.svg │ │ ├── laptop.svg │ │ ├── leaf.svg │ │ ├── levels.svg │ │ ├── lightbulb.svg │ │ ├── link.svg │ │ ├── load-a.svg │ │ ├── load-b.svg │ │ ├── load-c.svg │ │ ├── load-d.svg │ │ ├── location.svg │ │ ├── lock-combination.svg │ │ ├── locked.svg │ │ ├── log-in.svg │ │ ├── log-out.svg │ │ ├── loop.svg │ │ ├── magnet.svg │ │ ├── male.svg │ │ ├── man.svg │ │ ├── map.svg │ │ ├── medkit.svg │ │ ├── merge.svg │ │ ├── mic-a.svg │ │ ├── mic-b.svg │ │ ├── mic-c.svg │ │ ├── minus-circled.svg │ │ ├── minus-round.svg │ │ ├── minus.svg │ │ ├── model-s.svg │ │ ├── monitor.svg │ │ ├── more.svg │ │ ├── mouse.svg │ │ ├── music-note.svg │ │ ├── navicon-round.svg │ │ ├── navicon.svg │ │ ├── navigate.svg │ │ ├── network.svg │ │ ├── no-smoking.svg │ │ ├── nuclear.svg │ │ ├── outlet.svg │ │ ├── paintbrush.svg │ │ ├── paintbucket.svg │ │ ├── paper-airplane.svg │ │ ├── paperclip.svg │ │ ├── pause.svg │ │ ├── person-add.svg │ │ ├── person-stalker.svg │ │ ├── person.svg │ │ ├── pie-graph.svg │ │ ├── pin.svg │ │ ├── pinpoint.svg │ │ ├── pizza.svg │ │ ├── plane.svg │ │ ├── planet.svg │ │ ├── play.svg │ │ ├── playstation.svg │ │ ├── plus-circled.svg │ │ ├── plus-round.svg │ │ ├── plus.svg │ │ ├── podium.svg │ │ ├── pound.svg │ │ ├── power.svg │ │ ├── pricetag.svg │ │ ├── pricetags.svg │ │ ├── printer.svg │ │ ├── pull-request.svg │ │ ├── qr-scanner.svg │ │ ├── quote.svg │ │ ├── radio-waves.svg │ │ ├── record.svg │ │ ├── refresh.svg │ │ ├── reply-all.svg │ │ ├── reply.svg │ │ ├── ribbon-a.svg │ │ ├── ribbon-b.svg │ │ ├── sad-outline.svg │ │ ├── sad.svg │ │ ├── scissors.svg │ │ ├── search.svg │ │ ├── settings.svg │ │ ├── share.svg │ │ ├── shuffle.svg │ │ ├── skip-backward.svg │ │ ├── skip-forward.svg │ │ ├── social-android-outline.svg │ │ ├── social-android.svg │ │ ├── social-angular-outline.svg │ │ ├── social-angular.svg │ │ ├── social-apple-outline.svg │ │ ├── social-apple.svg │ │ ├── social-bitcoin-outline.svg │ │ ├── social-bitcoin.svg │ │ ├── social-buffer-outline.svg │ │ ├── social-buffer.svg │ │ ├── social-chrome-outline.svg │ │ ├── social-chrome.svg │ │ ├── social-codepen-outline.svg │ │ ├── social-codepen.svg │ │ ├── social-css3-outline.svg │ │ ├── social-css3.svg │ │ ├── social-designernews-outline.svg │ │ ├── social-designernews.svg │ │ ├── social-dribbble-outline.svg │ │ ├── social-dribbble.svg │ │ ├── social-dropbox-outline.svg │ │ ├── social-dropbox.svg │ │ ├── social-euro-outline.svg │ │ ├── social-euro.svg │ │ ├── social-facebook-outline.svg │ │ ├── social-facebook.svg │ │ ├── social-foursquare-outline.svg │ │ ├── social-foursquare.svg │ │ ├── social-freebsd-devil.svg │ │ ├── social-github-outline.svg │ │ ├── social-github.svg │ │ ├── social-google-outline.svg │ │ ├── social-google.svg │ │ ├── social-googleplus-outline.svg │ │ ├── social-googleplus.svg │ │ ├── social-hackernews-outline.svg │ │ ├── social-hackernews.svg │ │ ├── social-html5-outline.svg │ │ ├── social-html5.svg │ │ ├── social-instagram-outline.svg │ │ ├── social-instagram.svg │ │ ├── social-javascript-outline.svg │ │ ├── social-javascript.svg │ │ ├── social-linkedin-outline.svg │ │ ├── social-linkedin.svg │ │ ├── social-markdown.svg │ │ ├── social-nodejs.svg │ │ ├── social-octocat.svg │ │ ├── social-pinterest-outline.svg │ │ ├── social-pinterest.svg │ │ ├── social-python.svg │ │ ├── social-reddit-outline.svg │ │ ├── social-reddit.svg │ │ ├── social-rss-outline.svg │ │ ├── social-rss.svg │ │ ├── social-sass.svg │ │ ├── social-skype-outline.svg │ │ ├── social-skype.svg │ │ ├── social-snapchat-outline.svg │ │ ├── social-snapchat.svg │ │ ├── social-tumblr-outline.svg │ │ ├── social-tumblr.svg │ │ ├── social-tux.svg │ │ ├── social-twitch-outline.svg │ │ ├── social-twitch.svg │ │ ├── social-twitter-outline.svg │ │ ├── social-twitter.svg │ │ ├── social-usd-outline.svg │ │ ├── social-usd.svg │ │ ├── social-vimeo-outline.svg │ │ ├── social-vimeo.svg │ │ ├── social-whatsapp-outline.svg │ │ ├── social-whatsapp.svg │ │ ├── social-windows-outline.svg │ │ ├── social-windows.svg │ │ ├── social-wordpress-outline.svg │ │ ├── social-wordpress.svg │ │ ├── social-yahoo-outline.svg │ │ ├── social-yahoo.svg │ │ ├── social-yen-outline.svg │ │ ├── social-yen.svg │ │ ├── social-youtube-outline.svg │ │ ├── social-youtube.svg │ │ ├── soup-can-outline.svg │ │ ├── soup-can.svg │ │ ├── speakerphone.svg │ │ ├── speedometer.svg │ │ ├── spoon.svg │ │ ├── star.svg │ │ ├── stats-bars.svg │ │ ├── steam.svg │ │ ├── stop.svg │ │ ├── thermometer.svg │ │ ├── thumbsdown.svg │ │ ├── thumbsup.svg │ │ ├── toggle-filled.svg │ │ ├── toggle.svg │ │ ├── transgender.svg │ │ ├── trash-a.svg │ │ ├── trash-b.svg │ │ ├── trophy.svg │ │ ├── tshirt-outline.svg │ │ ├── tshirt.svg │ │ ├── umbrella.svg │ │ ├── university.svg │ │ ├── unlocked.svg │ │ ├── upload.svg │ │ ├── usb.svg │ │ ├── videocamera.svg │ │ ├── volume-high.svg │ │ ├── volume-low.svg │ │ ├── volume-medium.svg │ │ ├── volume-mute.svg │ │ ├── wand.svg │ │ ├── waterdrop.svg │ │ ├── wifi.svg │ │ ├── wineglass.svg │ │ ├── woman.svg │ │ ├── wrench.svg │ │ └── xbox.svg ├── js │ ├── ie │ │ ├── PIE.htc │ │ ├── backgroundsize.min.htc │ │ ├── html5shiv.js │ │ └── respond.min.js │ ├── jq.min.js │ ├── jq.min.js.txt │ ├── jquery.min.js │ ├── jquery.scrolly.min.js │ ├── jquery.scrollzer.min.js │ ├── justgage.js │ ├── main.js │ ├── materialize.js │ ├── materialize.min.js │ ├── raphael-2.1.4.min.js │ ├── skel.min.js │ └── util.js ├── leef.jpg ├── leef1.jpg ├── less │ ├── _ionicons-font.less │ ├── _ionicons-icons.less │ ├── _ionicons-variables.less │ └── ionicons.less ├── migrations │ ├── 0001_initial.py │ ├── 0001_initial.pyc │ ├── 0002_plant_alias.py │ ├── 0002_plant_alias.pyc │ ├── 0003_auto_20171006_0938.py │ ├── 0003_auto_20171006_0938.pyc │ ├── 0004_auto_20171006_2026.py │ ├── 0004_auto_20171006_2026.pyc │ ├── 0005_auto_20171011_0816.py │ ├── 0005_auto_20171011_0816.pyc │ ├── __init__.py │ ├── __init__.pyc │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_plant_alias.cpython-36.pyc │ │ ├── 0003_auto_20171006_0938.cpython-36.pyc │ │ ├── 0004_auto_20171006_2026.cpython-36.pyc │ │ ├── 0005_auto_20171011_0816.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── models.pyc ├── pie1.html ├── plant2.html ├── plant_st.png ├── png │ └── 512 │ │ ├── alert-circled.png │ │ ├── alert.png │ │ ├── android-add-contact.png │ │ ├── android-add.png │ │ ├── android-alarm.png │ │ ├── android-archive.png │ │ ├── android-arrow-back.png │ │ ├── android-arrow-down-left.png │ │ ├── android-arrow-down-right.png │ │ ├── android-arrow-forward.png │ │ ├── android-arrow-up-left.png │ │ ├── android-arrow-up-right.png │ │ ├── android-battery.png │ │ ├── android-book.png │ │ ├── android-calendar.png │ │ ├── android-call.png │ │ ├── android-camera.png │ │ ├── android-chat.png │ │ ├── android-checkmark.png │ │ ├── android-clock.png │ │ ├── android-close.png │ │ ├── android-contact.png │ │ ├── android-contacts.png │ │ ├── android-data.png │ │ ├── android-developer.png │ │ ├── android-display.png │ │ ├── android-download.png │ │ ├── android-drawer.png │ │ ├── android-dropdown.png │ │ ├── android-earth.png │ │ ├── android-folder.png │ │ ├── android-forums.png │ │ ├── android-friends.png │ │ ├── android-hand.png │ │ ├── android-image.png │ │ ├── android-inbox.png │ │ ├── android-information.png │ │ ├── android-keypad.png │ │ ├── android-lightbulb.png │ │ ├── android-locate.png │ │ ├── android-location.png │ │ ├── android-mail.png │ │ ├── android-microphone.png │ │ ├── android-mixer.png │ │ ├── android-more.png │ │ ├── android-note.png │ │ ├── android-playstore.png │ │ ├── android-printer.png │ │ ├── android-promotion.png │ │ ├── android-reminder.png │ │ ├── android-remove.png │ │ ├── android-search.png │ │ ├── android-send.png │ │ ├── android-settings.png │ │ ├── android-share.png │ │ ├── android-social-user.png │ │ ├── android-social.png │ │ ├── android-sort.png │ │ ├── android-stair-drawer.png │ │ ├── android-star.png │ │ ├── android-stopwatch.png │ │ ├── android-storage.png │ │ ├── android-system-back.png │ │ ├── android-system-home.png │ │ ├── android-system-windows.png │ │ ├── android-timer.png │ │ ├── android-trash.png │ │ ├── android-user-menu.png │ │ ├── android-volume.png │ │ ├── android-wifi.png │ │ ├── aperture.png │ │ ├── archive.png │ │ ├── arrow-down-a.png │ │ ├── arrow-down-b.png │ │ ├── arrow-down-c.png │ │ ├── arrow-expand.png │ │ ├── arrow-graph-down-left.png │ │ ├── arrow-graph-down-right.png │ │ ├── arrow-graph-up-left.png │ │ ├── arrow-graph-up-right.png │ │ ├── arrow-left-a.png │ │ ├── arrow-left-b.png │ │ ├── arrow-left-c.png │ │ ├── arrow-move.png │ │ ├── arrow-resize.png │ │ ├── arrow-return-left.png │ │ ├── arrow-return-right.png │ │ ├── arrow-right-a.png │ │ ├── arrow-right-b.png │ │ ├── arrow-right-c.png │ │ ├── arrow-shrink.png │ │ ├── arrow-swap.png │ │ ├── arrow-up-a.png │ │ ├── arrow-up-b.png │ │ ├── arrow-up-c.png │ │ ├── asterisk.png │ │ ├── at.png │ │ ├── bag.png │ │ ├── battery-charging.png │ │ ├── battery-empty.png │ │ ├── battery-full.png │ │ ├── battery-half.png │ │ ├── battery-low.png │ │ ├── beaker.png │ │ ├── beer.png │ │ ├── bluetooth.png │ │ ├── bonfire.png │ │ ├── bookmark.png │ │ ├── briefcase.png │ │ ├── bug.png │ │ ├── calculator.png │ │ ├── calendar.png │ │ ├── camera.png │ │ ├── card.png │ │ ├── cash.png │ │ ├── chatbox-working.png │ │ ├── chatbox.png │ │ ├── chatboxes.png │ │ ├── chatbubble-working.png │ │ ├── chatbubble.png │ │ ├── chatbubbles.png │ │ ├── checkmark-circled.png │ │ ├── checkmark-round.png │ │ ├── checkmark.png │ │ ├── chevron-down.png │ │ ├── chevron-left.png │ │ ├── chevron-right.png │ │ ├── chevron-up.png │ │ ├── clipboard.png │ │ ├── clock.png │ │ ├── close-circled.png │ │ ├── close-round.png │ │ ├── close.png │ │ ├── closed-captioning.png │ │ ├── cloud.png │ │ ├── code-download.png │ │ ├── code-working.png │ │ ├── code.png │ │ ├── coffee.png │ │ ├── compass.png │ │ ├── compose.png │ │ ├── connection-bars.png │ │ ├── contrast.png │ │ ├── cube.png │ │ ├── disc.png │ │ ├── document-text.png │ │ ├── document.png │ │ ├── drag.png │ │ ├── earth.png │ │ ├── edit.png │ │ ├── egg.png │ │ ├── eject.png │ │ ├── email.png │ │ ├── eye-disabled.png │ │ ├── eye.png │ │ ├── female.png │ │ ├── filing.png │ │ ├── film-marker.png │ │ ├── fireball.png │ │ ├── flag.png │ │ ├── flame.png │ │ ├── flash-off.png │ │ ├── flash.png │ │ ├── flask.png │ │ ├── folder.png │ │ ├── fork-repo.png │ │ ├── fork.png │ │ ├── forward.png │ │ ├── funnel.png │ │ ├── game-controller-a.png │ │ ├── game-controller-b.png │ │ ├── gear-a.png │ │ ├── gear-b.png │ │ ├── grid.png │ │ ├── hammer.png │ │ ├── happy.png │ │ ├── headphone.png │ │ ├── heart-broken.png │ │ ├── heart.png │ │ ├── help-buoy.png │ │ ├── help-circled.png │ │ ├── help.png │ │ ├── home.png │ │ ├── icecream.png │ │ ├── icon-social-google-plus-outline.png │ │ ├── icon-social-google-plus.png │ │ ├── image.png │ │ ├── images.png │ │ ├── information-circled.png │ │ ├── information.png │ │ ├── ionic.png │ │ ├── ios7-alarm-outline.png │ │ ├── ios7-alarm.png │ │ ├── ios7-albums-outline.png │ │ ├── ios7-albums.png │ │ ├── ios7-americanfootball-outline.png │ │ ├── ios7-americanfootball.png │ │ ├── ios7-analytics-outline.png │ │ ├── ios7-analytics.png │ │ ├── ios7-arrow-back.png │ │ ├── ios7-arrow-down.png │ │ ├── ios7-arrow-forward.png │ │ ├── ios7-arrow-left.png │ │ ├── ios7-arrow-right.png │ │ ├── ios7-arrow-thin-down.png │ │ ├── ios7-arrow-thin-left.png │ │ ├── ios7-arrow-thin-right.png │ │ ├── ios7-arrow-thin-up.png │ │ ├── ios7-arrow-up.png │ │ ├── ios7-at-outline.png │ │ ├── ios7-at.png │ │ ├── ios7-barcode-outline.png │ │ ├── ios7-barcode.png │ │ ├── ios7-baseball-outline.png │ │ ├── ios7-baseball.png │ │ ├── ios7-basketball-outline.png │ │ ├── ios7-basketball.png │ │ ├── ios7-bell-outline.png │ │ ├── ios7-bell.png │ │ ├── ios7-bolt-outline.png │ │ ├── ios7-bolt.png │ │ ├── ios7-bookmarks-outline.png │ │ ├── ios7-bookmarks.png │ │ ├── ios7-box-outline.png │ │ ├── ios7-box.png │ │ ├── ios7-briefcase-outline.png │ │ ├── ios7-briefcase.png │ │ ├── ios7-browsers-outline.png │ │ ├── ios7-browsers.png │ │ ├── ios7-calculator-outline.png │ │ ├── ios7-calculator.png │ │ ├── ios7-calendar-outline.png │ │ ├── ios7-calendar.png │ │ ├── ios7-camera-outline.png │ │ ├── ios7-camera.png │ │ ├── ios7-cart-outline.png │ │ ├── ios7-cart.png │ │ ├── ios7-chatboxes-outline.png │ │ ├── ios7-chatboxes.png │ │ ├── ios7-chatbubble-outline.png │ │ ├── ios7-chatbubble.png │ │ ├── ios7-checkmark-empty.png │ │ ├── ios7-checkmark-outline.png │ │ ├── ios7-checkmark.png │ │ ├── ios7-circle-filled.png │ │ ├── ios7-circle-outline.png │ │ ├── ios7-clock-outline.png │ │ ├── ios7-clock.png │ │ ├── ios7-close-empty.png │ │ ├── ios7-close-outline.png │ │ ├── ios7-close.png │ │ ├── ios7-cloud-download-outline.png │ │ ├── ios7-cloud-download.png │ │ ├── ios7-cloud-outline.png │ │ ├── ios7-cloud-upload-outline.png │ │ ├── ios7-cloud-upload.png │ │ ├── ios7-cloud.png │ │ ├── ios7-cloudy-night-outline.png │ │ ├── ios7-cloudy-night.png │ │ ├── ios7-cloudy-outline.png │ │ ├── ios7-cloudy.png │ │ ├── ios7-cog-outline.png │ │ ├── ios7-cog.png │ │ ├── ios7-compose-outline.png │ │ ├── ios7-compose.png │ │ ├── ios7-contact-outline.png │ │ ├── ios7-contact.png │ │ ├── ios7-copy-outline.png │ │ ├── ios7-copy.png │ │ ├── ios7-download-outline.png │ │ ├── ios7-download.png │ │ ├── ios7-drag.png │ │ ├── ios7-email-outline.png │ │ ├── ios7-email.png │ │ ├── ios7-expand.png │ │ ├── ios7-eye-outline.png │ │ ├── ios7-eye.png │ │ ├── ios7-fastforward-outline.png │ │ ├── ios7-fastforward.png │ │ ├── ios7-filing-outline.png │ │ ├── ios7-filing.png │ │ ├── ios7-film-outline.png │ │ ├── ios7-film.png │ │ ├── ios7-flag-outline.png │ │ ├── ios7-flag.png │ │ ├── ios7-folder-outline.png │ │ ├── ios7-folder.png │ │ ├── ios7-football-outline.png │ │ ├── ios7-football.png │ │ ├── ios7-gear-outline.png │ │ ├── ios7-gear.png │ │ ├── ios7-glasses-outline.png │ │ ├── ios7-glasses.png │ │ ├── ios7-heart-outline.png │ │ ├── ios7-heart.png │ │ ├── ios7-help-empty.png │ │ ├── ios7-help-outline.png │ │ ├── ios7-help.png │ │ ├── ios7-home-outline.png │ │ ├── ios7-home.png │ │ ├── ios7-infinite-outline.png │ │ ├── ios7-infinite.png │ │ ├── ios7-information-empty.png │ │ ├── ios7-information-outline.png │ │ ├── ios7-information.png │ │ ├── ios7-ionic-outline.png │ │ ├── ios7-keypad-outline.png │ │ ├── ios7-keypad.png │ │ ├── ios7-lightbulb-outline.png │ │ ├── ios7-lightbulb.png │ │ ├── ios7-location-outline.png │ │ ├── ios7-location.png │ │ ├── ios7-locked-outline.png │ │ ├── ios7-locked.png │ │ ├── ios7-loop-strong.png │ │ ├── ios7-loop.png │ │ ├── ios7-medkit-outline.png │ │ ├── ios7-medkit.png │ │ ├── ios7-mic-off.png │ │ ├── ios7-mic-outline.png │ │ ├── ios7-mic.png │ │ ├── ios7-minus-empty.png │ │ ├── ios7-minus-outline.png │ │ ├── ios7-minus.png │ │ ├── ios7-monitor-outline.png │ │ ├── ios7-monitor.png │ │ ├── ios7-moon-outline.png │ │ ├── ios7-moon.png │ │ ├── ios7-more-outline.png │ │ ├── ios7-more.png │ │ ├── ios7-musical-note.png │ │ ├── ios7-musical-notes.png │ │ ├── ios7-navigate-outline.png │ │ ├── ios7-navigate.png │ │ ├── ios7-paper-outline.png │ │ ├── ios7-paper.png │ │ ├── ios7-paperplane-outline.png │ │ ├── ios7-paperplane.png │ │ ├── ios7-partlysunny-outline.png │ │ ├── ios7-partlysunny.png │ │ ├── ios7-pause-outline.png │ │ ├── ios7-pause.png │ │ ├── ios7-paw-outline.png │ │ ├── ios7-paw.png │ │ ├── ios7-people-outline.png │ │ ├── ios7-people.png │ │ ├── ios7-person-outline.png │ │ ├── ios7-person.png │ │ ├── ios7-personadd-outline.png │ │ ├── ios7-personadd.png │ │ ├── ios7-photos-outline.png │ │ ├── ios7-photos.png │ │ ├── ios7-pie-outline.png │ │ ├── ios7-pie.png │ │ ├── ios7-play-outline.png │ │ ├── ios7-play.png │ │ ├── ios7-plus-empty.png │ │ ├── ios7-plus-outline.png │ │ ├── ios7-plus.png │ │ ├── ios7-pricetag-outline.png │ │ ├── ios7-pricetag.png │ │ ├── ios7-pricetags-outline.png │ │ ├── ios7-pricetags.png │ │ ├── ios7-printer-outline.png │ │ ├── ios7-printer.png │ │ ├── ios7-pulse-strong.png │ │ ├── ios7-pulse.png │ │ ├── ios7-rainy-outline.png │ │ ├── ios7-rainy.png │ │ ├── ios7-recording-outline.png │ │ ├── ios7-recording.png │ │ ├── ios7-redo-outline.png │ │ ├── ios7-redo.png │ │ ├── ios7-refresh-empty.png │ │ ├── ios7-refresh-outline.png │ │ ├── ios7-refresh.png │ │ ├── ios7-reload.png │ │ ├── ios7-reverse-camera-outline.png │ │ ├── ios7-reverse-camera.png │ │ ├── ios7-rewind-outline.png │ │ ├── ios7-rewind.png │ │ ├── ios7-search-strong.png │ │ ├── ios7-search.png │ │ ├── ios7-settings-strong.png │ │ ├── ios7-settings.png │ │ ├── ios7-shrink.png │ │ ├── ios7-skipbackward-outline.png │ │ ├── ios7-skipbackward.png │ │ ├── ios7-skipforward-outline.png │ │ ├── ios7-skipforward.png │ │ ├── ios7-snowy.png │ │ ├── ios7-speedometer-outline.png │ │ ├── ios7-speedometer.png │ │ ├── ios7-star-half.png │ │ ├── ios7-star-outline.png │ │ ├── ios7-star.png │ │ ├── ios7-stopwatch-outline.png │ │ ├── ios7-stopwatch.png │ │ ├── ios7-sunny-outline.png │ │ ├── ios7-sunny.png │ │ ├── ios7-telephone-outline.png │ │ ├── ios7-telephone.png │ │ ├── ios7-tennisball-outline.png │ │ ├── ios7-tennisball.png │ │ ├── ios7-thunderstorm-outline.png │ │ ├── ios7-thunderstorm.png │ │ ├── ios7-time-outline.png │ │ ├── ios7-time.png │ │ ├── ios7-timer-outline.png │ │ ├── ios7-timer.png │ │ ├── ios7-toggle-outline.png │ │ ├── ios7-toggle.png │ │ ├── ios7-trash-outline.png │ │ ├── ios7-trash.png │ │ ├── ios7-undo-outline.png │ │ ├── ios7-undo.png │ │ ├── ios7-unlocked-outline.png │ │ ├── ios7-unlocked.png │ │ ├── ios7-upload-outline.png │ │ ├── ios7-upload.png │ │ ├── ios7-videocam-outline.png │ │ ├── ios7-videocam.png │ │ ├── ios7-volume-high.png │ │ ├── ios7-volume-low.png │ │ ├── ios7-wineglass-outline.png │ │ ├── ios7-wineglass.png │ │ ├── ios7-world-outline.png │ │ ├── ios7-world.png │ │ ├── ipad.png │ │ ├── iphone.png │ │ ├── ipod.png │ │ ├── jet.png │ │ ├── key.png │ │ ├── knife.png │ │ ├── laptop.png │ │ ├── leaf.png │ │ ├── levels.png │ │ ├── lightbulb.png │ │ ├── link.png │ │ ├── load-a.png │ │ ├── load-b.png │ │ ├── load-c.png │ │ ├── load-d.png │ │ ├── location.png │ │ ├── locked.png │ │ ├── log-in.png │ │ ├── log-out.png │ │ ├── loop.png │ │ ├── magnet.png │ │ ├── male.png │ │ ├── man.png │ │ ├── map.png │ │ ├── medkit.png │ │ ├── merge.png │ │ ├── mic-a.png │ │ ├── mic-b.png │ │ ├── mic-c.png │ │ ├── minus-circled.png │ │ ├── minus-round.png │ │ ├── minus.png │ │ ├── model-s.png │ │ ├── monitor.png │ │ ├── more.png │ │ ├── mouse.png │ │ ├── music-note.png │ │ ├── navicon-round.png │ │ ├── navicon.png │ │ ├── navigate.png │ │ ├── network.png │ │ ├── no-smoking.png │ │ ├── nuclear.png │ │ ├── outlet.png │ │ ├── paper-airplane.png │ │ ├── paperclip.png │ │ ├── pause.png │ │ ├── person-add.png │ │ ├── person-stalker.png │ │ ├── person.png │ │ ├── pie-graph.png │ │ ├── pin.png │ │ ├── pinpoint.png │ │ ├── pizza.png │ │ ├── plane.png │ │ ├── planet.png │ │ ├── play.png │ │ ├── playstation.png │ │ ├── plus-circled.png │ │ ├── plus-round.png │ │ ├── plus.png │ │ ├── podium.png │ │ ├── pound.png │ │ ├── power.png │ │ ├── pricetag.png │ │ ├── pricetags.png │ │ ├── printer.png │ │ ├── pull-request.png │ │ ├── qr-scanner.png │ │ ├── quote.png │ │ ├── radio-waves.png │ │ ├── record.png │ │ ├── refresh.png │ │ ├── reply-all.png │ │ ├── reply.png │ │ ├── ribbon-a.png │ │ ├── ribbon-b.png │ │ ├── sad.png │ │ ├── scissors.png │ │ ├── search.png │ │ ├── settings.png │ │ ├── share.png │ │ ├── shuffle.png │ │ ├── skip-backward.png │ │ ├── skip-forward.png │ │ ├── social-android-outline.png │ │ ├── social-android.png │ │ ├── social-apple-outline.png │ │ ├── social-apple.png │ │ ├── social-bitcoin-outline.png │ │ ├── social-bitcoin.png │ │ ├── social-buffer-outline.png │ │ ├── social-buffer.png │ │ ├── social-designernews-outline.png │ │ ├── social-designernews.png │ │ ├── social-dribbble-outline.png │ │ ├── social-dribbble.png │ │ ├── social-dropbox-outline.png │ │ ├── social-dropbox.png │ │ ├── social-facebook-outline.png │ │ ├── social-facebook.png │ │ ├── social-foursquare-outline.png │ │ ├── social-foursquare.png │ │ ├── social-freebsd-devil.png │ │ ├── social-github-outline.png │ │ ├── social-github.png │ │ ├── social-google-outline.png │ │ ├── social-google.png │ │ ├── social-googleplus-outline.png │ │ ├── social-googleplus.png │ │ ├── social-hackernews-outline.png │ │ ├── social-hackernews.png │ │ ├── social-instagram-outline.png │ │ ├── social-instagram.png │ │ ├── social-linkedin-outline.png │ │ ├── social-linkedin.png │ │ ├── social-pinterest-outline.png │ │ ├── social-pinterest.png │ │ ├── social-reddit-outline.png │ │ ├── social-reddit.png │ │ ├── social-rss-outline.png │ │ ├── social-rss.png │ │ ├── social-skype-outline.png │ │ ├── social-skype.png │ │ ├── social-tumblr-outline.png │ │ ├── social-tumblr.png │ │ ├── social-tux.png │ │ ├── social-twitter-outline.png │ │ ├── social-twitter.png │ │ ├── social-usd-outline.png │ │ ├── social-usd.png │ │ ├── social-vimeo-outline.png │ │ ├── social-vimeo.png │ │ ├── social-windows-outline.png │ │ ├── social-windows.png │ │ ├── social-wordpress-outline.png │ │ ├── social-wordpress.png │ │ ├── social-yahoo-outline.png │ │ ├── social-yahoo.png │ │ ├── social-youtube-outline.png │ │ ├── social-youtube.png │ │ ├── speakerphone.png │ │ ├── speedometer.png │ │ ├── spoon.png │ │ ├── star.png │ │ ├── stats-bars.png │ │ ├── steam.png │ │ ├── stop.png │ │ ├── thermometer.png │ │ ├── thumbsdown.png │ │ ├── thumbsup.png │ │ ├── toggle-filled.png │ │ ├── toggle.png │ │ ├── trash-a.png │ │ ├── trash-b.png │ │ ├── trophy.png │ │ ├── umbrella.png │ │ ├── university.png │ │ ├── unlocked.png │ │ ├── upload.png │ │ ├── usb.png │ │ ├── videocamera.png │ │ ├── volume-high.png │ │ ├── volume-low.png │ │ ├── volume-medium.png │ │ ├── volume-mute.png │ │ ├── wand.png │ │ ├── waterdrop.png │ │ ├── wifi.png │ │ ├── wineglass.png │ │ ├── woman.png │ │ ├── wrench.png │ │ └── xbox.png ├── sass │ ├── ie8.scss │ ├── ie9.scss │ ├── libs │ │ ├── _functions.scss │ │ ├── _mixins.scss │ │ ├── _skel.scss │ │ └── _vars.scss │ └── main.scss ├── src │ ├── alert-circled.svg │ ├── alert.svg │ ├── android-add-circle.svg │ ├── android-add.svg │ ├── android-alarm-clock.svg │ ├── android-alert.svg │ ├── android-apps.svg │ ├── android-archive.svg │ ├── android-arrow-back.svg │ ├── android-arrow-down.svg │ ├── android-arrow-dropdown-circle.svg │ ├── android-arrow-dropdown.svg │ ├── android-arrow-dropleft-circle.svg │ ├── android-arrow-dropleft.svg │ ├── android-arrow-dropright-circle.svg │ ├── android-arrow-dropright.svg │ ├── android-arrow-dropup-circle.svg │ ├── android-arrow-dropup.svg │ ├── android-arrow-forward.svg │ ├── android-arrow-up.svg │ ├── android-attach.svg │ ├── android-bar.svg │ ├── android-bicycle.svg │ ├── android-boat.svg │ ├── android-bookmark.svg │ ├── android-bulb.svg │ ├── android-bus.svg │ ├── android-calendar.svg │ ├── android-call.svg │ ├── android-camera.svg │ ├── android-cancel.svg │ ├── android-car.svg │ ├── android-cart.svg │ ├── android-chat.svg │ ├── android-checkbox-blank.svg │ ├── android-checkbox-outline-blank.svg │ ├── android-checkbox-outline.svg │ ├── android-checkbox.svg │ ├── android-checkmark-circle.svg │ ├── android-clipboard.svg │ ├── android-close.svg │ ├── android-cloud-circle.svg │ ├── android-cloud-done.svg │ ├── android-cloud-outline.svg │ ├── android-cloud.svg │ ├── android-color-palette.svg │ ├── android-compass.svg │ ├── android-contact.svg │ ├── android-contacts.svg │ ├── android-contract.svg │ ├── android-create.svg │ ├── android-delete.svg │ ├── android-desktop.svg │ ├── android-document.svg │ ├── android-done-all.svg │ ├── android-done.svg │ ├── android-download.svg │ ├── android-drafts.svg │ ├── android-exit.svg │ ├── android-expand.svg │ ├── android-favorite-outline.svg │ ├── android-favorite.svg │ ├── android-film.svg │ ├── android-folder-open.svg │ ├── android-folder.svg │ ├── android-funnel.svg │ ├── android-globe.svg │ ├── android-hand.svg │ ├── android-hangout.svg │ ├── android-happy.svg │ ├── android-home.svg │ ├── android-image.svg │ ├── android-laptop.svg │ ├── android-list.svg │ ├── android-locate.svg │ ├── android-lock.svg │ ├── android-mail.svg │ ├── android-map.svg │ ├── android-menu.svg │ ├── android-microphone-off.svg │ ├── android-microphone.svg │ ├── android-more-horizontal.svg │ ├── android-more-vertical.svg │ ├── android-navigate.svg │ ├── android-notifications-none.svg │ ├── android-notifications-off.svg │ ├── android-notifications.svg │ ├── android-open.svg │ ├── android-options.svg │ ├── android-people.svg │ ├── android-person-add.svg │ ├── android-person.svg │ ├── android-phone-landscape.svg │ ├── android-phone-portrait.svg │ ├── android-pin.svg │ ├── android-plane.svg │ ├── android-playstore.svg │ ├── android-print.svg │ ├── android-radio-button-off.svg │ ├── android-radio-button-on.svg │ ├── android-refresh.svg │ ├── android-remove-circle.svg │ ├── android-remove.svg │ ├── android-restaurant.svg │ ├── android-sad.svg │ ├── android-search.svg │ ├── android-send.svg │ ├── android-settings.svg │ ├── android-share-alt.svg │ ├── android-share.svg │ ├── android-star-half.svg │ ├── android-star-outline.svg │ ├── android-star.svg │ ├── android-stopwatch.svg │ ├── android-subway.svg │ ├── android-sunny.svg │ ├── android-sync.svg │ ├── android-textsms.svg │ ├── android-time.svg │ ├── android-train.svg │ ├── android-unlock.svg │ ├── android-upload.svg │ ├── android-volume-down.svg │ ├── android-volume-mute.svg │ ├── android-volume-off.svg │ ├── android-volume-up.svg │ ├── android-walk.svg │ ├── android-warning.svg │ ├── android-watch.svg │ ├── android-wifi.svg │ ├── aperture.svg │ ├── archive.svg │ ├── arrow-down-a.svg │ ├── arrow-down-b.svg │ ├── arrow-down-c.svg │ ├── arrow-expand.svg │ ├── arrow-graph-down-left.svg │ ├── arrow-graph-down-right.svg │ ├── arrow-graph-up-left.svg │ ├── arrow-graph-up-right.svg │ ├── arrow-left-a.svg │ ├── arrow-left-b.svg │ ├── arrow-left-c.svg │ ├── arrow-move.svg │ ├── arrow-resize.svg │ ├── arrow-return-left.svg │ ├── arrow-return-right.svg │ ├── arrow-right-a.svg │ ├── arrow-right-b.svg │ ├── arrow-right-c.svg │ ├── arrow-shrink.svg │ ├── arrow-swap.svg │ ├── arrow-up-a.svg │ ├── arrow-up-b.svg │ ├── arrow-up-c.svg │ ├── asterisk.svg │ ├── at.svg │ ├── backspace-outline.svg │ ├── backspace.svg │ ├── bag.svg │ ├── battery-charging.svg │ ├── battery-empty.svg │ ├── battery-full.svg │ ├── battery-half.svg │ ├── battery-low.svg │ ├── beaker.svg │ ├── beer.svg │ ├── bluetooth.svg │ ├── bonfire.svg │ ├── bookmark.svg │ ├── bowtie.svg │ ├── briefcase.svg │ ├── bug.svg │ ├── calculator.svg │ ├── calendar.svg │ ├── camera.svg │ ├── card.svg │ ├── cash.svg │ ├── chatbox-working.svg │ ├── chatbox.svg │ ├── chatboxes.svg │ ├── chatbubble-working.svg │ ├── chatbubble.svg │ ├── chatbubbles.svg │ ├── checkmark-circled.svg │ ├── checkmark-round.svg │ ├── checkmark.svg │ ├── chevron-down.svg │ ├── chevron-left.svg │ ├── chevron-right.svg │ ├── chevron-up.svg │ ├── clipboard.svg │ ├── clock.svg │ ├── close-circled.svg │ ├── close-round.svg │ ├── close.svg │ ├── closed-captioning.svg │ ├── cloud.svg │ ├── code-download.svg │ ├── code-working.svg │ ├── code.svg │ ├── coffee.svg │ ├── compass.svg │ ├── compose.svg │ ├── connection-bars.svg │ ├── contrast.svg │ ├── crop.svg │ ├── cube.svg │ ├── disc.svg │ ├── document-text.svg │ ├── document.svg │ ├── drag.svg │ ├── earth.svg │ ├── easel.svg │ ├── edit.svg │ ├── egg.svg │ ├── eject.svg │ ├── email-unread.svg │ ├── email.svg │ ├── erlenmeyer-flask-bubbles.svg │ ├── erlenmeyer-flask.svg │ ├── eye-disabled.svg │ ├── eye.svg │ ├── female.svg │ ├── filing.svg │ ├── film-marker.svg │ ├── fireball.svg │ ├── flag.svg │ ├── flame.svg │ ├── flash-off.svg │ ├── flash.svg │ ├── folder.svg │ ├── fork-repo.svg │ ├── fork.svg │ ├── forward.svg │ ├── funnel.svg │ ├── gear-a.svg │ ├── gear-b.svg │ ├── grid.svg │ ├── hammer.svg │ ├── happy-outline.svg │ ├── happy.svg │ ├── headphone.svg │ ├── heart-broken.svg │ ├── heart.svg │ ├── help-buoy.svg │ ├── help-circled.svg │ ├── help.svg │ ├── home.svg │ ├── icecream.svg │ ├── image.svg │ ├── images.svg │ ├── information-circled.svg │ ├── information.svg │ ├── ionic.svg │ ├── ios-alarm-outline.svg │ ├── ios-alarm.svg │ ├── ios-albums-outline.svg │ ├── ios-albums.svg │ ├── ios-americanfootball-outline.svg │ ├── ios-americanfootball.svg │ ├── ios-analytics-outline.svg │ ├── ios-analytics.svg │ ├── ios-arrow-back.svg │ ├── ios-arrow-down.svg │ ├── ios-arrow-forward.svg │ ├── ios-arrow-left.svg │ ├── ios-arrow-right.svg │ ├── ios-arrow-thin-down.svg │ ├── ios-arrow-thin-left.svg │ ├── ios-arrow-thin-right.svg │ ├── ios-arrow-thin-up.svg │ ├── ios-arrow-up.svg │ ├── ios-at-outline.svg │ ├── ios-at.svg │ ├── ios-barcode-outline.svg │ ├── ios-barcode.svg │ ├── ios-baseball-outline.svg │ ├── ios-baseball.svg │ ├── ios-basketball-outline.svg │ ├── ios-basketball.svg │ ├── ios-bell-outline.svg │ ├── ios-bell.svg │ ├── ios-body-outline.svg │ ├── ios-body.svg │ ├── ios-bolt-outline.svg │ ├── ios-bolt.svg │ ├── ios-book-outline.svg │ ├── ios-book.svg │ ├── ios-bookmarks-outline.svg │ ├── ios-bookmarks.svg │ ├── ios-box-outline.svg │ ├── ios-box.svg │ ├── ios-briefcase-outline.svg │ ├── ios-briefcase.svg │ ├── ios-browsers-outline.svg │ ├── ios-browsers.svg │ ├── ios-calculator-outline.svg │ ├── ios-calculator.svg │ ├── ios-calendar-outline.svg │ ├── ios-calendar.svg │ ├── ios-camera-outline.svg │ ├── ios-camera.svg │ ├── ios-cart-outline.svg │ ├── ios-cart.svg │ ├── ios-chatboxes-outline.svg │ ├── ios-chatboxes.svg │ ├── ios-chatbubble-outline.svg │ ├── ios-chatbubble.svg │ ├── ios-checkmark-empty.svg │ ├── ios-checkmark-outline.svg │ ├── ios-checkmark.svg │ ├── ios-circle-filled.svg │ ├── ios-circle-outline.svg │ ├── ios-clock-outline.svg │ ├── ios-clock.svg │ ├── ios-close-empty.svg │ ├── ios-close-outline.svg │ ├── ios-close.svg │ ├── ios-cloud-download-outline.svg │ ├── ios-cloud-download.svg │ ├── ios-cloud-outline.svg │ ├── ios-cloud-upload-outline.svg │ ├── ios-cloud-upload.svg │ ├── ios-cloud.svg │ ├── ios-cloudy-night-outline.svg │ ├── ios-cloudy-night.svg │ ├── ios-cloudy-outline.svg │ ├── ios-cloudy.svg │ ├── ios-cog-outline.svg │ ├── ios-cog.svg │ ├── ios-color-filter-outline.svg │ ├── ios-color-filter.svg │ ├── ios-color-wand-outline.svg │ ├── ios-color-wand.svg │ ├── ios-compose-outline.svg │ ├── ios-compose.svg │ ├── ios-contact-outline.svg │ ├── ios-contact.svg │ ├── ios-copy-outline.svg │ ├── ios-copy.svg │ ├── ios-crop-strong.svg │ ├── ios-crop.svg │ ├── ios-download-outline.svg │ ├── ios-download.svg │ ├── ios-drag.svg │ ├── ios-email-outline.svg │ ├── ios-email.svg │ ├── ios-eye-outline.svg │ ├── ios-eye.svg │ ├── ios-fastforward-outline.svg │ ├── ios-fastforward.svg │ ├── ios-filing-outline.svg │ ├── ios-filing.svg │ ├── ios-film-outline.svg │ ├── ios-film.svg │ ├── ios-flag-outline.svg │ ├── ios-flag.svg │ ├── ios-flame-outline.svg │ ├── ios-flame.svg │ ├── ios-flask-outline.svg │ ├── ios-flask.svg │ ├── ios-flower-outline.svg │ ├── ios-flower.svg │ ├── ios-folder-outline.svg │ ├── ios-folder.svg │ ├── ios-football-outline.svg │ ├── ios-football.svg │ ├── ios-game-controller-a-outline.svg │ ├── ios-game-controller-a.svg │ ├── ios-game-controller-b-outline.svg │ ├── ios-game-controller-b.svg │ ├── ios-gear-outline.svg │ ├── ios-gear.svg │ ├── ios-glasses-outline.svg │ ├── ios-glasses.svg │ ├── ios-grid-view-outline.svg │ ├── ios-grid-view.svg │ ├── ios-heart-outline.svg │ ├── ios-heart.svg │ ├── ios-help-empty.svg │ ├── ios-help-outline.svg │ ├── ios-help.svg │ ├── ios-home-outline.svg │ ├── ios-home.svg │ ├── ios-infinite-outline.svg │ ├── ios-infinite.svg │ ├── ios-information-empty.svg │ ├── ios-information-outline.svg │ ├── ios-information.svg │ ├── ios-ionic-outline.svg │ ├── ios-keypad-outline.svg │ ├── ios-keypad.svg │ ├── ios-lightbulb-outline.svg │ ├── ios-lightbulb.svg │ ├── ios-list-outline.svg │ ├── ios-list.svg │ ├── ios-location-outline.svg │ ├── ios-location.svg │ ├── ios-locked-outline.svg │ ├── ios-locked.svg │ ├── ios-loop-strong.svg │ ├── ios-loop.svg │ ├── ios-medical-outline.svg │ ├── ios-medical.svg │ ├── ios-medkit-outline.svg │ ├── ios-medkit.svg │ ├── ios-mic-off.svg │ ├── ios-mic-outline.svg │ ├── ios-mic.svg │ ├── ios-minus-empty.svg │ ├── ios-minus-outline.svg │ ├── ios-minus.svg │ ├── ios-monitor-outline.svg │ ├── ios-monitor.svg │ ├── ios-moon-outline.svg │ ├── ios-moon.svg │ ├── ios-more-outline.svg │ ├── ios-more.svg │ ├── ios-musical-note.svg │ ├── ios-musical-notes.svg │ ├── ios-navigate-outline.svg │ ├── ios-navigate.svg │ ├── ios-nutrition-outline.svg │ ├── ios-nutrition.svg │ ├── ios-paper-outline.svg │ ├── ios-paper.svg │ ├── ios-paperplane-outline.svg │ ├── ios-paperplane.svg │ ├── ios-partlysunny-outline.svg │ ├── ios-partlysunny.svg │ ├── ios-pause-outline.svg │ ├── ios-pause.svg │ ├── ios-paw-outline.svg │ ├── ios-paw.svg │ ├── ios-people-outline.svg │ ├── ios-people.svg │ ├── ios-person-outline.svg │ ├── ios-person.svg │ ├── ios-personadd-outline.svg │ ├── ios-personadd.svg │ ├── ios-photos-outline.svg │ ├── ios-photos.svg │ ├── ios-pie-outline.svg │ ├── ios-pie.svg │ ├── ios-pint-outline.svg │ ├── ios-pint.svg │ ├── ios-play-outline.svg │ ├── ios-play.svg │ ├── ios-plus-empty.svg │ ├── ios-plus-outline.svg │ ├── ios-plus.svg │ ├── ios-pricetag-outline.svg │ ├── ios-pricetag.svg │ ├── ios-pricetags-outline.svg │ ├── ios-pricetags.svg │ ├── ios-printer-outline.svg │ ├── ios-printer.svg │ ├── ios-pulse-strong.svg │ ├── ios-pulse.svg │ ├── ios-rainy-outline.svg │ ├── ios-rainy.svg │ ├── ios-recording-outline.svg │ ├── ios-recording.svg │ ├── ios-redo-outline.svg │ ├── ios-redo.svg │ ├── ios-refresh-empty.svg │ ├── ios-refresh-outline.svg │ ├── ios-refresh.svg │ ├── ios-reload.svg │ ├── ios-reverse-camera-outline.svg │ ├── ios-reverse-camera.svg │ ├── ios-rewind-outline.svg │ ├── ios-rewind.svg │ ├── ios-rose-outline.svg │ ├── ios-rose.svg │ ├── ios-search-strong.svg │ ├── ios-search.svg │ ├── ios-settings-strong.svg │ ├── ios-settings.svg │ ├── ios-shuffle-strong.svg │ ├── ios-shuffle.svg │ ├── ios-skipbackward-outline.svg │ ├── ios-skipbackward.svg │ ├── ios-skipforward-outline.svg │ ├── ios-skipforward.svg │ ├── ios-snowy.svg │ ├── ios-speedometer-outline.svg │ ├── ios-speedometer.svg │ ├── ios-star-half.svg │ ├── ios-star-outline.svg │ ├── ios-star.svg │ ├── ios-stopwatch-outline.svg │ ├── ios-stopwatch.svg │ ├── ios-sunny-outline.svg │ ├── ios-sunny.svg │ ├── ios-telephone-outline.svg │ ├── ios-telephone.svg │ ├── ios-tennisball-outline.svg │ ├── ios-tennisball.svg │ ├── ios-thunderstorm-outline.svg │ ├── ios-thunderstorm.svg │ ├── ios-time-outline.svg │ ├── ios-time.svg │ ├── ios-timer-outline.svg │ ├── ios-timer.svg │ ├── ios-toggle-outline.svg │ ├── ios-toggle.svg │ ├── ios-trash-outline.svg │ ├── ios-trash.svg │ ├── ios-undo-outline.svg │ ├── ios-undo.svg │ ├── ios-unlocked-outline.svg │ ├── ios-unlocked.svg │ ├── ios-upload-outline.svg │ ├── ios-upload.svg │ ├── ios-videocam-outline.svg │ ├── ios-videocam.svg │ ├── ios-volume-high.svg │ ├── ios-volume-low.svg │ ├── ios-wineglass-outline.svg │ ├── ios-wineglass.svg │ ├── ios-world-outline.svg │ ├── ios-world.svg │ ├── ipad.svg │ ├── iphone.svg │ ├── ipod.svg │ ├── jet.svg │ ├── key.svg │ ├── knife.svg │ ├── laptop.svg │ ├── leaf.svg │ ├── levels.svg │ ├── lightbulb.svg │ ├── link.svg │ ├── load-a.svg │ ├── load-b.svg │ ├── load-c.svg │ ├── load-d.svg │ ├── location.svg │ ├── lock-combination.svg │ ├── locked.svg │ ├── log-in.svg │ ├── log-out.svg │ ├── loop.svg │ ├── magnet.svg │ ├── male.svg │ ├── man.svg │ ├── map.svg │ ├── medkit.svg │ ├── merge.svg │ ├── mic-a.svg │ ├── mic-b.svg │ ├── mic-c.svg │ ├── minus-circled.svg │ ├── minus-round.svg │ ├── minus.svg │ ├── model-s.svg │ ├── monitor.svg │ ├── more.svg │ ├── mouse.svg │ ├── music-note.svg │ ├── navicon-round.svg │ ├── navicon.svg │ ├── navigate.svg │ ├── network.svg │ ├── no-smoking.svg │ ├── nuclear.svg │ ├── outlet.svg │ ├── paintbrush.svg │ ├── paintbucket.svg │ ├── paper-airplane.svg │ ├── paperclip.svg │ ├── pause.svg │ ├── person-add.svg │ ├── person-stalker.svg │ ├── person.svg │ ├── pie-graph.svg │ ├── pin.svg │ ├── pinpoint.svg │ ├── pizza.svg │ ├── plane.svg │ ├── planet.svg │ ├── play.svg │ ├── playstation.svg │ ├── plus-circled.svg │ ├── plus-round.svg │ ├── plus.svg │ ├── podium.svg │ ├── pound.svg │ ├── power.svg │ ├── pricetag.svg │ ├── pricetags.svg │ ├── printer.svg │ ├── pull-request.svg │ ├── qr-scanner.svg │ ├── quote.svg │ ├── radio-waves.svg │ ├── record.svg │ ├── refresh.svg │ ├── reply-all.svg │ ├── reply.svg │ ├── ribbon-a.svg │ ├── ribbon-b.svg │ ├── sad-outline.svg │ ├── sad.svg │ ├── scissors.svg │ ├── search.svg │ ├── settings.svg │ ├── share.svg │ ├── shuffle.svg │ ├── skip-backward.svg │ ├── skip-forward.svg │ ├── social-android-outline.svg │ ├── social-android.svg │ ├── social-angular-outline.svg │ ├── social-angular.svg │ ├── social-apple-outline.svg │ ├── social-apple.svg │ ├── social-bitcoin-outline.svg │ ├── social-bitcoin.svg │ ├── social-buffer-outline.svg │ ├── social-buffer.svg │ ├── social-chrome-outline.svg │ ├── social-chrome.svg │ ├── social-codepen-outline.svg │ ├── social-codepen.svg │ ├── social-css3-outline.svg │ ├── social-css3.svg │ ├── social-designernews-outline.svg │ ├── social-designernews.svg │ ├── social-dribbble-outline.svg │ ├── social-dribbble.svg │ ├── social-dropbox-outline.svg │ ├── social-dropbox.svg │ ├── social-euro-outline.svg │ ├── social-euro.svg │ ├── social-facebook-outline.svg │ ├── social-facebook.svg │ ├── social-foursquare-outline.svg │ ├── social-foursquare.svg │ ├── social-freebsd-devil.svg │ ├── social-github-outline.svg │ ├── social-github.svg │ ├── social-google-outline.svg │ ├── social-google.svg │ ├── social-googleplus-outline.svg │ ├── social-googleplus.svg │ ├── social-hackernews-outline.svg │ ├── social-hackernews.svg │ ├── social-html5-outline.svg │ ├── social-html5.svg │ ├── social-instagram-outline.svg │ ├── social-instagram.svg │ ├── social-javascript-outline.svg │ ├── social-javascript.svg │ ├── social-linkedin-outline.svg │ ├── social-linkedin.svg │ ├── social-markdown.svg │ ├── social-nodejs.svg │ ├── social-octocat.svg │ ├── social-pinterest-outline.svg │ ├── social-pinterest.svg │ ├── social-python.svg │ ├── social-reddit-outline.svg │ ├── social-reddit.svg │ ├── social-rss-outline.svg │ ├── social-rss.svg │ ├── social-sass.svg │ ├── social-skype-outline.svg │ ├── social-skype.svg │ ├── social-snapchat-outline.svg │ ├── social-snapchat.svg │ ├── social-tumblr-outline.svg │ ├── social-tumblr.svg │ ├── social-tux.svg │ ├── social-twitch-outline.svg │ ├── social-twitch.svg │ ├── social-twitter-outline.svg │ ├── social-twitter.svg │ ├── social-usd-outline.svg │ ├── social-usd.svg │ ├── social-vimeo-outline.svg │ ├── social-vimeo.svg │ ├── social-whatsapp-outline.svg │ ├── social-whatsapp.svg │ ├── social-windows-outline.svg │ ├── social-windows.svg │ ├── social-wordpress-outline.svg │ ├── social-wordpress.svg │ ├── social-yahoo-outline.svg │ ├── social-yahoo.svg │ ├── social-yen-outline.svg │ ├── social-yen.svg │ ├── social-youtube-outline.svg │ ├── social-youtube.svg │ ├── soup-can-outline.svg │ ├── soup-can.svg │ ├── speakerphone.svg │ ├── speedometer.svg │ ├── spoon.svg │ ├── star.svg │ ├── stats-bars.svg │ ├── steam.svg │ ├── stop.svg │ ├── thermometer.svg │ ├── thumbsdown.svg │ ├── thumbsup.svg │ ├── toggle-filled.svg │ ├── toggle.svg │ ├── transgender.svg │ ├── trash-a.svg │ ├── trash-b.svg │ ├── trophy.svg │ ├── tshirt-outline.svg │ ├── tshirt.svg │ ├── umbrella.svg │ ├── university.svg │ ├── unlocked.svg │ ├── upload.svg │ ├── usb.svg │ ├── videocamera.svg │ ├── volume-high.svg │ ├── volume-low.svg │ ├── volume-medium.svg │ ├── volume-mute.svg │ ├── wand.svg │ ├── waterdrop.svg │ ├── wifi.svg │ ├── wineglass.svg │ ├── woman.svg │ ├── wrench.svg │ └── xbox.svg ├── static │ ├── js │ │ ├── sb-admin-charts.js │ │ ├── sb-admin-charts.min.js │ │ ├── sb-admin-datatables.js │ │ ├── sb-admin-datatables.min.js │ │ ├── sb-admin.js │ │ └── sb-admin.min.js │ ├── plant_st.png │ ├── plants │ │ ├── abs.jpg │ │ ├── builder │ │ │ ├── build_data.json │ │ │ ├── cheatsheet │ │ │ │ ├── icon-row.html │ │ │ │ └── template.html │ │ │ ├── generate.py │ │ │ ├── manifest.json │ │ │ └── scripts │ │ │ │ ├── eotlitetool.py │ │ │ │ ├── generate_font.py │ │ │ │ └── sfnt2woff │ │ ├── css │ │ │ ├── font-awesome.min.css │ │ │ ├── ie8.css │ │ │ ├── ie9.css │ │ │ ├── images │ │ │ │ ├── ie │ │ │ │ │ └── grad0-15.svg │ │ │ │ └── overlay.png │ │ │ ├── ionicons.min.css │ │ │ ├── main.css │ │ │ ├── materialize.css │ │ │ └── materialize.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── ionicons.eot │ │ │ ├── ionicons.svg │ │ │ ├── ionicons.ttf │ │ │ ├── ionicons.woff │ │ │ └── roboto │ │ │ │ ├── Roboto-Bold.eot │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-Bold.woff │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ ├── Roboto-Light.eot │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── Roboto-Light.woff │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ ├── Roboto-Medium.eot │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ ├── Roboto-Regular.eot │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ ├── Roboto-Regular.woff2 │ │ │ │ ├── Roboto-Thin.eot │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ ├── Roboto-Thin.woff │ │ │ │ └── Roboto-Thin.woff2 │ │ ├── images │ │ │ ├── avatar.jpg │ │ │ ├── banner1.jpg │ │ │ ├── man.svg │ │ │ ├── pic02.jpg │ │ │ ├── pic03.jpg │ │ │ ├── pic04.jpg │ │ │ ├── pic05.jpg │ │ │ ├── pic06.jpg │ │ │ ├── pic07.jpg │ │ │ └── pic08.jpg │ │ ├── ionicons-2.0.1 │ │ │ └── ionicons-2.0.1 │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── bower.json │ │ │ │ ├── builder │ │ │ │ ├── build_data.json │ │ │ │ ├── cheatsheet │ │ │ │ │ ├── icon-row.html │ │ │ │ │ └── template.html │ │ │ │ ├── generate.py │ │ │ │ ├── manifest.json │ │ │ │ └── scripts │ │ │ │ │ ├── eotlitetool.py │ │ │ │ │ ├── generate_font.py │ │ │ │ │ └── sfnt2woff │ │ │ │ ├── cheatsheet.html │ │ │ │ ├── component.json │ │ │ │ ├── composer.json │ │ │ │ ├── css │ │ │ │ ├── ionicons.css │ │ │ │ └── ionicons.min.css │ │ │ │ ├── fonts │ │ │ │ ├── ionicons.eot │ │ │ │ ├── ionicons.svg │ │ │ │ ├── ionicons.ttf │ │ │ │ └── ionicons.woff │ │ │ │ ├── less │ │ │ │ ├── _ionicons-font.less │ │ │ │ ├── _ionicons-icons.less │ │ │ │ ├── _ionicons-variables.less │ │ │ │ └── ionicons.less │ │ │ │ ├── png │ │ │ │ └── 512 │ │ │ │ │ ├── alert-circled.png │ │ │ │ │ ├── alert.png │ │ │ │ │ ├── android-add-contact.png │ │ │ │ │ ├── android-add.png │ │ │ │ │ ├── android-alarm.png │ │ │ │ │ ├── android-archive.png │ │ │ │ │ ├── android-arrow-back.png │ │ │ │ │ ├── android-arrow-down-left.png │ │ │ │ │ ├── android-arrow-down-right.png │ │ │ │ │ ├── android-arrow-forward.png │ │ │ │ │ ├── android-arrow-up-left.png │ │ │ │ │ ├── android-arrow-up-right.png │ │ │ │ │ ├── android-battery.png │ │ │ │ │ ├── android-book.png │ │ │ │ │ ├── android-calendar.png │ │ │ │ │ ├── android-call.png │ │ │ │ │ ├── android-camera.png │ │ │ │ │ ├── android-chat.png │ │ │ │ │ ├── android-checkmark.png │ │ │ │ │ ├── android-clock.png │ │ │ │ │ ├── android-close.png │ │ │ │ │ ├── android-contact.png │ │ │ │ │ ├── android-contacts.png │ │ │ │ │ ├── android-data.png │ │ │ │ │ ├── android-developer.png │ │ │ │ │ ├── android-display.png │ │ │ │ │ ├── android-download.png │ │ │ │ │ ├── android-drawer.png │ │ │ │ │ ├── android-dropdown.png │ │ │ │ │ ├── android-earth.png │ │ │ │ │ ├── android-folder.png │ │ │ │ │ ├── android-forums.png │ │ │ │ │ ├── android-friends.png │ │ │ │ │ ├── android-hand.png │ │ │ │ │ ├── android-image.png │ │ │ │ │ ├── android-inbox.png │ │ │ │ │ ├── android-information.png │ │ │ │ │ ├── android-keypad.png │ │ │ │ │ ├── android-lightbulb.png │ │ │ │ │ ├── android-locate.png │ │ │ │ │ ├── android-location.png │ │ │ │ │ ├── android-mail.png │ │ │ │ │ ├── android-microphone.png │ │ │ │ │ ├── android-mixer.png │ │ │ │ │ ├── android-more.png │ │ │ │ │ ├── android-note.png │ │ │ │ │ ├── android-playstore.png │ │ │ │ │ ├── android-printer.png │ │ │ │ │ ├── android-promotion.png │ │ │ │ │ ├── android-reminder.png │ │ │ │ │ ├── android-remove.png │ │ │ │ │ ├── android-search.png │ │ │ │ │ ├── android-send.png │ │ │ │ │ ├── android-settings.png │ │ │ │ │ ├── android-share.png │ │ │ │ │ ├── android-social-user.png │ │ │ │ │ ├── android-social.png │ │ │ │ │ ├── android-sort.png │ │ │ │ │ ├── android-stair-drawer.png │ │ │ │ │ ├── android-star.png │ │ │ │ │ ├── android-stopwatch.png │ │ │ │ │ ├── android-storage.png │ │ │ │ │ ├── android-system-back.png │ │ │ │ │ ├── android-system-home.png │ │ │ │ │ ├── android-system-windows.png │ │ │ │ │ ├── android-timer.png │ │ │ │ │ ├── android-trash.png │ │ │ │ │ ├── android-user-menu.png │ │ │ │ │ ├── android-volume.png │ │ │ │ │ ├── android-wifi.png │ │ │ │ │ ├── aperture.png │ │ │ │ │ ├── archive.png │ │ │ │ │ ├── arrow-down-a.png │ │ │ │ │ ├── arrow-down-b.png │ │ │ │ │ ├── arrow-down-c.png │ │ │ │ │ ├── arrow-expand.png │ │ │ │ │ ├── arrow-graph-down-left.png │ │ │ │ │ ├── arrow-graph-down-right.png │ │ │ │ │ ├── arrow-graph-up-left.png │ │ │ │ │ ├── arrow-graph-up-right.png │ │ │ │ │ ├── arrow-left-a.png │ │ │ │ │ ├── arrow-left-b.png │ │ │ │ │ ├── arrow-left-c.png │ │ │ │ │ ├── arrow-move.png │ │ │ │ │ ├── arrow-resize.png │ │ │ │ │ ├── arrow-return-left.png │ │ │ │ │ ├── arrow-return-right.png │ │ │ │ │ ├── arrow-right-a.png │ │ │ │ │ ├── arrow-right-b.png │ │ │ │ │ ├── arrow-right-c.png │ │ │ │ │ ├── arrow-shrink.png │ │ │ │ │ ├── arrow-swap.png │ │ │ │ │ ├── arrow-up-a.png │ │ │ │ │ ├── arrow-up-b.png │ │ │ │ │ ├── arrow-up-c.png │ │ │ │ │ ├── asterisk.png │ │ │ │ │ ├── at.png │ │ │ │ │ ├── bag.png │ │ │ │ │ ├── battery-charging.png │ │ │ │ │ ├── battery-empty.png │ │ │ │ │ ├── battery-full.png │ │ │ │ │ ├── battery-half.png │ │ │ │ │ ├── battery-low.png │ │ │ │ │ ├── beaker.png │ │ │ │ │ ├── beer.png │ │ │ │ │ ├── bluetooth.png │ │ │ │ │ ├── bonfire.png │ │ │ │ │ ├── bookmark.png │ │ │ │ │ ├── briefcase.png │ │ │ │ │ ├── bug.png │ │ │ │ │ ├── calculator.png │ │ │ │ │ ├── calendar.png │ │ │ │ │ ├── camera.png │ │ │ │ │ ├── card.png │ │ │ │ │ ├── cash.png │ │ │ │ │ ├── chatbox-working.png │ │ │ │ │ ├── chatbox.png │ │ │ │ │ ├── chatboxes.png │ │ │ │ │ ├── chatbubble-working.png │ │ │ │ │ ├── chatbubble.png │ │ │ │ │ ├── chatbubbles.png │ │ │ │ │ ├── checkmark-circled.png │ │ │ │ │ ├── checkmark-round.png │ │ │ │ │ ├── checkmark.png │ │ │ │ │ ├── chevron-down.png │ │ │ │ │ ├── chevron-left.png │ │ │ │ │ ├── chevron-right.png │ │ │ │ │ ├── chevron-up.png │ │ │ │ │ ├── clipboard.png │ │ │ │ │ ├── clock.png │ │ │ │ │ ├── close-circled.png │ │ │ │ │ ├── close-round.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── closed-captioning.png │ │ │ │ │ ├── cloud.png │ │ │ │ │ ├── code-download.png │ │ │ │ │ ├── code-working.png │ │ │ │ │ ├── code.png │ │ │ │ │ ├── coffee.png │ │ │ │ │ ├── compass.png │ │ │ │ │ ├── compose.png │ │ │ │ │ ├── connection-bars.png │ │ │ │ │ ├── contrast.png │ │ │ │ │ ├── cube.png │ │ │ │ │ ├── disc.png │ │ │ │ │ ├── document-text.png │ │ │ │ │ ├── document.png │ │ │ │ │ ├── drag.png │ │ │ │ │ ├── earth.png │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── egg.png │ │ │ │ │ ├── eject.png │ │ │ │ │ ├── email.png │ │ │ │ │ ├── eye-disabled.png │ │ │ │ │ ├── eye.png │ │ │ │ │ ├── female.png │ │ │ │ │ ├── filing.png │ │ │ │ │ ├── film-marker.png │ │ │ │ │ ├── fireball.png │ │ │ │ │ ├── flag.png │ │ │ │ │ ├── flame.png │ │ │ │ │ ├── flash-off.png │ │ │ │ │ ├── flash.png │ │ │ │ │ ├── flask.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── fork-repo.png │ │ │ │ │ ├── fork.png │ │ │ │ │ ├── forward.png │ │ │ │ │ ├── funnel.png │ │ │ │ │ ├── game-controller-a.png │ │ │ │ │ ├── game-controller-b.png │ │ │ │ │ ├── gear-a.png │ │ │ │ │ ├── gear-b.png │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── hammer.png │ │ │ │ │ ├── happy.png │ │ │ │ │ ├── headphone.png │ │ │ │ │ ├── heart-broken.png │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── help-buoy.png │ │ │ │ │ ├── help-circled.png │ │ │ │ │ ├── help.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── icecream.png │ │ │ │ │ ├── icon-social-google-plus-outline.png │ │ │ │ │ ├── icon-social-google-plus.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── images.png │ │ │ │ │ ├── information-circled.png │ │ │ │ │ ├── information.png │ │ │ │ │ ├── ionic.png │ │ │ │ │ ├── ios7-alarm-outline.png │ │ │ │ │ ├── ios7-alarm.png │ │ │ │ │ ├── ios7-albums-outline.png │ │ │ │ │ ├── ios7-albums.png │ │ │ │ │ ├── ios7-americanfootball-outline.png │ │ │ │ │ ├── ios7-americanfootball.png │ │ │ │ │ ├── ios7-analytics-outline.png │ │ │ │ │ ├── ios7-analytics.png │ │ │ │ │ ├── ios7-arrow-back.png │ │ │ │ │ ├── ios7-arrow-down.png │ │ │ │ │ ├── ios7-arrow-forward.png │ │ │ │ │ ├── ios7-arrow-left.png │ │ │ │ │ ├── ios7-arrow-right.png │ │ │ │ │ ├── ios7-arrow-thin-down.png │ │ │ │ │ ├── ios7-arrow-thin-left.png │ │ │ │ │ ├── ios7-arrow-thin-right.png │ │ │ │ │ ├── ios7-arrow-thin-up.png │ │ │ │ │ ├── ios7-arrow-up.png │ │ │ │ │ ├── ios7-at-outline.png │ │ │ │ │ ├── ios7-at.png │ │ │ │ │ ├── ios7-barcode-outline.png │ │ │ │ │ ├── ios7-barcode.png │ │ │ │ │ ├── ios7-baseball-outline.png │ │ │ │ │ ├── ios7-baseball.png │ │ │ │ │ ├── ios7-basketball-outline.png │ │ │ │ │ ├── ios7-basketball.png │ │ │ │ │ ├── ios7-bell-outline.png │ │ │ │ │ ├── ios7-bell.png │ │ │ │ │ ├── ios7-bolt-outline.png │ │ │ │ │ ├── ios7-bolt.png │ │ │ │ │ ├── ios7-bookmarks-outline.png │ │ │ │ │ ├── ios7-bookmarks.png │ │ │ │ │ ├── ios7-box-outline.png │ │ │ │ │ ├── ios7-box.png │ │ │ │ │ ├── ios7-briefcase-outline.png │ │ │ │ │ ├── ios7-briefcase.png │ │ │ │ │ ├── ios7-browsers-outline.png │ │ │ │ │ ├── ios7-browsers.png │ │ │ │ │ ├── ios7-calculator-outline.png │ │ │ │ │ ├── ios7-calculator.png │ │ │ │ │ ├── ios7-calendar-outline.png │ │ │ │ │ ├── ios7-calendar.png │ │ │ │ │ ├── ios7-camera-outline.png │ │ │ │ │ ├── ios7-camera.png │ │ │ │ │ ├── ios7-cart-outline.png │ │ │ │ │ ├── ios7-cart.png │ │ │ │ │ ├── ios7-chatboxes-outline.png │ │ │ │ │ ├── ios7-chatboxes.png │ │ │ │ │ ├── ios7-chatbubble-outline.png │ │ │ │ │ ├── ios7-chatbubble.png │ │ │ │ │ ├── ios7-checkmark-empty.png │ │ │ │ │ ├── ios7-checkmark-outline.png │ │ │ │ │ ├── ios7-checkmark.png │ │ │ │ │ ├── ios7-circle-filled.png │ │ │ │ │ ├── ios7-circle-outline.png │ │ │ │ │ ├── ios7-clock-outline.png │ │ │ │ │ ├── ios7-clock.png │ │ │ │ │ ├── ios7-close-empty.png │ │ │ │ │ ├── ios7-close-outline.png │ │ │ │ │ ├── ios7-close.png │ │ │ │ │ ├── ios7-cloud-download-outline.png │ │ │ │ │ ├── ios7-cloud-download.png │ │ │ │ │ ├── ios7-cloud-outline.png │ │ │ │ │ ├── ios7-cloud-upload-outline.png │ │ │ │ │ ├── ios7-cloud-upload.png │ │ │ │ │ ├── ios7-cloud.png │ │ │ │ │ ├── ios7-cloudy-night-outline.png │ │ │ │ │ ├── ios7-cloudy-night.png │ │ │ │ │ ├── ios7-cloudy-outline.png │ │ │ │ │ ├── ios7-cloudy.png │ │ │ │ │ ├── ios7-cog-outline.png │ │ │ │ │ ├── ios7-cog.png │ │ │ │ │ ├── ios7-compose-outline.png │ │ │ │ │ ├── ios7-compose.png │ │ │ │ │ ├── ios7-contact-outline.png │ │ │ │ │ ├── ios7-contact.png │ │ │ │ │ ├── ios7-copy-outline.png │ │ │ │ │ ├── ios7-copy.png │ │ │ │ │ ├── ios7-download-outline.png │ │ │ │ │ ├── ios7-download.png │ │ │ │ │ ├── ios7-drag.png │ │ │ │ │ ├── ios7-email-outline.png │ │ │ │ │ ├── ios7-email.png │ │ │ │ │ ├── ios7-expand.png │ │ │ │ │ ├── ios7-eye-outline.png │ │ │ │ │ ├── ios7-eye.png │ │ │ │ │ ├── ios7-fastforward-outline.png │ │ │ │ │ ├── ios7-fastforward.png │ │ │ │ │ ├── ios7-filing-outline.png │ │ │ │ │ ├── ios7-filing.png │ │ │ │ │ ├── ios7-film-outline.png │ │ │ │ │ ├── ios7-film.png │ │ │ │ │ ├── ios7-flag-outline.png │ │ │ │ │ ├── ios7-flag.png │ │ │ │ │ ├── ios7-folder-outline.png │ │ │ │ │ ├── ios7-folder.png │ │ │ │ │ ├── ios7-football-outline.png │ │ │ │ │ ├── ios7-football.png │ │ │ │ │ ├── ios7-gear-outline.png │ │ │ │ │ ├── ios7-gear.png │ │ │ │ │ ├── ios7-glasses-outline.png │ │ │ │ │ ├── ios7-glasses.png │ │ │ │ │ ├── ios7-heart-outline.png │ │ │ │ │ ├── ios7-heart.png │ │ │ │ │ ├── ios7-help-empty.png │ │ │ │ │ ├── ios7-help-outline.png │ │ │ │ │ ├── ios7-help.png │ │ │ │ │ ├── ios7-home-outline.png │ │ │ │ │ ├── ios7-home.png │ │ │ │ │ ├── ios7-infinite-outline.png │ │ │ │ │ ├── ios7-infinite.png │ │ │ │ │ ├── ios7-information-empty.png │ │ │ │ │ ├── ios7-information-outline.png │ │ │ │ │ ├── ios7-information.png │ │ │ │ │ ├── ios7-ionic-outline.png │ │ │ │ │ ├── ios7-keypad-outline.png │ │ │ │ │ ├── ios7-keypad.png │ │ │ │ │ ├── ios7-lightbulb-outline.png │ │ │ │ │ ├── ios7-lightbulb.png │ │ │ │ │ ├── ios7-location-outline.png │ │ │ │ │ ├── ios7-location.png │ │ │ │ │ ├── ios7-locked-outline.png │ │ │ │ │ ├── ios7-locked.png │ │ │ │ │ ├── ios7-loop-strong.png │ │ │ │ │ ├── ios7-loop.png │ │ │ │ │ ├── ios7-medkit-outline.png │ │ │ │ │ ├── ios7-medkit.png │ │ │ │ │ ├── ios7-mic-off.png │ │ │ │ │ ├── ios7-mic-outline.png │ │ │ │ │ ├── ios7-mic.png │ │ │ │ │ ├── ios7-minus-empty.png │ │ │ │ │ ├── ios7-minus-outline.png │ │ │ │ │ ├── ios7-minus.png │ │ │ │ │ ├── ios7-monitor-outline.png │ │ │ │ │ ├── ios7-monitor.png │ │ │ │ │ ├── ios7-moon-outline.png │ │ │ │ │ ├── ios7-moon.png │ │ │ │ │ ├── ios7-more-outline.png │ │ │ │ │ ├── ios7-more.png │ │ │ │ │ ├── ios7-musical-note.png │ │ │ │ │ ├── ios7-musical-notes.png │ │ │ │ │ ├── ios7-navigate-outline.png │ │ │ │ │ ├── ios7-navigate.png │ │ │ │ │ ├── ios7-paper-outline.png │ │ │ │ │ ├── ios7-paper.png │ │ │ │ │ ├── ios7-paperplane-outline.png │ │ │ │ │ ├── ios7-paperplane.png │ │ │ │ │ ├── ios7-partlysunny-outline.png │ │ │ │ │ ├── ios7-partlysunny.png │ │ │ │ │ ├── ios7-pause-outline.png │ │ │ │ │ ├── ios7-pause.png │ │ │ │ │ ├── ios7-paw-outline.png │ │ │ │ │ ├── ios7-paw.png │ │ │ │ │ ├── ios7-people-outline.png │ │ │ │ │ ├── ios7-people.png │ │ │ │ │ ├── ios7-person-outline.png │ │ │ │ │ ├── ios7-person.png │ │ │ │ │ ├── ios7-personadd-outline.png │ │ │ │ │ ├── ios7-personadd.png │ │ │ │ │ ├── ios7-photos-outline.png │ │ │ │ │ ├── ios7-photos.png │ │ │ │ │ ├── ios7-pie-outline.png │ │ │ │ │ ├── ios7-pie.png │ │ │ │ │ ├── ios7-play-outline.png │ │ │ │ │ ├── ios7-play.png │ │ │ │ │ ├── ios7-plus-empty.png │ │ │ │ │ ├── ios7-plus-outline.png │ │ │ │ │ ├── ios7-plus.png │ │ │ │ │ ├── ios7-pricetag-outline.png │ │ │ │ │ ├── ios7-pricetag.png │ │ │ │ │ ├── ios7-pricetags-outline.png │ │ │ │ │ ├── ios7-pricetags.png │ │ │ │ │ ├── ios7-printer-outline.png │ │ │ │ │ ├── ios7-printer.png │ │ │ │ │ ├── ios7-pulse-strong.png │ │ │ │ │ ├── ios7-pulse.png │ │ │ │ │ ├── ios7-rainy-outline.png │ │ │ │ │ ├── ios7-rainy.png │ │ │ │ │ ├── ios7-recording-outline.png │ │ │ │ │ ├── ios7-recording.png │ │ │ │ │ ├── ios7-redo-outline.png │ │ │ │ │ ├── ios7-redo.png │ │ │ │ │ ├── ios7-refresh-empty.png │ │ │ │ │ ├── ios7-refresh-outline.png │ │ │ │ │ ├── ios7-refresh.png │ │ │ │ │ ├── ios7-reload.png │ │ │ │ │ ├── ios7-reverse-camera-outline.png │ │ │ │ │ ├── ios7-reverse-camera.png │ │ │ │ │ ├── ios7-rewind-outline.png │ │ │ │ │ ├── ios7-rewind.png │ │ │ │ │ ├── ios7-search-strong.png │ │ │ │ │ ├── ios7-search.png │ │ │ │ │ ├── ios7-settings-strong.png │ │ │ │ │ ├── ios7-settings.png │ │ │ │ │ ├── ios7-shrink.png │ │ │ │ │ ├── ios7-skipbackward-outline.png │ │ │ │ │ ├── ios7-skipbackward.png │ │ │ │ │ ├── ios7-skipforward-outline.png │ │ │ │ │ ├── ios7-skipforward.png │ │ │ │ │ ├── ios7-snowy.png │ │ │ │ │ ├── ios7-speedometer-outline.png │ │ │ │ │ ├── ios7-speedometer.png │ │ │ │ │ ├── ios7-star-half.png │ │ │ │ │ ├── ios7-star-outline.png │ │ │ │ │ ├── ios7-star.png │ │ │ │ │ ├── ios7-stopwatch-outline.png │ │ │ │ │ ├── ios7-stopwatch.png │ │ │ │ │ ├── ios7-sunny-outline.png │ │ │ │ │ ├── ios7-sunny.png │ │ │ │ │ ├── ios7-telephone-outline.png │ │ │ │ │ ├── ios7-telephone.png │ │ │ │ │ ├── ios7-tennisball-outline.png │ │ │ │ │ ├── ios7-tennisball.png │ │ │ │ │ ├── ios7-thunderstorm-outline.png │ │ │ │ │ ├── ios7-thunderstorm.png │ │ │ │ │ ├── ios7-time-outline.png │ │ │ │ │ ├── ios7-time.png │ │ │ │ │ ├── ios7-timer-outline.png │ │ │ │ │ ├── ios7-timer.png │ │ │ │ │ ├── ios7-toggle-outline.png │ │ │ │ │ ├── ios7-toggle.png │ │ │ │ │ ├── ios7-trash-outline.png │ │ │ │ │ ├── ios7-trash.png │ │ │ │ │ ├── ios7-undo-outline.png │ │ │ │ │ ├── ios7-undo.png │ │ │ │ │ ├── ios7-unlocked-outline.png │ │ │ │ │ ├── ios7-unlocked.png │ │ │ │ │ ├── ios7-upload-outline.png │ │ │ │ │ ├── ios7-upload.png │ │ │ │ │ ├── ios7-videocam-outline.png │ │ │ │ │ ├── ios7-videocam.png │ │ │ │ │ ├── ios7-volume-high.png │ │ │ │ │ ├── ios7-volume-low.png │ │ │ │ │ ├── ios7-wineglass-outline.png │ │ │ │ │ ├── ios7-wineglass.png │ │ │ │ │ ├── ios7-world-outline.png │ │ │ │ │ ├── ios7-world.png │ │ │ │ │ ├── ipad.png │ │ │ │ │ ├── iphone.png │ │ │ │ │ ├── ipod.png │ │ │ │ │ ├── jet.png │ │ │ │ │ ├── key.png │ │ │ │ │ ├── knife.png │ │ │ │ │ ├── laptop.png │ │ │ │ │ ├── leaf.png │ │ │ │ │ ├── levels.png │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── load-a.png │ │ │ │ │ ├── load-b.png │ │ │ │ │ ├── load-c.png │ │ │ │ │ ├── load-d.png │ │ │ │ │ ├── location.png │ │ │ │ │ ├── locked.png │ │ │ │ │ ├── log-in.png │ │ │ │ │ ├── log-out.png │ │ │ │ │ ├── loop.png │ │ │ │ │ ├── magnet.png │ │ │ │ │ ├── male.png │ │ │ │ │ ├── man.png │ │ │ │ │ ├── map.png │ │ │ │ │ ├── medkit.png │ │ │ │ │ ├── merge.png │ │ │ │ │ ├── mic-a.png │ │ │ │ │ ├── mic-b.png │ │ │ │ │ ├── mic-c.png │ │ │ │ │ ├── minus-circled.png │ │ │ │ │ ├── minus-round.png │ │ │ │ │ ├── minus.png │ │ │ │ │ ├── model-s.png │ │ │ │ │ ├── monitor.png │ │ │ │ │ ├── more.png │ │ │ │ │ ├── mouse.png │ │ │ │ │ ├── music-note.png │ │ │ │ │ ├── navicon-round.png │ │ │ │ │ ├── navicon.png │ │ │ │ │ ├── navigate.png │ │ │ │ │ ├── network.png │ │ │ │ │ ├── no-smoking.png │ │ │ │ │ ├── nuclear.png │ │ │ │ │ ├── outlet.png │ │ │ │ │ ├── paper-airplane.png │ │ │ │ │ ├── paperclip.png │ │ │ │ │ ├── pause.png │ │ │ │ │ ├── person-add.png │ │ │ │ │ ├── person-stalker.png │ │ │ │ │ ├── person.png │ │ │ │ │ ├── pie-graph.png │ │ │ │ │ ├── pin.png │ │ │ │ │ ├── pinpoint.png │ │ │ │ │ ├── pizza.png │ │ │ │ │ ├── plane.png │ │ │ │ │ ├── planet.png │ │ │ │ │ ├── play.png │ │ │ │ │ ├── playstation.png │ │ │ │ │ ├── plus-circled.png │ │ │ │ │ ├── plus-round.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── podium.png │ │ │ │ │ ├── pound.png │ │ │ │ │ ├── power.png │ │ │ │ │ ├── pricetag.png │ │ │ │ │ ├── pricetags.png │ │ │ │ │ ├── printer.png │ │ │ │ │ ├── pull-request.png │ │ │ │ │ ├── qr-scanner.png │ │ │ │ │ ├── quote.png │ │ │ │ │ ├── radio-waves.png │ │ │ │ │ ├── record.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── reply-all.png │ │ │ │ │ ├── reply.png │ │ │ │ │ ├── ribbon-a.png │ │ │ │ │ ├── ribbon-b.png │ │ │ │ │ ├── sad.png │ │ │ │ │ ├── scissors.png │ │ │ │ │ ├── search.png │ │ │ │ │ ├── settings.png │ │ │ │ │ ├── share.png │ │ │ │ │ ├── shuffle.png │ │ │ │ │ ├── skip-backward.png │ │ │ │ │ ├── skip-forward.png │ │ │ │ │ ├── social-android-outline.png │ │ │ │ │ ├── social-android.png │ │ │ │ │ ├── social-apple-outline.png │ │ │ │ │ ├── social-apple.png │ │ │ │ │ ├── social-bitcoin-outline.png │ │ │ │ │ ├── social-bitcoin.png │ │ │ │ │ ├── social-buffer-outline.png │ │ │ │ │ ├── social-buffer.png │ │ │ │ │ ├── social-designernews-outline.png │ │ │ │ │ ├── social-designernews.png │ │ │ │ │ ├── social-dribbble-outline.png │ │ │ │ │ ├── social-dribbble.png │ │ │ │ │ ├── social-dropbox-outline.png │ │ │ │ │ ├── social-dropbox.png │ │ │ │ │ ├── social-facebook-outline.png │ │ │ │ │ ├── social-facebook.png │ │ │ │ │ ├── social-foursquare-outline.png │ │ │ │ │ ├── social-foursquare.png │ │ │ │ │ ├── social-freebsd-devil.png │ │ │ │ │ ├── social-github-outline.png │ │ │ │ │ ├── social-github.png │ │ │ │ │ ├── social-google-outline.png │ │ │ │ │ ├── social-google.png │ │ │ │ │ ├── social-googleplus-outline.png │ │ │ │ │ ├── social-googleplus.png │ │ │ │ │ ├── social-hackernews-outline.png │ │ │ │ │ ├── social-hackernews.png │ │ │ │ │ ├── social-instagram-outline.png │ │ │ │ │ ├── social-instagram.png │ │ │ │ │ ├── social-linkedin-outline.png │ │ │ │ │ ├── social-linkedin.png │ │ │ │ │ ├── social-pinterest-outline.png │ │ │ │ │ ├── social-pinterest.png │ │ │ │ │ ├── social-reddit-outline.png │ │ │ │ │ ├── social-reddit.png │ │ │ │ │ ├── social-rss-outline.png │ │ │ │ │ ├── social-rss.png │ │ │ │ │ ├── social-skype-outline.png │ │ │ │ │ ├── social-skype.png │ │ │ │ │ ├── social-tumblr-outline.png │ │ │ │ │ ├── social-tumblr.png │ │ │ │ │ ├── social-tux.png │ │ │ │ │ ├── social-twitter-outline.png │ │ │ │ │ ├── social-twitter.png │ │ │ │ │ ├── social-usd-outline.png │ │ │ │ │ ├── social-usd.png │ │ │ │ │ ├── social-vimeo-outline.png │ │ │ │ │ ├── social-vimeo.png │ │ │ │ │ ├── social-windows-outline.png │ │ │ │ │ ├── social-windows.png │ │ │ │ │ ├── social-wordpress-outline.png │ │ │ │ │ ├── social-wordpress.png │ │ │ │ │ ├── social-yahoo-outline.png │ │ │ │ │ ├── social-yahoo.png │ │ │ │ │ ├── social-youtube-outline.png │ │ │ │ │ ├── social-youtube.png │ │ │ │ │ ├── speakerphone.png │ │ │ │ │ ├── speedometer.png │ │ │ │ │ ├── spoon.png │ │ │ │ │ ├── star.png │ │ │ │ │ ├── stats-bars.png │ │ │ │ │ ├── steam.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── thermometer.png │ │ │ │ │ ├── thumbsdown.png │ │ │ │ │ ├── thumbsup.png │ │ │ │ │ ├── toggle-filled.png │ │ │ │ │ ├── toggle.png │ │ │ │ │ ├── trash-a.png │ │ │ │ │ ├── trash-b.png │ │ │ │ │ ├── trophy.png │ │ │ │ │ ├── umbrella.png │ │ │ │ │ ├── university.png │ │ │ │ │ ├── unlocked.png │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── usb.png │ │ │ │ │ ├── videocamera.png │ │ │ │ │ ├── volume-high.png │ │ │ │ │ ├── volume-low.png │ │ │ │ │ ├── volume-medium.png │ │ │ │ │ ├── volume-mute.png │ │ │ │ │ ├── wand.png │ │ │ │ │ ├── waterdrop.png │ │ │ │ │ ├── wifi.png │ │ │ │ │ ├── wineglass.png │ │ │ │ │ ├── woman.png │ │ │ │ │ ├── wrench.png │ │ │ │ │ └── xbox.png │ │ │ │ ├── readme.md │ │ │ │ ├── scss │ │ │ │ ├── _ionicons-font.scss │ │ │ │ ├── _ionicons-icons.scss │ │ │ │ ├── _ionicons-variables.scss │ │ │ │ └── ionicons.scss │ │ │ │ └── src │ │ │ │ ├── alert-circled.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── android-add-circle.svg │ │ │ │ ├── android-add.svg │ │ │ │ ├── android-alarm-clock.svg │ │ │ │ ├── android-alert.svg │ │ │ │ ├── android-apps.svg │ │ │ │ ├── android-archive.svg │ │ │ │ ├── android-arrow-back.svg │ │ │ │ ├── android-arrow-down.svg │ │ │ │ ├── android-arrow-dropdown-circle.svg │ │ │ │ ├── android-arrow-dropdown.svg │ │ │ │ ├── android-arrow-dropleft-circle.svg │ │ │ │ ├── android-arrow-dropleft.svg │ │ │ │ ├── android-arrow-dropright-circle.svg │ │ │ │ ├── android-arrow-dropright.svg │ │ │ │ ├── android-arrow-dropup-circle.svg │ │ │ │ ├── android-arrow-dropup.svg │ │ │ │ ├── android-arrow-forward.svg │ │ │ │ ├── android-arrow-up.svg │ │ │ │ ├── android-attach.svg │ │ │ │ ├── android-bar.svg │ │ │ │ ├── android-bicycle.svg │ │ │ │ ├── android-boat.svg │ │ │ │ ├── android-bookmark.svg │ │ │ │ ├── android-bulb.svg │ │ │ │ ├── android-bus.svg │ │ │ │ ├── android-calendar.svg │ │ │ │ ├── android-call.svg │ │ │ │ ├── android-camera.svg │ │ │ │ ├── android-cancel.svg │ │ │ │ ├── android-car.svg │ │ │ │ ├── android-cart.svg │ │ │ │ ├── android-chat.svg │ │ │ │ ├── android-checkbox-blank.svg │ │ │ │ ├── android-checkbox-outline-blank.svg │ │ │ │ ├── android-checkbox-outline.svg │ │ │ │ ├── android-checkbox.svg │ │ │ │ ├── android-checkmark-circle.svg │ │ │ │ ├── android-clipboard.svg │ │ │ │ ├── android-close.svg │ │ │ │ ├── android-cloud-circle.svg │ │ │ │ ├── android-cloud-done.svg │ │ │ │ ├── android-cloud-outline.svg │ │ │ │ ├── android-cloud.svg │ │ │ │ ├── android-color-palette.svg │ │ │ │ ├── android-compass.svg │ │ │ │ ├── android-contact.svg │ │ │ │ ├── android-contacts.svg │ │ │ │ ├── android-contract.svg │ │ │ │ ├── android-create.svg │ │ │ │ ├── android-delete.svg │ │ │ │ ├── android-desktop.svg │ │ │ │ ├── android-document.svg │ │ │ │ ├── android-done-all.svg │ │ │ │ ├── android-done.svg │ │ │ │ ├── android-download.svg │ │ │ │ ├── android-drafts.svg │ │ │ │ ├── android-exit.svg │ │ │ │ ├── android-expand.svg │ │ │ │ ├── android-favorite-outline.svg │ │ │ │ ├── android-favorite.svg │ │ │ │ ├── android-film.svg │ │ │ │ ├── android-folder-open.svg │ │ │ │ ├── android-folder.svg │ │ │ │ ├── android-funnel.svg │ │ │ │ ├── android-globe.svg │ │ │ │ ├── android-hand.svg │ │ │ │ ├── android-hangout.svg │ │ │ │ ├── android-happy.svg │ │ │ │ ├── android-home.svg │ │ │ │ ├── android-image.svg │ │ │ │ ├── android-laptop.svg │ │ │ │ ├── android-list.svg │ │ │ │ ├── android-locate.svg │ │ │ │ ├── android-lock.svg │ │ │ │ ├── android-mail.svg │ │ │ │ ├── android-map.svg │ │ │ │ ├── android-menu.svg │ │ │ │ ├── android-microphone-off.svg │ │ │ │ ├── android-microphone.svg │ │ │ │ ├── android-more-horizontal.svg │ │ │ │ ├── android-more-vertical.svg │ │ │ │ ├── android-navigate.svg │ │ │ │ ├── android-notifications-none.svg │ │ │ │ ├── android-notifications-off.svg │ │ │ │ ├── android-notifications.svg │ │ │ │ ├── android-open.svg │ │ │ │ ├── android-options.svg │ │ │ │ ├── android-people.svg │ │ │ │ ├── android-person-add.svg │ │ │ │ ├── android-person.svg │ │ │ │ ├── android-phone-landscape.svg │ │ │ │ ├── android-phone-portrait.svg │ │ │ │ ├── android-pin.svg │ │ │ │ ├── android-plane.svg │ │ │ │ ├── android-playstore.svg │ │ │ │ ├── android-print.svg │ │ │ │ ├── android-radio-button-off.svg │ │ │ │ ├── android-radio-button-on.svg │ │ │ │ ├── android-refresh.svg │ │ │ │ ├── android-remove-circle.svg │ │ │ │ ├── android-remove.svg │ │ │ │ ├── android-restaurant.svg │ │ │ │ ├── android-sad.svg │ │ │ │ ├── android-search.svg │ │ │ │ ├── android-send.svg │ │ │ │ ├── android-settings.svg │ │ │ │ ├── android-share-alt.svg │ │ │ │ ├── android-share.svg │ │ │ │ ├── android-star-half.svg │ │ │ │ ├── android-star-outline.svg │ │ │ │ ├── android-star.svg │ │ │ │ ├── android-stopwatch.svg │ │ │ │ ├── android-subway.svg │ │ │ │ ├── android-sunny.svg │ │ │ │ ├── android-sync.svg │ │ │ │ ├── android-textsms.svg │ │ │ │ ├── android-time.svg │ │ │ │ ├── android-train.svg │ │ │ │ ├── android-unlock.svg │ │ │ │ ├── android-upload.svg │ │ │ │ ├── android-volume-down.svg │ │ │ │ ├── android-volume-mute.svg │ │ │ │ ├── android-volume-off.svg │ │ │ │ ├── android-volume-up.svg │ │ │ │ ├── android-walk.svg │ │ │ │ ├── android-warning.svg │ │ │ │ ├── android-watch.svg │ │ │ │ ├── android-wifi.svg │ │ │ │ ├── aperture.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── arrow-down-a.svg │ │ │ │ ├── arrow-down-b.svg │ │ │ │ ├── arrow-down-c.svg │ │ │ │ ├── arrow-expand.svg │ │ │ │ ├── arrow-graph-down-left.svg │ │ │ │ ├── arrow-graph-down-right.svg │ │ │ │ ├── arrow-graph-up-left.svg │ │ │ │ ├── arrow-graph-up-right.svg │ │ │ │ ├── arrow-left-a.svg │ │ │ │ ├── arrow-left-b.svg │ │ │ │ ├── arrow-left-c.svg │ │ │ │ ├── arrow-move.svg │ │ │ │ ├── arrow-resize.svg │ │ │ │ ├── arrow-return-left.svg │ │ │ │ ├── arrow-return-right.svg │ │ │ │ ├── arrow-right-a.svg │ │ │ │ ├── arrow-right-b.svg │ │ │ │ ├── arrow-right-c.svg │ │ │ │ ├── arrow-shrink.svg │ │ │ │ ├── arrow-swap.svg │ │ │ │ ├── arrow-up-a.svg │ │ │ │ ├── arrow-up-b.svg │ │ │ │ ├── arrow-up-c.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── backspace-outline.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── bag.svg │ │ │ │ ├── battery-charging.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-low.svg │ │ │ │ ├── beaker.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bonfire.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── bowtie.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── card.svg │ │ │ │ ├── cash.svg │ │ │ │ ├── chatbox-working.svg │ │ │ │ ├── chatbox.svg │ │ │ │ ├── chatboxes.svg │ │ │ │ ├── chatbubble-working.svg │ │ │ │ ├── chatbubble.svg │ │ │ │ ├── chatbubbles.svg │ │ │ │ ├── checkmark-circled.svg │ │ │ │ ├── checkmark-round.svg │ │ │ │ ├── checkmark.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── close-circled.svg │ │ │ │ ├── close-round.svg │ │ │ │ ├── close.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── code-download.svg │ │ │ │ ├── code-working.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compose.svg │ │ │ │ ├── connection-bars.svg │ │ │ │ ├── contrast.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── disc.svg │ │ │ │ ├── document-text.svg │ │ │ │ ├── document.svg │ │ │ │ ├── drag.svg │ │ │ │ ├── earth.svg │ │ │ │ ├── easel.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── email-unread.svg │ │ │ │ ├── email.svg │ │ │ │ ├── erlenmeyer-flask-bubbles.svg │ │ │ │ ├── erlenmeyer-flask.svg │ │ │ │ ├── eye-disabled.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── female.svg │ │ │ │ ├── filing.svg │ │ │ │ ├── film-marker.svg │ │ │ │ ├── fireball.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flame.svg │ │ │ │ ├── flash-off.svg │ │ │ │ ├── flash.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── fork-repo.svg │ │ │ │ ├── fork.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── funnel.svg │ │ │ │ ├── gear-a.svg │ │ │ │ ├── gear-b.svg │ │ │ │ ├── grid.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── happy-outline.svg │ │ │ │ ├── happy.svg │ │ │ │ ├── headphone.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── help-buoy.svg │ │ │ │ ├── help-circled.svg │ │ │ │ ├── help.svg │ │ │ │ ├── home.svg │ │ │ │ ├── icecream.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── information-circled.svg │ │ │ │ ├── information.svg │ │ │ │ ├── ionic.svg │ │ │ │ ├── ios-alarm-outline.svg │ │ │ │ ├── ios-alarm.svg │ │ │ │ ├── ios-albums-outline.svg │ │ │ │ ├── ios-albums.svg │ │ │ │ ├── ios-americanfootball-outline.svg │ │ │ │ ├── ios-americanfootball.svg │ │ │ │ ├── ios-analytics-outline.svg │ │ │ │ ├── ios-analytics.svg │ │ │ │ ├── ios-arrow-back.svg │ │ │ │ ├── ios-arrow-down.svg │ │ │ │ ├── ios-arrow-forward.svg │ │ │ │ ├── ios-arrow-left.svg │ │ │ │ ├── ios-arrow-right.svg │ │ │ │ ├── ios-arrow-thin-down.svg │ │ │ │ ├── ios-arrow-thin-left.svg │ │ │ │ ├── ios-arrow-thin-right.svg │ │ │ │ ├── ios-arrow-thin-up.svg │ │ │ │ ├── ios-arrow-up.svg │ │ │ │ ├── ios-at-outline.svg │ │ │ │ ├── ios-at.svg │ │ │ │ ├── ios-barcode-outline.svg │ │ │ │ ├── ios-barcode.svg │ │ │ │ ├── ios-baseball-outline.svg │ │ │ │ ├── ios-baseball.svg │ │ │ │ ├── ios-basketball-outline.svg │ │ │ │ ├── ios-basketball.svg │ │ │ │ ├── ios-bell-outline.svg │ │ │ │ ├── ios-bell.svg │ │ │ │ ├── ios-body-outline.svg │ │ │ │ ├── ios-body.svg │ │ │ │ ├── ios-bolt-outline.svg │ │ │ │ ├── ios-bolt.svg │ │ │ │ ├── ios-book-outline.svg │ │ │ │ ├── ios-book.svg │ │ │ │ ├── ios-bookmarks-outline.svg │ │ │ │ ├── ios-bookmarks.svg │ │ │ │ ├── ios-box-outline.svg │ │ │ │ ├── ios-box.svg │ │ │ │ ├── ios-briefcase-outline.svg │ │ │ │ ├── ios-briefcase.svg │ │ │ │ ├── ios-browsers-outline.svg │ │ │ │ ├── ios-browsers.svg │ │ │ │ ├── ios-calculator-outline.svg │ │ │ │ ├── ios-calculator.svg │ │ │ │ ├── ios-calendar-outline.svg │ │ │ │ ├── ios-calendar.svg │ │ │ │ ├── ios-camera-outline.svg │ │ │ │ ├── ios-camera.svg │ │ │ │ ├── ios-cart-outline.svg │ │ │ │ ├── ios-cart.svg │ │ │ │ ├── ios-chatboxes-outline.svg │ │ │ │ ├── ios-chatboxes.svg │ │ │ │ ├── ios-chatbubble-outline.svg │ │ │ │ ├── ios-chatbubble.svg │ │ │ │ ├── ios-checkmark-empty.svg │ │ │ │ ├── ios-checkmark-outline.svg │ │ │ │ ├── ios-checkmark.svg │ │ │ │ ├── ios-circle-filled.svg │ │ │ │ ├── ios-circle-outline.svg │ │ │ │ ├── ios-clock-outline.svg │ │ │ │ ├── ios-clock.svg │ │ │ │ ├── ios-close-empty.svg │ │ │ │ ├── ios-close-outline.svg │ │ │ │ ├── ios-close.svg │ │ │ │ ├── ios-cloud-download-outline.svg │ │ │ │ ├── ios-cloud-download.svg │ │ │ │ ├── ios-cloud-outline.svg │ │ │ │ ├── ios-cloud-upload-outline.svg │ │ │ │ ├── ios-cloud-upload.svg │ │ │ │ ├── ios-cloud.svg │ │ │ │ ├── ios-cloudy-night-outline.svg │ │ │ │ ├── ios-cloudy-night.svg │ │ │ │ ├── ios-cloudy-outline.svg │ │ │ │ ├── ios-cloudy.svg │ │ │ │ ├── ios-cog-outline.svg │ │ │ │ ├── ios-cog.svg │ │ │ │ ├── ios-color-filter-outline.svg │ │ │ │ ├── ios-color-filter.svg │ │ │ │ ├── ios-color-wand-outline.svg │ │ │ │ ├── ios-color-wand.svg │ │ │ │ ├── ios-compose-outline.svg │ │ │ │ ├── ios-compose.svg │ │ │ │ ├── ios-contact-outline.svg │ │ │ │ ├── ios-contact.svg │ │ │ │ ├── ios-copy-outline.svg │ │ │ │ ├── ios-copy.svg │ │ │ │ ├── ios-crop-strong.svg │ │ │ │ ├── ios-crop.svg │ │ │ │ ├── ios-download-outline.svg │ │ │ │ ├── ios-download.svg │ │ │ │ ├── ios-drag.svg │ │ │ │ ├── ios-email-outline.svg │ │ │ │ ├── ios-email.svg │ │ │ │ ├── ios-eye-outline.svg │ │ │ │ ├── ios-eye.svg │ │ │ │ ├── ios-fastforward-outline.svg │ │ │ │ ├── ios-fastforward.svg │ │ │ │ ├── ios-filing-outline.svg │ │ │ │ ├── ios-filing.svg │ │ │ │ ├── ios-film-outline.svg │ │ │ │ ├── ios-film.svg │ │ │ │ ├── ios-flag-outline.svg │ │ │ │ ├── ios-flag.svg │ │ │ │ ├── ios-flame-outline.svg │ │ │ │ ├── ios-flame.svg │ │ │ │ ├── ios-flask-outline.svg │ │ │ │ ├── ios-flask.svg │ │ │ │ ├── ios-flower-outline.svg │ │ │ │ ├── ios-flower.svg │ │ │ │ ├── ios-folder-outline.svg │ │ │ │ ├── ios-folder.svg │ │ │ │ ├── ios-football-outline.svg │ │ │ │ ├── ios-football.svg │ │ │ │ ├── ios-game-controller-a-outline.svg │ │ │ │ ├── ios-game-controller-a.svg │ │ │ │ ├── ios-game-controller-b-outline.svg │ │ │ │ ├── ios-game-controller-b.svg │ │ │ │ ├── ios-gear-outline.svg │ │ │ │ ├── ios-gear.svg │ │ │ │ ├── ios-glasses-outline.svg │ │ │ │ ├── ios-glasses.svg │ │ │ │ ├── ios-grid-view-outline.svg │ │ │ │ ├── ios-grid-view.svg │ │ │ │ ├── ios-heart-outline.svg │ │ │ │ ├── ios-heart.svg │ │ │ │ ├── ios-help-empty.svg │ │ │ │ ├── ios-help-outline.svg │ │ │ │ ├── ios-help.svg │ │ │ │ ├── ios-home-outline.svg │ │ │ │ ├── ios-home.svg │ │ │ │ ├── ios-infinite-outline.svg │ │ │ │ ├── ios-infinite.svg │ │ │ │ ├── ios-information-empty.svg │ │ │ │ ├── ios-information-outline.svg │ │ │ │ ├── ios-information.svg │ │ │ │ ├── ios-ionic-outline.svg │ │ │ │ ├── ios-keypad-outline.svg │ │ │ │ ├── ios-keypad.svg │ │ │ │ ├── ios-lightbulb-outline.svg │ │ │ │ ├── ios-lightbulb.svg │ │ │ │ ├── ios-list-outline.svg │ │ │ │ ├── ios-list.svg │ │ │ │ ├── ios-location-outline.svg │ │ │ │ ├── ios-location.svg │ │ │ │ ├── ios-locked-outline.svg │ │ │ │ ├── ios-locked.svg │ │ │ │ ├── ios-loop-strong.svg │ │ │ │ ├── ios-loop.svg │ │ │ │ ├── ios-medical-outline.svg │ │ │ │ ├── ios-medical.svg │ │ │ │ ├── ios-medkit-outline.svg │ │ │ │ ├── ios-medkit.svg │ │ │ │ ├── ios-mic-off.svg │ │ │ │ ├── ios-mic-outline.svg │ │ │ │ ├── ios-mic.svg │ │ │ │ ├── ios-minus-empty.svg │ │ │ │ ├── ios-minus-outline.svg │ │ │ │ ├── ios-minus.svg │ │ │ │ ├── ios-monitor-outline.svg │ │ │ │ ├── ios-monitor.svg │ │ │ │ ├── ios-moon-outline.svg │ │ │ │ ├── ios-moon.svg │ │ │ │ ├── ios-more-outline.svg │ │ │ │ ├── ios-more.svg │ │ │ │ ├── ios-musical-note.svg │ │ │ │ ├── ios-musical-notes.svg │ │ │ │ ├── ios-navigate-outline.svg │ │ │ │ ├── ios-navigate.svg │ │ │ │ ├── ios-nutrition-outline.svg │ │ │ │ ├── ios-nutrition.svg │ │ │ │ ├── ios-paper-outline.svg │ │ │ │ ├── ios-paper.svg │ │ │ │ ├── ios-paperplane-outline.svg │ │ │ │ ├── ios-paperplane.svg │ │ │ │ ├── ios-partlysunny-outline.svg │ │ │ │ ├── ios-partlysunny.svg │ │ │ │ ├── ios-pause-outline.svg │ │ │ │ ├── ios-pause.svg │ │ │ │ ├── ios-paw-outline.svg │ │ │ │ ├── ios-paw.svg │ │ │ │ ├── ios-people-outline.svg │ │ │ │ ├── ios-people.svg │ │ │ │ ├── ios-person-outline.svg │ │ │ │ ├── ios-person.svg │ │ │ │ ├── ios-personadd-outline.svg │ │ │ │ ├── ios-personadd.svg │ │ │ │ ├── ios-photos-outline.svg │ │ │ │ ├── ios-photos.svg │ │ │ │ ├── ios-pie-outline.svg │ │ │ │ ├── ios-pie.svg │ │ │ │ ├── ios-pint-outline.svg │ │ │ │ ├── ios-pint.svg │ │ │ │ ├── ios-play-outline.svg │ │ │ │ ├── ios-play.svg │ │ │ │ ├── ios-plus-empty.svg │ │ │ │ ├── ios-plus-outline.svg │ │ │ │ ├── ios-plus.svg │ │ │ │ ├── ios-pricetag-outline.svg │ │ │ │ ├── ios-pricetag.svg │ │ │ │ ├── ios-pricetags-outline.svg │ │ │ │ ├── ios-pricetags.svg │ │ │ │ ├── ios-printer-outline.svg │ │ │ │ ├── ios-printer.svg │ │ │ │ ├── ios-pulse-strong.svg │ │ │ │ ├── ios-pulse.svg │ │ │ │ ├── ios-rainy-outline.svg │ │ │ │ ├── ios-rainy.svg │ │ │ │ ├── ios-recording-outline.svg │ │ │ │ ├── ios-recording.svg │ │ │ │ ├── ios-redo-outline.svg │ │ │ │ ├── ios-redo.svg │ │ │ │ ├── ios-refresh-empty.svg │ │ │ │ ├── ios-refresh-outline.svg │ │ │ │ ├── ios-refresh.svg │ │ │ │ ├── ios-reload.svg │ │ │ │ ├── ios-reverse-camera-outline.svg │ │ │ │ ├── ios-reverse-camera.svg │ │ │ │ ├── ios-rewind-outline.svg │ │ │ │ ├── ios-rewind.svg │ │ │ │ ├── ios-rose-outline.svg │ │ │ │ ├── ios-rose.svg │ │ │ │ ├── ios-search-strong.svg │ │ │ │ ├── ios-search.svg │ │ │ │ ├── ios-settings-strong.svg │ │ │ │ ├── ios-settings.svg │ │ │ │ ├── ios-shuffle-strong.svg │ │ │ │ ├── ios-shuffle.svg │ │ │ │ ├── ios-skipbackward-outline.svg │ │ │ │ ├── ios-skipbackward.svg │ │ │ │ ├── ios-skipforward-outline.svg │ │ │ │ ├── ios-skipforward.svg │ │ │ │ ├── ios-snowy.svg │ │ │ │ ├── ios-speedometer-outline.svg │ │ │ │ ├── ios-speedometer.svg │ │ │ │ ├── ios-star-half.svg │ │ │ │ ├── ios-star-outline.svg │ │ │ │ ├── ios-star.svg │ │ │ │ ├── ios-stopwatch-outline.svg │ │ │ │ ├── ios-stopwatch.svg │ │ │ │ ├── ios-sunny-outline.svg │ │ │ │ ├── ios-sunny.svg │ │ │ │ ├── ios-telephone-outline.svg │ │ │ │ ├── ios-telephone.svg │ │ │ │ ├── ios-tennisball-outline.svg │ │ │ │ ├── ios-tennisball.svg │ │ │ │ ├── ios-thunderstorm-outline.svg │ │ │ │ ├── ios-thunderstorm.svg │ │ │ │ ├── ios-time-outline.svg │ │ │ │ ├── ios-time.svg │ │ │ │ ├── ios-timer-outline.svg │ │ │ │ ├── ios-timer.svg │ │ │ │ ├── ios-toggle-outline.svg │ │ │ │ ├── ios-toggle.svg │ │ │ │ ├── ios-trash-outline.svg │ │ │ │ ├── ios-trash.svg │ │ │ │ ├── ios-undo-outline.svg │ │ │ │ ├── ios-undo.svg │ │ │ │ ├── ios-unlocked-outline.svg │ │ │ │ ├── ios-unlocked.svg │ │ │ │ ├── ios-upload-outline.svg │ │ │ │ ├── ios-upload.svg │ │ │ │ ├── ios-videocam-outline.svg │ │ │ │ ├── ios-videocam.svg │ │ │ │ ├── ios-volume-high.svg │ │ │ │ ├── ios-volume-low.svg │ │ │ │ ├── ios-wineglass-outline.svg │ │ │ │ ├── ios-wineglass.svg │ │ │ │ ├── ios-world-outline.svg │ │ │ │ ├── ios-world.svg │ │ │ │ ├── ipad.svg │ │ │ │ ├── iphone.svg │ │ │ │ ├── ipod.svg │ │ │ │ ├── jet.svg │ │ │ │ ├── key.svg │ │ │ │ ├── knife.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── levels.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── load-a.svg │ │ │ │ ├── load-b.svg │ │ │ │ ├── load-c.svg │ │ │ │ ├── load-d.svg │ │ │ │ ├── location.svg │ │ │ │ ├── lock-combination.svg │ │ │ │ ├── locked.svg │ │ │ │ ├── log-in.svg │ │ │ │ ├── log-out.svg │ │ │ │ ├── loop.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── male.svg │ │ │ │ ├── man.svg │ │ │ │ ├── map.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── merge.svg │ │ │ │ ├── mic-a.svg │ │ │ │ ├── mic-b.svg │ │ │ │ ├── mic-c.svg │ │ │ │ ├── minus-circled.svg │ │ │ │ ├── minus-round.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── model-s.svg │ │ │ │ ├── monitor.svg │ │ │ │ ├── more.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── music-note.svg │ │ │ │ ├── navicon-round.svg │ │ │ │ ├── navicon.svg │ │ │ │ ├── navigate.svg │ │ │ │ ├── network.svg │ │ │ │ ├── no-smoking.svg │ │ │ │ ├── nuclear.svg │ │ │ │ ├── outlet.svg │ │ │ │ ├── paintbrush.svg │ │ │ │ ├── paintbucket.svg │ │ │ │ ├── paper-airplane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── person-add.svg │ │ │ │ ├── person-stalker.svg │ │ │ │ ├── person.svg │ │ │ │ ├── pie-graph.svg │ │ │ │ ├── pin.svg │ │ │ │ ├── pinpoint.svg │ │ │ │ ├── pizza.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── planet.svg │ │ │ │ ├── play.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── plus-circled.svg │ │ │ │ ├── plus-round.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podium.svg │ │ │ │ ├── pound.svg │ │ │ │ ├── power.svg │ │ │ │ ├── pricetag.svg │ │ │ │ ├── pricetags.svg │ │ │ │ ├── printer.svg │ │ │ │ ├── pull-request.svg │ │ │ │ ├── qr-scanner.svg │ │ │ │ ├── quote.svg │ │ │ │ ├── radio-waves.svg │ │ │ │ ├── record.svg │ │ │ │ ├── refresh.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── ribbon-a.svg │ │ │ │ ├── ribbon-b.svg │ │ │ │ ├── sad-outline.svg │ │ │ │ ├── sad.svg │ │ │ │ ├── scissors.svg │ │ │ │ ├── search.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── skip-backward.svg │ │ │ │ ├── skip-forward.svg │ │ │ │ ├── social-android-outline.svg │ │ │ │ ├── social-android.svg │ │ │ │ ├── social-angular-outline.svg │ │ │ │ ├── social-angular.svg │ │ │ │ ├── social-apple-outline.svg │ │ │ │ ├── social-apple.svg │ │ │ │ ├── social-bitcoin-outline.svg │ │ │ │ ├── social-bitcoin.svg │ │ │ │ ├── social-buffer-outline.svg │ │ │ │ ├── social-buffer.svg │ │ │ │ ├── social-chrome-outline.svg │ │ │ │ ├── social-chrome.svg │ │ │ │ ├── social-codepen-outline.svg │ │ │ │ ├── social-codepen.svg │ │ │ │ ├── social-css3-outline.svg │ │ │ │ ├── social-css3.svg │ │ │ │ ├── social-designernews-outline.svg │ │ │ │ ├── social-designernews.svg │ │ │ │ ├── social-dribbble-outline.svg │ │ │ │ ├── social-dribbble.svg │ │ │ │ ├── social-dropbox-outline.svg │ │ │ │ ├── social-dropbox.svg │ │ │ │ ├── social-euro-outline.svg │ │ │ │ ├── social-euro.svg │ │ │ │ ├── social-facebook-outline.svg │ │ │ │ ├── social-facebook.svg │ │ │ │ ├── social-foursquare-outline.svg │ │ │ │ ├── social-foursquare.svg │ │ │ │ ├── social-freebsd-devil.svg │ │ │ │ ├── social-github-outline.svg │ │ │ │ ├── social-github.svg │ │ │ │ ├── social-google-outline.svg │ │ │ │ ├── social-google.svg │ │ │ │ ├── social-googleplus-outline.svg │ │ │ │ ├── social-googleplus.svg │ │ │ │ ├── social-hackernews-outline.svg │ │ │ │ ├── social-hackernews.svg │ │ │ │ ├── social-html5-outline.svg │ │ │ │ ├── social-html5.svg │ │ │ │ ├── social-instagram-outline.svg │ │ │ │ ├── social-instagram.svg │ │ │ │ ├── social-javascript-outline.svg │ │ │ │ ├── social-javascript.svg │ │ │ │ ├── social-linkedin-outline.svg │ │ │ │ ├── social-linkedin.svg │ │ │ │ ├── social-markdown.svg │ │ │ │ ├── social-nodejs.svg │ │ │ │ ├── social-octocat.svg │ │ │ │ ├── social-pinterest-outline.svg │ │ │ │ ├── social-pinterest.svg │ │ │ │ ├── social-python.svg │ │ │ │ ├── social-reddit-outline.svg │ │ │ │ ├── social-reddit.svg │ │ │ │ ├── social-rss-outline.svg │ │ │ │ ├── social-rss.svg │ │ │ │ ├── social-sass.svg │ │ │ │ ├── social-skype-outline.svg │ │ │ │ ├── social-skype.svg │ │ │ │ ├── social-snapchat-outline.svg │ │ │ │ ├── social-snapchat.svg │ │ │ │ ├── social-tumblr-outline.svg │ │ │ │ ├── social-tumblr.svg │ │ │ │ ├── social-tux.svg │ │ │ │ ├── social-twitch-outline.svg │ │ │ │ ├── social-twitch.svg │ │ │ │ ├── social-twitter-outline.svg │ │ │ │ ├── social-twitter.svg │ │ │ │ ├── social-usd-outline.svg │ │ │ │ ├── social-usd.svg │ │ │ │ ├── social-vimeo-outline.svg │ │ │ │ ├── social-vimeo.svg │ │ │ │ ├── social-whatsapp-outline.svg │ │ │ │ ├── social-whatsapp.svg │ │ │ │ ├── social-windows-outline.svg │ │ │ │ ├── social-windows.svg │ │ │ │ ├── social-wordpress-outline.svg │ │ │ │ ├── social-wordpress.svg │ │ │ │ ├── social-yahoo-outline.svg │ │ │ │ ├── social-yahoo.svg │ │ │ │ ├── social-yen-outline.svg │ │ │ │ ├── social-yen.svg │ │ │ │ ├── social-youtube-outline.svg │ │ │ │ ├── social-youtube.svg │ │ │ │ ├── soup-can-outline.svg │ │ │ │ ├── soup-can.svg │ │ │ │ ├── speakerphone.svg │ │ │ │ ├── speedometer.svg │ │ │ │ ├── spoon.svg │ │ │ │ ├── star.svg │ │ │ │ ├── stats-bars.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbsdown.svg │ │ │ │ ├── thumbsup.svg │ │ │ │ ├── toggle-filled.svg │ │ │ │ ├── toggle.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-a.svg │ │ │ │ ├── trash-b.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── tshirt-outline.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlocked.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── videocamera.svg │ │ │ │ ├── volume-high.svg │ │ │ │ ├── volume-low.svg │ │ │ │ ├── volume-medium.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── wand.svg │ │ │ │ ├── waterdrop.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wineglass.svg │ │ │ │ ├── woman.svg │ │ │ │ ├── wrench.svg │ │ │ │ └── xbox.svg │ │ ├── js │ │ │ ├── ie │ │ │ │ ├── PIE.htc │ │ │ │ ├── backgroundsize.min.htc │ │ │ │ ├── html5shiv.js │ │ │ │ └── respond.min.js │ │ │ ├── jq.min.js │ │ │ ├── jq.min.js.txt │ │ │ ├── jquery.min.js │ │ │ ├── jquery.scrolly.min.js │ │ │ ├── jquery.scrollzer.min.js │ │ │ ├── justgage.js │ │ │ ├── main.js │ │ │ ├── materialize.js │ │ │ ├── materialize.min.js │ │ │ ├── raphael-2.1.4.min.js │ │ │ ├── skel.min.js │ │ │ └── util.js │ │ ├── leef.jpg │ │ ├── leef1.jpg │ │ ├── less │ │ │ ├── _ionicons-font.less │ │ │ ├── _ionicons-icons.less │ │ │ ├── _ionicons-variables.less │ │ │ └── ionicons.less │ │ ├── pie1.html │ │ ├── plant2.html │ │ ├── plant_st.png │ │ ├── png │ │ │ └── 512 │ │ │ │ ├── alert-circled.png │ │ │ │ ├── alert.png │ │ │ │ ├── android-add-contact.png │ │ │ │ ├── android-add.png │ │ │ │ ├── android-alarm.png │ │ │ │ ├── android-archive.png │ │ │ │ ├── android-arrow-back.png │ │ │ │ ├── android-arrow-down-left.png │ │ │ │ ├── android-arrow-down-right.png │ │ │ │ ├── android-arrow-forward.png │ │ │ │ ├── android-arrow-up-left.png │ │ │ │ ├── android-arrow-up-right.png │ │ │ │ ├── android-battery.png │ │ │ │ ├── android-book.png │ │ │ │ ├── android-calendar.png │ │ │ │ ├── android-call.png │ │ │ │ ├── android-camera.png │ │ │ │ ├── android-chat.png │ │ │ │ ├── android-checkmark.png │ │ │ │ ├── android-clock.png │ │ │ │ ├── android-close.png │ │ │ │ ├── android-contact.png │ │ │ │ ├── android-contacts.png │ │ │ │ ├── android-data.png │ │ │ │ ├── android-developer.png │ │ │ │ ├── android-display.png │ │ │ │ ├── android-download.png │ │ │ │ ├── android-drawer.png │ │ │ │ ├── android-dropdown.png │ │ │ │ ├── android-earth.png │ │ │ │ ├── android-folder.png │ │ │ │ ├── android-forums.png │ │ │ │ ├── android-friends.png │ │ │ │ ├── android-hand.png │ │ │ │ ├── android-image.png │ │ │ │ ├── android-inbox.png │ │ │ │ ├── android-information.png │ │ │ │ ├── android-keypad.png │ │ │ │ ├── android-lightbulb.png │ │ │ │ ├── android-locate.png │ │ │ │ ├── android-location.png │ │ │ │ ├── android-mail.png │ │ │ │ ├── android-microphone.png │ │ │ │ ├── android-mixer.png │ │ │ │ ├── android-more.png │ │ │ │ ├── android-note.png │ │ │ │ ├── android-playstore.png │ │ │ │ ├── android-printer.png │ │ │ │ ├── android-promotion.png │ │ │ │ ├── android-reminder.png │ │ │ │ ├── android-remove.png │ │ │ │ ├── android-search.png │ │ │ │ ├── android-send.png │ │ │ │ ├── android-settings.png │ │ │ │ ├── android-share.png │ │ │ │ ├── android-social-user.png │ │ │ │ ├── android-social.png │ │ │ │ ├── android-sort.png │ │ │ │ ├── android-stair-drawer.png │ │ │ │ ├── android-star.png │ │ │ │ ├── android-stopwatch.png │ │ │ │ ├── android-storage.png │ │ │ │ ├── android-system-back.png │ │ │ │ ├── android-system-home.png │ │ │ │ ├── android-system-windows.png │ │ │ │ ├── android-timer.png │ │ │ │ ├── android-trash.png │ │ │ │ ├── android-user-menu.png │ │ │ │ ├── android-volume.png │ │ │ │ ├── android-wifi.png │ │ │ │ ├── aperture.png │ │ │ │ ├── archive.png │ │ │ │ ├── arrow-down-a.png │ │ │ │ ├── arrow-down-b.png │ │ │ │ ├── arrow-down-c.png │ │ │ │ ├── arrow-expand.png │ │ │ │ ├── arrow-graph-down-left.png │ │ │ │ ├── arrow-graph-down-right.png │ │ │ │ ├── arrow-graph-up-left.png │ │ │ │ ├── arrow-graph-up-right.png │ │ │ │ ├── arrow-left-a.png │ │ │ │ ├── arrow-left-b.png │ │ │ │ ├── arrow-left-c.png │ │ │ │ ├── arrow-move.png │ │ │ │ ├── arrow-resize.png │ │ │ │ ├── arrow-return-left.png │ │ │ │ ├── arrow-return-right.png │ │ │ │ ├── arrow-right-a.png │ │ │ │ ├── arrow-right-b.png │ │ │ │ ├── arrow-right-c.png │ │ │ │ ├── arrow-shrink.png │ │ │ │ ├── arrow-swap.png │ │ │ │ ├── arrow-up-a.png │ │ │ │ ├── arrow-up-b.png │ │ │ │ ├── arrow-up-c.png │ │ │ │ ├── asterisk.png │ │ │ │ ├── at.png │ │ │ │ ├── bag.png │ │ │ │ ├── battery-charging.png │ │ │ │ ├── battery-empty.png │ │ │ │ ├── battery-full.png │ │ │ │ ├── battery-half.png │ │ │ │ ├── battery-low.png │ │ │ │ ├── beaker.png │ │ │ │ ├── beer.png │ │ │ │ ├── bluetooth.png │ │ │ │ ├── bonfire.png │ │ │ │ ├── bookmark.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── bug.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camera.png │ │ │ │ ├── card.png │ │ │ │ ├── cash.png │ │ │ │ ├── chatbox-working.png │ │ │ │ ├── chatbox.png │ │ │ │ ├── chatboxes.png │ │ │ │ ├── chatbubble-working.png │ │ │ │ ├── chatbubble.png │ │ │ │ ├── chatbubbles.png │ │ │ │ ├── checkmark-circled.png │ │ │ │ ├── checkmark-round.png │ │ │ │ ├── checkmark.png │ │ │ │ ├── chevron-down.png │ │ │ │ ├── chevron-left.png │ │ │ │ ├── chevron-right.png │ │ │ │ ├── chevron-up.png │ │ │ │ ├── clipboard.png │ │ │ │ ├── clock.png │ │ │ │ ├── close-circled.png │ │ │ │ ├── close-round.png │ │ │ │ ├── close.png │ │ │ │ ├── closed-captioning.png │ │ │ │ ├── cloud.png │ │ │ │ ├── code-download.png │ │ │ │ ├── code-working.png │ │ │ │ ├── code.png │ │ │ │ ├── coffee.png │ │ │ │ ├── compass.png │ │ │ │ ├── compose.png │ │ │ │ ├── connection-bars.png │ │ │ │ ├── contrast.png │ │ │ │ ├── cube.png │ │ │ │ ├── disc.png │ │ │ │ ├── document-text.png │ │ │ │ ├── document.png │ │ │ │ ├── drag.png │ │ │ │ ├── earth.png │ │ │ │ ├── edit.png │ │ │ │ ├── egg.png │ │ │ │ ├── eject.png │ │ │ │ ├── email.png │ │ │ │ ├── eye-disabled.png │ │ │ │ ├── eye.png │ │ │ │ ├── female.png │ │ │ │ ├── filing.png │ │ │ │ ├── film-marker.png │ │ │ │ ├── fireball.png │ │ │ │ ├── flag.png │ │ │ │ ├── flame.png │ │ │ │ ├── flash-off.png │ │ │ │ ├── flash.png │ │ │ │ ├── flask.png │ │ │ │ ├── folder.png │ │ │ │ ├── fork-repo.png │ │ │ │ ├── fork.png │ │ │ │ ├── forward.png │ │ │ │ ├── funnel.png │ │ │ │ ├── game-controller-a.png │ │ │ │ ├── game-controller-b.png │ │ │ │ ├── gear-a.png │ │ │ │ ├── gear-b.png │ │ │ │ ├── grid.png │ │ │ │ ├── hammer.png │ │ │ │ ├── happy.png │ │ │ │ ├── headphone.png │ │ │ │ ├── heart-broken.png │ │ │ │ ├── heart.png │ │ │ │ ├── help-buoy.png │ │ │ │ ├── help-circled.png │ │ │ │ ├── help.png │ │ │ │ ├── home.png │ │ │ │ ├── icecream.png │ │ │ │ ├── icon-social-google-plus-outline.png │ │ │ │ ├── icon-social-google-plus.png │ │ │ │ ├── image.png │ │ │ │ ├── images.png │ │ │ │ ├── information-circled.png │ │ │ │ ├── information.png │ │ │ │ ├── ionic.png │ │ │ │ ├── ios7-alarm-outline.png │ │ │ │ ├── ios7-alarm.png │ │ │ │ ├── ios7-albums-outline.png │ │ │ │ ├── ios7-albums.png │ │ │ │ ├── ios7-americanfootball-outline.png │ │ │ │ ├── ios7-americanfootball.png │ │ │ │ ├── ios7-analytics-outline.png │ │ │ │ ├── ios7-analytics.png │ │ │ │ ├── ios7-arrow-back.png │ │ │ │ ├── ios7-arrow-down.png │ │ │ │ ├── ios7-arrow-forward.png │ │ │ │ ├── ios7-arrow-left.png │ │ │ │ ├── ios7-arrow-right.png │ │ │ │ ├── ios7-arrow-thin-down.png │ │ │ │ ├── ios7-arrow-thin-left.png │ │ │ │ ├── ios7-arrow-thin-right.png │ │ │ │ ├── ios7-arrow-thin-up.png │ │ │ │ ├── ios7-arrow-up.png │ │ │ │ ├── ios7-at-outline.png │ │ │ │ ├── ios7-at.png │ │ │ │ ├── ios7-barcode-outline.png │ │ │ │ ├── ios7-barcode.png │ │ │ │ ├── ios7-baseball-outline.png │ │ │ │ ├── ios7-baseball.png │ │ │ │ ├── ios7-basketball-outline.png │ │ │ │ ├── ios7-basketball.png │ │ │ │ ├── ios7-bell-outline.png │ │ │ │ ├── ios7-bell.png │ │ │ │ ├── ios7-bolt-outline.png │ │ │ │ ├── ios7-bolt.png │ │ │ │ ├── ios7-bookmarks-outline.png │ │ │ │ ├── ios7-bookmarks.png │ │ │ │ ├── ios7-box-outline.png │ │ │ │ ├── ios7-box.png │ │ │ │ ├── ios7-briefcase-outline.png │ │ │ │ ├── ios7-briefcase.png │ │ │ │ ├── ios7-browsers-outline.png │ │ │ │ ├── ios7-browsers.png │ │ │ │ ├── ios7-calculator-outline.png │ │ │ │ ├── ios7-calculator.png │ │ │ │ ├── ios7-calendar-outline.png │ │ │ │ ├── ios7-calendar.png │ │ │ │ ├── ios7-camera-outline.png │ │ │ │ ├── ios7-camera.png │ │ │ │ ├── ios7-cart-outline.png │ │ │ │ ├── ios7-cart.png │ │ │ │ ├── ios7-chatboxes-outline.png │ │ │ │ ├── ios7-chatboxes.png │ │ │ │ ├── ios7-chatbubble-outline.png │ │ │ │ ├── ios7-chatbubble.png │ │ │ │ ├── ios7-checkmark-empty.png │ │ │ │ ├── ios7-checkmark-outline.png │ │ │ │ ├── ios7-checkmark.png │ │ │ │ ├── ios7-circle-filled.png │ │ │ │ ├── ios7-circle-outline.png │ │ │ │ ├── ios7-clock-outline.png │ │ │ │ ├── ios7-clock.png │ │ │ │ ├── ios7-close-empty.png │ │ │ │ ├── ios7-close-outline.png │ │ │ │ ├── ios7-close.png │ │ │ │ ├── ios7-cloud-download-outline.png │ │ │ │ ├── ios7-cloud-download.png │ │ │ │ ├── ios7-cloud-outline.png │ │ │ │ ├── ios7-cloud-upload-outline.png │ │ │ │ ├── ios7-cloud-upload.png │ │ │ │ ├── ios7-cloud.png │ │ │ │ ├── ios7-cloudy-night-outline.png │ │ │ │ ├── ios7-cloudy-night.png │ │ │ │ ├── ios7-cloudy-outline.png │ │ │ │ ├── ios7-cloudy.png │ │ │ │ ├── ios7-cog-outline.png │ │ │ │ ├── ios7-cog.png │ │ │ │ ├── ios7-compose-outline.png │ │ │ │ ├── ios7-compose.png │ │ │ │ ├── ios7-contact-outline.png │ │ │ │ ├── ios7-contact.png │ │ │ │ ├── ios7-copy-outline.png │ │ │ │ ├── ios7-copy.png │ │ │ │ ├── ios7-download-outline.png │ │ │ │ ├── ios7-download.png │ │ │ │ ├── ios7-drag.png │ │ │ │ ├── ios7-email-outline.png │ │ │ │ ├── ios7-email.png │ │ │ │ ├── ios7-expand.png │ │ │ │ ├── ios7-eye-outline.png │ │ │ │ ├── ios7-eye.png │ │ │ │ ├── ios7-fastforward-outline.png │ │ │ │ ├── ios7-fastforward.png │ │ │ │ ├── ios7-filing-outline.png │ │ │ │ ├── ios7-filing.png │ │ │ │ ├── ios7-film-outline.png │ │ │ │ ├── ios7-film.png │ │ │ │ ├── ios7-flag-outline.png │ │ │ │ ├── ios7-flag.png │ │ │ │ ├── ios7-folder-outline.png │ │ │ │ ├── ios7-folder.png │ │ │ │ ├── ios7-football-outline.png │ │ │ │ ├── ios7-football.png │ │ │ │ ├── ios7-gear-outline.png │ │ │ │ ├── ios7-gear.png │ │ │ │ ├── ios7-glasses-outline.png │ │ │ │ ├── ios7-glasses.png │ │ │ │ ├── ios7-heart-outline.png │ │ │ │ ├── ios7-heart.png │ │ │ │ ├── ios7-help-empty.png │ │ │ │ ├── ios7-help-outline.png │ │ │ │ ├── ios7-help.png │ │ │ │ ├── ios7-home-outline.png │ │ │ │ ├── ios7-home.png │ │ │ │ ├── ios7-infinite-outline.png │ │ │ │ ├── ios7-infinite.png │ │ │ │ ├── ios7-information-empty.png │ │ │ │ ├── ios7-information-outline.png │ │ │ │ ├── ios7-information.png │ │ │ │ ├── ios7-ionic-outline.png │ │ │ │ ├── ios7-keypad-outline.png │ │ │ │ ├── ios7-keypad.png │ │ │ │ ├── ios7-lightbulb-outline.png │ │ │ │ ├── ios7-lightbulb.png │ │ │ │ ├── ios7-location-outline.png │ │ │ │ ├── ios7-location.png │ │ │ │ ├── ios7-locked-outline.png │ │ │ │ ├── ios7-locked.png │ │ │ │ ├── ios7-loop-strong.png │ │ │ │ ├── ios7-loop.png │ │ │ │ ├── ios7-medkit-outline.png │ │ │ │ ├── ios7-medkit.png │ │ │ │ ├── ios7-mic-off.png │ │ │ │ ├── ios7-mic-outline.png │ │ │ │ ├── ios7-mic.png │ │ │ │ ├── ios7-minus-empty.png │ │ │ │ ├── ios7-minus-outline.png │ │ │ │ ├── ios7-minus.png │ │ │ │ ├── ios7-monitor-outline.png │ │ │ │ ├── ios7-monitor.png │ │ │ │ ├── ios7-moon-outline.png │ │ │ │ ├── ios7-moon.png │ │ │ │ ├── ios7-more-outline.png │ │ │ │ ├── ios7-more.png │ │ │ │ ├── ios7-musical-note.png │ │ │ │ ├── ios7-musical-notes.png │ │ │ │ ├── ios7-navigate-outline.png │ │ │ │ ├── ios7-navigate.png │ │ │ │ ├── ios7-paper-outline.png │ │ │ │ ├── ios7-paper.png │ │ │ │ ├── ios7-paperplane-outline.png │ │ │ │ ├── ios7-paperplane.png │ │ │ │ ├── ios7-partlysunny-outline.png │ │ │ │ ├── ios7-partlysunny.png │ │ │ │ ├── ios7-pause-outline.png │ │ │ │ ├── ios7-pause.png │ │ │ │ ├── ios7-paw-outline.png │ │ │ │ ├── ios7-paw.png │ │ │ │ ├── ios7-people-outline.png │ │ │ │ ├── ios7-people.png │ │ │ │ ├── ios7-person-outline.png │ │ │ │ ├── ios7-person.png │ │ │ │ ├── ios7-personadd-outline.png │ │ │ │ ├── ios7-personadd.png │ │ │ │ ├── ios7-photos-outline.png │ │ │ │ ├── ios7-photos.png │ │ │ │ ├── ios7-pie-outline.png │ │ │ │ ├── ios7-pie.png │ │ │ │ ├── ios7-play-outline.png │ │ │ │ ├── ios7-play.png │ │ │ │ ├── ios7-plus-empty.png │ │ │ │ ├── ios7-plus-outline.png │ │ │ │ ├── ios7-plus.png │ │ │ │ ├── ios7-pricetag-outline.png │ │ │ │ ├── ios7-pricetag.png │ │ │ │ ├── ios7-pricetags-outline.png │ │ │ │ ├── ios7-pricetags.png │ │ │ │ ├── ios7-printer-outline.png │ │ │ │ ├── ios7-printer.png │ │ │ │ ├── ios7-pulse-strong.png │ │ │ │ ├── ios7-pulse.png │ │ │ │ ├── ios7-rainy-outline.png │ │ │ │ ├── ios7-rainy.png │ │ │ │ ├── ios7-recording-outline.png │ │ │ │ ├── ios7-recording.png │ │ │ │ ├── ios7-redo-outline.png │ │ │ │ ├── ios7-redo.png │ │ │ │ ├── ios7-refresh-empty.png │ │ │ │ ├── ios7-refresh-outline.png │ │ │ │ ├── ios7-refresh.png │ │ │ │ ├── ios7-reload.png │ │ │ │ ├── ios7-reverse-camera-outline.png │ │ │ │ ├── ios7-reverse-camera.png │ │ │ │ ├── ios7-rewind-outline.png │ │ │ │ ├── ios7-rewind.png │ │ │ │ ├── ios7-search-strong.png │ │ │ │ ├── ios7-search.png │ │ │ │ ├── ios7-settings-strong.png │ │ │ │ ├── ios7-settings.png │ │ │ │ ├── ios7-shrink.png │ │ │ │ ├── ios7-skipbackward-outline.png │ │ │ │ ├── ios7-skipbackward.png │ │ │ │ ├── ios7-skipforward-outline.png │ │ │ │ ├── ios7-skipforward.png │ │ │ │ ├── ios7-snowy.png │ │ │ │ ├── ios7-speedometer-outline.png │ │ │ │ ├── ios7-speedometer.png │ │ │ │ ├── ios7-star-half.png │ │ │ │ ├── ios7-star-outline.png │ │ │ │ ├── ios7-star.png │ │ │ │ ├── ios7-stopwatch-outline.png │ │ │ │ ├── ios7-stopwatch.png │ │ │ │ ├── ios7-sunny-outline.png │ │ │ │ ├── ios7-sunny.png │ │ │ │ ├── ios7-telephone-outline.png │ │ │ │ ├── ios7-telephone.png │ │ │ │ ├── ios7-tennisball-outline.png │ │ │ │ ├── ios7-tennisball.png │ │ │ │ ├── ios7-thunderstorm-outline.png │ │ │ │ ├── ios7-thunderstorm.png │ │ │ │ ├── ios7-time-outline.png │ │ │ │ ├── ios7-time.png │ │ │ │ ├── ios7-timer-outline.png │ │ │ │ ├── ios7-timer.png │ │ │ │ ├── ios7-toggle-outline.png │ │ │ │ ├── ios7-toggle.png │ │ │ │ ├── ios7-trash-outline.png │ │ │ │ ├── ios7-trash.png │ │ │ │ ├── ios7-undo-outline.png │ │ │ │ ├── ios7-undo.png │ │ │ │ ├── ios7-unlocked-outline.png │ │ │ │ ├── ios7-unlocked.png │ │ │ │ ├── ios7-upload-outline.png │ │ │ │ ├── ios7-upload.png │ │ │ │ ├── ios7-videocam-outline.png │ │ │ │ ├── ios7-videocam.png │ │ │ │ ├── ios7-volume-high.png │ │ │ │ ├── ios7-volume-low.png │ │ │ │ ├── ios7-wineglass-outline.png │ │ │ │ ├── ios7-wineglass.png │ │ │ │ ├── ios7-world-outline.png │ │ │ │ ├── ios7-world.png │ │ │ │ ├── ipad.png │ │ │ │ ├── iphone.png │ │ │ │ ├── ipod.png │ │ │ │ ├── jet.png │ │ │ │ ├── key.png │ │ │ │ ├── knife.png │ │ │ │ ├── laptop.png │ │ │ │ ├── leaf.png │ │ │ │ ├── levels.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── load-a.png │ │ │ │ ├── load-b.png │ │ │ │ ├── load-c.png │ │ │ │ ├── load-d.png │ │ │ │ ├── location.png │ │ │ │ ├── locked.png │ │ │ │ ├── log-in.png │ │ │ │ ├── log-out.png │ │ │ │ ├── loop.png │ │ │ │ ├── magnet.png │ │ │ │ ├── male.png │ │ │ │ ├── man.png │ │ │ │ ├── map.png │ │ │ │ ├── medkit.png │ │ │ │ ├── merge.png │ │ │ │ ├── mic-a.png │ │ │ │ ├── mic-b.png │ │ │ │ ├── mic-c.png │ │ │ │ ├── minus-circled.png │ │ │ │ ├── minus-round.png │ │ │ │ ├── minus.png │ │ │ │ ├── model-s.png │ │ │ │ ├── monitor.png │ │ │ │ ├── more.png │ │ │ │ ├── mouse.png │ │ │ │ ├── music-note.png │ │ │ │ ├── navicon-round.png │ │ │ │ ├── navicon.png │ │ │ │ ├── navigate.png │ │ │ │ ├── network.png │ │ │ │ ├── no-smoking.png │ │ │ │ ├── nuclear.png │ │ │ │ ├── outlet.png │ │ │ │ ├── paper-airplane.png │ │ │ │ ├── paperclip.png │ │ │ │ ├── pause.png │ │ │ │ ├── person-add.png │ │ │ │ ├── person-stalker.png │ │ │ │ ├── person.png │ │ │ │ ├── pie-graph.png │ │ │ │ ├── pin.png │ │ │ │ ├── pinpoint.png │ │ │ │ ├── pizza.png │ │ │ │ ├── plane.png │ │ │ │ ├── planet.png │ │ │ │ ├── play.png │ │ │ │ ├── playstation.png │ │ │ │ ├── plus-circled.png │ │ │ │ ├── plus-round.png │ │ │ │ ├── plus.png │ │ │ │ ├── podium.png │ │ │ │ ├── pound.png │ │ │ │ ├── power.png │ │ │ │ ├── pricetag.png │ │ │ │ ├── pricetags.png │ │ │ │ ├── printer.png │ │ │ │ ├── pull-request.png │ │ │ │ ├── qr-scanner.png │ │ │ │ ├── quote.png │ │ │ │ ├── radio-waves.png │ │ │ │ ├── record.png │ │ │ │ ├── refresh.png │ │ │ │ ├── reply-all.png │ │ │ │ ├── reply.png │ │ │ │ ├── ribbon-a.png │ │ │ │ ├── ribbon-b.png │ │ │ │ ├── sad.png │ │ │ │ ├── scissors.png │ │ │ │ ├── search.png │ │ │ │ ├── settings.png │ │ │ │ ├── share.png │ │ │ │ ├── shuffle.png │ │ │ │ ├── skip-backward.png │ │ │ │ ├── skip-forward.png │ │ │ │ ├── social-android-outline.png │ │ │ │ ├── social-android.png │ │ │ │ ├── social-apple-outline.png │ │ │ │ ├── social-apple.png │ │ │ │ ├── social-bitcoin-outline.png │ │ │ │ ├── social-bitcoin.png │ │ │ │ ├── social-buffer-outline.png │ │ │ │ ├── social-buffer.png │ │ │ │ ├── social-designernews-outline.png │ │ │ │ ├── social-designernews.png │ │ │ │ ├── social-dribbble-outline.png │ │ │ │ ├── social-dribbble.png │ │ │ │ ├── social-dropbox-outline.png │ │ │ │ ├── social-dropbox.png │ │ │ │ ├── social-facebook-outline.png │ │ │ │ ├── social-facebook.png │ │ │ │ ├── social-foursquare-outline.png │ │ │ │ ├── social-foursquare.png │ │ │ │ ├── social-freebsd-devil.png │ │ │ │ ├── social-github-outline.png │ │ │ │ ├── social-github.png │ │ │ │ ├── social-google-outline.png │ │ │ │ ├── social-google.png │ │ │ │ ├── social-googleplus-outline.png │ │ │ │ ├── social-googleplus.png │ │ │ │ ├── social-hackernews-outline.png │ │ │ │ ├── social-hackernews.png │ │ │ │ ├── social-instagram-outline.png │ │ │ │ ├── social-instagram.png │ │ │ │ ├── social-linkedin-outline.png │ │ │ │ ├── social-linkedin.png │ │ │ │ ├── social-pinterest-outline.png │ │ │ │ ├── social-pinterest.png │ │ │ │ ├── social-reddit-outline.png │ │ │ │ ├── social-reddit.png │ │ │ │ ├── social-rss-outline.png │ │ │ │ ├── social-rss.png │ │ │ │ ├── social-skype-outline.png │ │ │ │ ├── social-skype.png │ │ │ │ ├── social-tumblr-outline.png │ │ │ │ ├── social-tumblr.png │ │ │ │ ├── social-tux.png │ │ │ │ ├── social-twitter-outline.png │ │ │ │ ├── social-twitter.png │ │ │ │ ├── social-usd-outline.png │ │ │ │ ├── social-usd.png │ │ │ │ ├── social-vimeo-outline.png │ │ │ │ ├── social-vimeo.png │ │ │ │ ├── social-windows-outline.png │ │ │ │ ├── social-windows.png │ │ │ │ ├── social-wordpress-outline.png │ │ │ │ ├── social-wordpress.png │ │ │ │ ├── social-yahoo-outline.png │ │ │ │ ├── social-yahoo.png │ │ │ │ ├── social-youtube-outline.png │ │ │ │ ├── social-youtube.png │ │ │ │ ├── speakerphone.png │ │ │ │ ├── speedometer.png │ │ │ │ ├── spoon.png │ │ │ │ ├── star.png │ │ │ │ ├── stats-bars.png │ │ │ │ ├── steam.png │ │ │ │ ├── stop.png │ │ │ │ ├── thermometer.png │ │ │ │ ├── thumbsdown.png │ │ │ │ ├── thumbsup.png │ │ │ │ ├── toggle-filled.png │ │ │ │ ├── toggle.png │ │ │ │ ├── trash-a.png │ │ │ │ ├── trash-b.png │ │ │ │ ├── trophy.png │ │ │ │ ├── umbrella.png │ │ │ │ ├── university.png │ │ │ │ ├── unlocked.png │ │ │ │ ├── upload.png │ │ │ │ ├── usb.png │ │ │ │ ├── videocamera.png │ │ │ │ ├── volume-high.png │ │ │ │ ├── volume-low.png │ │ │ │ ├── volume-medium.png │ │ │ │ ├── volume-mute.png │ │ │ │ ├── wand.png │ │ │ │ ├── waterdrop.png │ │ │ │ ├── wifi.png │ │ │ │ ├── wineglass.png │ │ │ │ ├── woman.png │ │ │ │ ├── wrench.png │ │ │ │ └── xbox.png │ │ ├── sass │ │ │ ├── ie8.scss │ │ │ ├── ie9.scss │ │ │ ├── libs │ │ │ │ ├── _functions.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _skel.scss │ │ │ │ └── _vars.scss │ │ │ └── main.scss │ │ └── src │ │ │ ├── alert-circled.svg │ │ │ ├── alert.svg │ │ │ ├── android-add-circle.svg │ │ │ ├── android-add.svg │ │ │ ├── android-alarm-clock.svg │ │ │ ├── android-alert.svg │ │ │ ├── android-apps.svg │ │ │ ├── android-archive.svg │ │ │ ├── android-arrow-back.svg │ │ │ ├── android-arrow-down.svg │ │ │ ├── android-arrow-dropdown-circle.svg │ │ │ ├── android-arrow-dropdown.svg │ │ │ ├── android-arrow-dropleft-circle.svg │ │ │ ├── android-arrow-dropleft.svg │ │ │ ├── android-arrow-dropright-circle.svg │ │ │ ├── android-arrow-dropright.svg │ │ │ ├── android-arrow-dropup-circle.svg │ │ │ ├── android-arrow-dropup.svg │ │ │ ├── android-arrow-forward.svg │ │ │ ├── android-arrow-up.svg │ │ │ ├── android-attach.svg │ │ │ ├── android-bar.svg │ │ │ ├── android-bicycle.svg │ │ │ ├── android-boat.svg │ │ │ ├── android-bookmark.svg │ │ │ ├── android-bulb.svg │ │ │ ├── android-bus.svg │ │ │ ├── android-calendar.svg │ │ │ ├── android-call.svg │ │ │ ├── android-camera.svg │ │ │ ├── android-cancel.svg │ │ │ ├── android-car.svg │ │ │ ├── android-cart.svg │ │ │ ├── android-chat.svg │ │ │ ├── android-checkbox-blank.svg │ │ │ ├── android-checkbox-outline-blank.svg │ │ │ ├── android-checkbox-outline.svg │ │ │ ├── android-checkbox.svg │ │ │ ├── android-checkmark-circle.svg │ │ │ ├── android-clipboard.svg │ │ │ ├── android-close.svg │ │ │ ├── android-cloud-circle.svg │ │ │ ├── android-cloud-done.svg │ │ │ ├── android-cloud-outline.svg │ │ │ ├── android-cloud.svg │ │ │ ├── android-color-palette.svg │ │ │ ├── android-compass.svg │ │ │ ├── android-contact.svg │ │ │ ├── android-contacts.svg │ │ │ ├── android-contract.svg │ │ │ ├── android-create.svg │ │ │ ├── android-delete.svg │ │ │ ├── android-desktop.svg │ │ │ ├── android-document.svg │ │ │ ├── android-done-all.svg │ │ │ ├── android-done.svg │ │ │ ├── android-download.svg │ │ │ ├── android-drafts.svg │ │ │ ├── android-exit.svg │ │ │ ├── android-expand.svg │ │ │ ├── android-favorite-outline.svg │ │ │ ├── android-favorite.svg │ │ │ ├── android-film.svg │ │ │ ├── android-folder-open.svg │ │ │ ├── android-folder.svg │ │ │ ├── android-funnel.svg │ │ │ ├── android-globe.svg │ │ │ ├── android-hand.svg │ │ │ ├── android-hangout.svg │ │ │ ├── android-happy.svg │ │ │ ├── android-home.svg │ │ │ ├── android-image.svg │ │ │ ├── android-laptop.svg │ │ │ ├── android-list.svg │ │ │ ├── android-locate.svg │ │ │ ├── android-lock.svg │ │ │ ├── android-mail.svg │ │ │ ├── android-map.svg │ │ │ ├── android-menu.svg │ │ │ ├── android-microphone-off.svg │ │ │ ├── android-microphone.svg │ │ │ ├── android-more-horizontal.svg │ │ │ ├── android-more-vertical.svg │ │ │ ├── android-navigate.svg │ │ │ ├── android-notifications-none.svg │ │ │ ├── android-notifications-off.svg │ │ │ ├── android-notifications.svg │ │ │ ├── android-open.svg │ │ │ ├── android-options.svg │ │ │ ├── android-people.svg │ │ │ ├── android-person-add.svg │ │ │ ├── android-person.svg │ │ │ ├── android-phone-landscape.svg │ │ │ ├── android-phone-portrait.svg │ │ │ ├── android-pin.svg │ │ │ ├── android-plane.svg │ │ │ ├── android-playstore.svg │ │ │ ├── android-print.svg │ │ │ ├── android-radio-button-off.svg │ │ │ ├── android-radio-button-on.svg │ │ │ ├── android-refresh.svg │ │ │ ├── android-remove-circle.svg │ │ │ ├── android-remove.svg │ │ │ ├── android-restaurant.svg │ │ │ ├── android-sad.svg │ │ │ ├── android-search.svg │ │ │ ├── android-send.svg │ │ │ ├── android-settings.svg │ │ │ ├── android-share-alt.svg │ │ │ ├── android-share.svg │ │ │ ├── android-star-half.svg │ │ │ ├── android-star-outline.svg │ │ │ ├── android-star.svg │ │ │ ├── android-stopwatch.svg │ │ │ ├── android-subway.svg │ │ │ ├── android-sunny.svg │ │ │ ├── android-sync.svg │ │ │ ├── android-textsms.svg │ │ │ ├── android-time.svg │ │ │ ├── android-train.svg │ │ │ ├── android-unlock.svg │ │ │ ├── android-upload.svg │ │ │ ├── android-volume-down.svg │ │ │ ├── android-volume-mute.svg │ │ │ ├── android-volume-off.svg │ │ │ ├── android-volume-up.svg │ │ │ ├── android-walk.svg │ │ │ ├── android-warning.svg │ │ │ ├── android-watch.svg │ │ │ ├── android-wifi.svg │ │ │ ├── aperture.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-down-a.svg │ │ │ ├── arrow-down-b.svg │ │ │ ├── arrow-down-c.svg │ │ │ ├── arrow-expand.svg │ │ │ ├── arrow-graph-down-left.svg │ │ │ ├── arrow-graph-down-right.svg │ │ │ ├── arrow-graph-up-left.svg │ │ │ ├── arrow-graph-up-right.svg │ │ │ ├── arrow-left-a.svg │ │ │ ├── arrow-left-b.svg │ │ │ ├── arrow-left-c.svg │ │ │ ├── arrow-move.svg │ │ │ ├── arrow-resize.svg │ │ │ ├── arrow-return-left.svg │ │ │ ├── arrow-return-right.svg │ │ │ ├── arrow-right-a.svg │ │ │ ├── arrow-right-b.svg │ │ │ ├── arrow-right-c.svg │ │ │ ├── arrow-shrink.svg │ │ │ ├── arrow-swap.svg │ │ │ ├── arrow-up-a.svg │ │ │ ├── arrow-up-b.svg │ │ │ ├── arrow-up-c.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── backspace-outline.svg │ │ │ ├── backspace.svg │ │ │ ├── bag.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-low.svg │ │ │ ├── beaker.svg │ │ │ ├── beer.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bonfire.svg │ │ │ ├── bookmark.svg │ │ │ ├── bowtie.svg │ │ │ ├── briefcase.svg │ │ │ ├── bug.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── card.svg │ │ │ ├── cash.svg │ │ │ ├── chatbox-working.svg │ │ │ ├── chatbox.svg │ │ │ ├── chatboxes.svg │ │ │ ├── chatbubble-working.svg │ │ │ ├── chatbubble.svg │ │ │ ├── chatbubbles.svg │ │ │ ├── checkmark-circled.svg │ │ │ ├── checkmark-round.svg │ │ │ ├── checkmark.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── close-circled.svg │ │ │ ├── close-round.svg │ │ │ ├── close.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud.svg │ │ │ ├── code-download.svg │ │ │ ├── code-working.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── compass.svg │ │ │ ├── compose.svg │ │ │ ├── connection-bars.svg │ │ │ ├── contrast.svg │ │ │ ├── crop.svg │ │ │ ├── cube.svg │ │ │ ├── disc.svg │ │ │ ├── document-text.svg │ │ │ ├── document.svg │ │ │ ├── drag.svg │ │ │ ├── earth.svg │ │ │ ├── easel.svg │ │ │ ├── edit.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── email-unread.svg │ │ │ ├── email.svg │ │ │ ├── erlenmeyer-flask-bubbles.svg │ │ │ ├── erlenmeyer-flask.svg │ │ │ ├── eye-disabled.svg │ │ │ ├── eye.svg │ │ │ ├── female.svg │ │ │ ├── filing.svg │ │ │ ├── film-marker.svg │ │ │ ├── fireball.svg │ │ │ ├── flag.svg │ │ │ ├── flame.svg │ │ │ ├── flash-off.svg │ │ │ ├── flash.svg │ │ │ ├── folder.svg │ │ │ ├── fork-repo.svg │ │ │ ├── fork.svg │ │ │ ├── forward.svg │ │ │ ├── funnel.svg │ │ │ ├── gear-a.svg │ │ │ ├── gear-b.svg │ │ │ ├── grid.svg │ │ │ ├── hammer.svg │ │ │ ├── happy-outline.svg │ │ │ ├── happy.svg │ │ │ ├── headphone.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── help-buoy.svg │ │ │ ├── help-circled.svg │ │ │ ├── help.svg │ │ │ ├── home.svg │ │ │ ├── icecream.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── information-circled.svg │ │ │ ├── information.svg │ │ │ ├── ionic.svg │ │ │ ├── ios-alarm-outline.svg │ │ │ ├── ios-alarm.svg │ │ │ ├── ios-albums-outline.svg │ │ │ ├── ios-albums.svg │ │ │ ├── ios-americanfootball-outline.svg │ │ │ ├── ios-americanfootball.svg │ │ │ ├── ios-analytics-outline.svg │ │ │ ├── ios-analytics.svg │ │ │ ├── ios-arrow-back.svg │ │ │ ├── ios-arrow-down.svg │ │ │ ├── ios-arrow-forward.svg │ │ │ ├── ios-arrow-left.svg │ │ │ ├── ios-arrow-right.svg │ │ │ ├── ios-arrow-thin-down.svg │ │ │ ├── ios-arrow-thin-left.svg │ │ │ ├── ios-arrow-thin-right.svg │ │ │ ├── ios-arrow-thin-up.svg │ │ │ ├── ios-arrow-up.svg │ │ │ ├── ios-at-outline.svg │ │ │ ├── ios-at.svg │ │ │ ├── ios-barcode-outline.svg │ │ │ ├── ios-barcode.svg │ │ │ ├── ios-baseball-outline.svg │ │ │ ├── ios-baseball.svg │ │ │ ├── ios-basketball-outline.svg │ │ │ ├── ios-basketball.svg │ │ │ ├── ios-bell-outline.svg │ │ │ ├── ios-bell.svg │ │ │ ├── ios-body-outline.svg │ │ │ ├── ios-body.svg │ │ │ ├── ios-bolt-outline.svg │ │ │ ├── ios-bolt.svg │ │ │ ├── ios-book-outline.svg │ │ │ ├── ios-book.svg │ │ │ ├── ios-bookmarks-outline.svg │ │ │ ├── ios-bookmarks.svg │ │ │ ├── ios-box-outline.svg │ │ │ ├── ios-box.svg │ │ │ ├── ios-briefcase-outline.svg │ │ │ ├── ios-briefcase.svg │ │ │ ├── ios-browsers-outline.svg │ │ │ ├── ios-browsers.svg │ │ │ ├── ios-calculator-outline.svg │ │ │ ├── ios-calculator.svg │ │ │ ├── ios-calendar-outline.svg │ │ │ ├── ios-calendar.svg │ │ │ ├── ios-camera-outline.svg │ │ │ ├── ios-camera.svg │ │ │ ├── ios-cart-outline.svg │ │ │ ├── ios-cart.svg │ │ │ ├── ios-chatboxes-outline.svg │ │ │ ├── ios-chatboxes.svg │ │ │ ├── ios-chatbubble-outline.svg │ │ │ ├── ios-chatbubble.svg │ │ │ ├── ios-checkmark-empty.svg │ │ │ ├── ios-checkmark-outline.svg │ │ │ ├── ios-checkmark.svg │ │ │ ├── ios-circle-filled.svg │ │ │ ├── ios-circle-outline.svg │ │ │ ├── ios-clock-outline.svg │ │ │ ├── ios-clock.svg │ │ │ ├── ios-close-empty.svg │ │ │ ├── ios-close-outline.svg │ │ │ ├── ios-close.svg │ │ │ ├── ios-cloud-download-outline.svg │ │ │ ├── ios-cloud-download.svg │ │ │ ├── ios-cloud-outline.svg │ │ │ ├── ios-cloud-upload-outline.svg │ │ │ ├── ios-cloud-upload.svg │ │ │ ├── ios-cloud.svg │ │ │ ├── ios-cloudy-night-outline.svg │ │ │ ├── ios-cloudy-night.svg │ │ │ ├── ios-cloudy-outline.svg │ │ │ ├── ios-cloudy.svg │ │ │ ├── ios-cog-outline.svg │ │ │ ├── ios-cog.svg │ │ │ ├── ios-color-filter-outline.svg │ │ │ ├── ios-color-filter.svg │ │ │ ├── ios-color-wand-outline.svg │ │ │ ├── ios-color-wand.svg │ │ │ ├── ios-compose-outline.svg │ │ │ ├── ios-compose.svg │ │ │ ├── ios-contact-outline.svg │ │ │ ├── ios-contact.svg │ │ │ ├── ios-copy-outline.svg │ │ │ ├── ios-copy.svg │ │ │ ├── ios-crop-strong.svg │ │ │ ├── ios-crop.svg │ │ │ ├── ios-download-outline.svg │ │ │ ├── ios-download.svg │ │ │ ├── ios-drag.svg │ │ │ ├── ios-email-outline.svg │ │ │ ├── ios-email.svg │ │ │ ├── ios-eye-outline.svg │ │ │ ├── ios-eye.svg │ │ │ ├── ios-fastforward-outline.svg │ │ │ ├── ios-fastforward.svg │ │ │ ├── ios-filing-outline.svg │ │ │ ├── ios-filing.svg │ │ │ ├── ios-film-outline.svg │ │ │ ├── ios-film.svg │ │ │ ├── ios-flag-outline.svg │ │ │ ├── ios-flag.svg │ │ │ ├── ios-flame-outline.svg │ │ │ ├── ios-flame.svg │ │ │ ├── ios-flask-outline.svg │ │ │ ├── ios-flask.svg │ │ │ ├── ios-flower-outline.svg │ │ │ ├── ios-flower.svg │ │ │ ├── ios-folder-outline.svg │ │ │ ├── ios-folder.svg │ │ │ ├── ios-football-outline.svg │ │ │ ├── ios-football.svg │ │ │ ├── ios-game-controller-a-outline.svg │ │ │ ├── ios-game-controller-a.svg │ │ │ ├── ios-game-controller-b-outline.svg │ │ │ ├── ios-game-controller-b.svg │ │ │ ├── ios-gear-outline.svg │ │ │ ├── ios-gear.svg │ │ │ ├── ios-glasses-outline.svg │ │ │ ├── ios-glasses.svg │ │ │ ├── ios-grid-view-outline.svg │ │ │ ├── ios-grid-view.svg │ │ │ ├── ios-heart-outline.svg │ │ │ ├── ios-heart.svg │ │ │ ├── ios-help-empty.svg │ │ │ ├── ios-help-outline.svg │ │ │ ├── ios-help.svg │ │ │ ├── ios-home-outline.svg │ │ │ ├── ios-home.svg │ │ │ ├── ios-infinite-outline.svg │ │ │ ├── ios-infinite.svg │ │ │ ├── ios-information-empty.svg │ │ │ ├── ios-information-outline.svg │ │ │ ├── ios-information.svg │ │ │ ├── ios-ionic-outline.svg │ │ │ ├── ios-keypad-outline.svg │ │ │ ├── ios-keypad.svg │ │ │ ├── ios-lightbulb-outline.svg │ │ │ ├── ios-lightbulb.svg │ │ │ ├── ios-list-outline.svg │ │ │ ├── ios-list.svg │ │ │ ├── ios-location-outline.svg │ │ │ ├── ios-location.svg │ │ │ ├── ios-locked-outline.svg │ │ │ ├── ios-locked.svg │ │ │ ├── ios-loop-strong.svg │ │ │ ├── ios-loop.svg │ │ │ ├── ios-medical-outline.svg │ │ │ ├── ios-medical.svg │ │ │ ├── ios-medkit-outline.svg │ │ │ ├── ios-medkit.svg │ │ │ ├── ios-mic-off.svg │ │ │ ├── ios-mic-outline.svg │ │ │ ├── ios-mic.svg │ │ │ ├── ios-minus-empty.svg │ │ │ ├── ios-minus-outline.svg │ │ │ ├── ios-minus.svg │ │ │ ├── ios-monitor-outline.svg │ │ │ ├── ios-monitor.svg │ │ │ ├── ios-moon-outline.svg │ │ │ ├── ios-moon.svg │ │ │ ├── ios-more-outline.svg │ │ │ ├── ios-more.svg │ │ │ ├── ios-musical-note.svg │ │ │ ├── ios-musical-notes.svg │ │ │ ├── ios-navigate-outline.svg │ │ │ ├── ios-navigate.svg │ │ │ ├── ios-nutrition-outline.svg │ │ │ ├── ios-nutrition.svg │ │ │ ├── ios-paper-outline.svg │ │ │ ├── ios-paper.svg │ │ │ ├── ios-paperplane-outline.svg │ │ │ ├── ios-paperplane.svg │ │ │ ├── ios-partlysunny-outline.svg │ │ │ ├── ios-partlysunny.svg │ │ │ ├── ios-pause-outline.svg │ │ │ ├── ios-pause.svg │ │ │ ├── ios-paw-outline.svg │ │ │ ├── ios-paw.svg │ │ │ ├── ios-people-outline.svg │ │ │ ├── ios-people.svg │ │ │ ├── ios-person-outline.svg │ │ │ ├── ios-person.svg │ │ │ ├── ios-personadd-outline.svg │ │ │ ├── ios-personadd.svg │ │ │ ├── ios-photos-outline.svg │ │ │ ├── ios-photos.svg │ │ │ ├── ios-pie-outline.svg │ │ │ ├── ios-pie.svg │ │ │ ├── ios-pint-outline.svg │ │ │ ├── ios-pint.svg │ │ │ ├── ios-play-outline.svg │ │ │ ├── ios-play.svg │ │ │ ├── ios-plus-empty.svg │ │ │ ├── ios-plus-outline.svg │ │ │ ├── ios-plus.svg │ │ │ ├── ios-pricetag-outline.svg │ │ │ ├── ios-pricetag.svg │ │ │ ├── ios-pricetags-outline.svg │ │ │ ├── ios-pricetags.svg │ │ │ ├── ios-printer-outline.svg │ │ │ ├── ios-printer.svg │ │ │ ├── ios-pulse-strong.svg │ │ │ ├── ios-pulse.svg │ │ │ ├── ios-rainy-outline.svg │ │ │ ├── ios-rainy.svg │ │ │ ├── ios-recording-outline.svg │ │ │ ├── ios-recording.svg │ │ │ ├── ios-redo-outline.svg │ │ │ ├── ios-redo.svg │ │ │ ├── ios-refresh-empty.svg │ │ │ ├── ios-refresh-outline.svg │ │ │ ├── ios-refresh.svg │ │ │ ├── ios-reload.svg │ │ │ ├── ios-reverse-camera-outline.svg │ │ │ ├── ios-reverse-camera.svg │ │ │ ├── ios-rewind-outline.svg │ │ │ ├── ios-rewind.svg │ │ │ ├── ios-rose-outline.svg │ │ │ ├── ios-rose.svg │ │ │ ├── ios-search-strong.svg │ │ │ ├── ios-search.svg │ │ │ ├── ios-settings-strong.svg │ │ │ ├── ios-settings.svg │ │ │ ├── ios-shuffle-strong.svg │ │ │ ├── ios-shuffle.svg │ │ │ ├── ios-skipbackward-outline.svg │ │ │ ├── ios-skipbackward.svg │ │ │ ├── ios-skipforward-outline.svg │ │ │ ├── ios-skipforward.svg │ │ │ ├── ios-snowy.svg │ │ │ ├── ios-speedometer-outline.svg │ │ │ ├── ios-speedometer.svg │ │ │ ├── ios-star-half.svg │ │ │ ├── ios-star-outline.svg │ │ │ ├── ios-star.svg │ │ │ ├── ios-stopwatch-outline.svg │ │ │ ├── ios-stopwatch.svg │ │ │ ├── ios-sunny-outline.svg │ │ │ ├── ios-sunny.svg │ │ │ ├── ios-telephone-outline.svg │ │ │ ├── ios-telephone.svg │ │ │ ├── ios-tennisball-outline.svg │ │ │ ├── ios-tennisball.svg │ │ │ ├── ios-thunderstorm-outline.svg │ │ │ ├── ios-thunderstorm.svg │ │ │ ├── ios-time-outline.svg │ │ │ ├── ios-time.svg │ │ │ ├── ios-timer-outline.svg │ │ │ ├── ios-timer.svg │ │ │ ├── ios-toggle-outline.svg │ │ │ ├── ios-toggle.svg │ │ │ ├── ios-trash-outline.svg │ │ │ ├── ios-trash.svg │ │ │ ├── ios-undo-outline.svg │ │ │ ├── ios-undo.svg │ │ │ ├── ios-unlocked-outline.svg │ │ │ ├── ios-unlocked.svg │ │ │ ├── ios-upload-outline.svg │ │ │ ├── ios-upload.svg │ │ │ ├── ios-videocam-outline.svg │ │ │ ├── ios-videocam.svg │ │ │ ├── ios-volume-high.svg │ │ │ ├── ios-volume-low.svg │ │ │ ├── ios-wineglass-outline.svg │ │ │ ├── ios-wineglass.svg │ │ │ ├── ios-world-outline.svg │ │ │ ├── ios-world.svg │ │ │ ├── ipad.svg │ │ │ ├── iphone.svg │ │ │ ├── ipod.svg │ │ │ ├── jet.svg │ │ │ ├── key.svg │ │ │ ├── knife.svg │ │ │ ├── laptop.svg │ │ │ ├── leaf.svg │ │ │ ├── levels.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link.svg │ │ │ ├── load-a.svg │ │ │ ├── load-b.svg │ │ │ ├── load-c.svg │ │ │ ├── load-d.svg │ │ │ ├── location.svg │ │ │ ├── lock-combination.svg │ │ │ ├── locked.svg │ │ │ ├── log-in.svg │ │ │ ├── log-out.svg │ │ │ ├── loop.svg │ │ │ ├── magnet.svg │ │ │ ├── male.svg │ │ │ ├── man.svg │ │ │ ├── map.svg │ │ │ ├── medkit.svg │ │ │ ├── merge.svg │ │ │ ├── mic-a.svg │ │ │ ├── mic-b.svg │ │ │ ├── mic-c.svg │ │ │ ├── minus-circled.svg │ │ │ ├── minus-round.svg │ │ │ ├── minus.svg │ │ │ ├── model-s.svg │ │ │ ├── monitor.svg │ │ │ ├── more.svg │ │ │ ├── mouse.svg │ │ │ ├── music-note.svg │ │ │ ├── navicon-round.svg │ │ │ ├── navicon.svg │ │ │ ├── navigate.svg │ │ │ ├── network.svg │ │ │ ├── no-smoking.svg │ │ │ ├── nuclear.svg │ │ │ ├── outlet.svg │ │ │ ├── paintbrush.svg │ │ │ ├── paintbucket.svg │ │ │ ├── paper-airplane.svg │ │ │ ├── paperclip.svg │ │ │ ├── pause.svg │ │ │ ├── person-add.svg │ │ │ ├── person-stalker.svg │ │ │ ├── person.svg │ │ │ ├── pie-graph.svg │ │ │ ├── pin.svg │ │ │ ├── pinpoint.svg │ │ │ ├── pizza.svg │ │ │ ├── plane.svg │ │ │ ├── planet.svg │ │ │ ├── play.svg │ │ │ ├── playstation.svg │ │ │ ├── plus-circled.svg │ │ │ ├── plus-round.svg │ │ │ ├── plus.svg │ │ │ ├── podium.svg │ │ │ ├── pound.svg │ │ │ ├── power.svg │ │ │ ├── pricetag.svg │ │ │ ├── pricetags.svg │ │ │ ├── printer.svg │ │ │ ├── pull-request.svg │ │ │ ├── qr-scanner.svg │ │ │ ├── quote.svg │ │ │ ├── radio-waves.svg │ │ │ ├── record.svg │ │ │ ├── refresh.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── ribbon-a.svg │ │ │ ├── ribbon-b.svg │ │ │ ├── sad-outline.svg │ │ │ ├── sad.svg │ │ │ ├── scissors.svg │ │ │ ├── search.svg │ │ │ ├── settings.svg │ │ │ ├── share.svg │ │ │ ├── shuffle.svg │ │ │ ├── skip-backward.svg │ │ │ ├── skip-forward.svg │ │ │ ├── social-android-outline.svg │ │ │ ├── social-android.svg │ │ │ ├── social-angular-outline.svg │ │ │ ├── social-angular.svg │ │ │ ├── social-apple-outline.svg │ │ │ ├── social-apple.svg │ │ │ ├── social-bitcoin-outline.svg │ │ │ ├── social-bitcoin.svg │ │ │ ├── social-buffer-outline.svg │ │ │ ├── social-buffer.svg │ │ │ ├── social-chrome-outline.svg │ │ │ ├── social-chrome.svg │ │ │ ├── social-codepen-outline.svg │ │ │ ├── social-codepen.svg │ │ │ ├── social-css3-outline.svg │ │ │ ├── social-css3.svg │ │ │ ├── social-designernews-outline.svg │ │ │ ├── social-designernews.svg │ │ │ ├── social-dribbble-outline.svg │ │ │ ├── social-dribbble.svg │ │ │ ├── social-dropbox-outline.svg │ │ │ ├── social-dropbox.svg │ │ │ ├── social-euro-outline.svg │ │ │ ├── social-euro.svg │ │ │ ├── social-facebook-outline.svg │ │ │ ├── social-facebook.svg │ │ │ ├── social-foursquare-outline.svg │ │ │ ├── social-foursquare.svg │ │ │ ├── social-freebsd-devil.svg │ │ │ ├── social-github-outline.svg │ │ │ ├── social-github.svg │ │ │ ├── social-google-outline.svg │ │ │ ├── social-google.svg │ │ │ ├── social-googleplus-outline.svg │ │ │ ├── social-googleplus.svg │ │ │ ├── social-hackernews-outline.svg │ │ │ ├── social-hackernews.svg │ │ │ ├── social-html5-outline.svg │ │ │ ├── social-html5.svg │ │ │ ├── social-instagram-outline.svg │ │ │ ├── social-instagram.svg │ │ │ ├── social-javascript-outline.svg │ │ │ ├── social-javascript.svg │ │ │ ├── social-linkedin-outline.svg │ │ │ ├── social-linkedin.svg │ │ │ ├── social-markdown.svg │ │ │ ├── social-nodejs.svg │ │ │ ├── social-octocat.svg │ │ │ ├── social-pinterest-outline.svg │ │ │ ├── social-pinterest.svg │ │ │ ├── social-python.svg │ │ │ ├── social-reddit-outline.svg │ │ │ ├── social-reddit.svg │ │ │ ├── social-rss-outline.svg │ │ │ ├── social-rss.svg │ │ │ ├── social-sass.svg │ │ │ ├── social-skype-outline.svg │ │ │ ├── social-skype.svg │ │ │ ├── social-snapchat-outline.svg │ │ │ ├── social-snapchat.svg │ │ │ ├── social-tumblr-outline.svg │ │ │ ├── social-tumblr.svg │ │ │ ├── social-tux.svg │ │ │ ├── social-twitch-outline.svg │ │ │ ├── social-twitch.svg │ │ │ ├── social-twitter-outline.svg │ │ │ ├── social-twitter.svg │ │ │ ├── social-usd-outline.svg │ │ │ ├── social-usd.svg │ │ │ ├── social-vimeo-outline.svg │ │ │ ├── social-vimeo.svg │ │ │ ├── social-whatsapp-outline.svg │ │ │ ├── social-whatsapp.svg │ │ │ ├── social-windows-outline.svg │ │ │ ├── social-windows.svg │ │ │ ├── social-wordpress-outline.svg │ │ │ ├── social-wordpress.svg │ │ │ ├── social-yahoo-outline.svg │ │ │ ├── social-yahoo.svg │ │ │ ├── social-yen-outline.svg │ │ │ ├── social-yen.svg │ │ │ ├── social-youtube-outline.svg │ │ │ ├── social-youtube.svg │ │ │ ├── soup-can-outline.svg │ │ │ ├── soup-can.svg │ │ │ ├── speakerphone.svg │ │ │ ├── speedometer.svg │ │ │ ├── spoon.svg │ │ │ ├── star.svg │ │ │ ├── stats-bars.svg │ │ │ ├── steam.svg │ │ │ ├── stop.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbsdown.svg │ │ │ ├── thumbsup.svg │ │ │ ├── toggle-filled.svg │ │ │ ├── toggle.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-a.svg │ │ │ ├── trash-b.svg │ │ │ ├── trophy.svg │ │ │ ├── tshirt-outline.svg │ │ │ ├── tshirt.svg │ │ │ ├── umbrella.svg │ │ │ ├── university.svg │ │ │ ├── unlocked.svg │ │ │ ├── upload.svg │ │ │ ├── usb.svg │ │ │ ├── videocamera.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-medium.svg │ │ │ ├── volume-mute.svg │ │ │ ├── wand.svg │ │ │ ├── waterdrop.svg │ │ │ ├── wifi.svg │ │ │ ├── wineglass.svg │ │ │ ├── woman.svg │ │ │ ├── wrench.svg │ │ │ └── xbox.svg │ └── vendor │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── chart.js │ │ ├── Chart.bundle.js │ │ ├── Chart.bundle.min.js │ │ ├── Chart.js │ │ └── Chart.min.js │ │ ├── datatables │ │ ├── dataTables.bootstrap4.css │ │ ├── dataTables.bootstrap4.js │ │ └── jquery.dataTables.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── jquery-easing │ │ ├── jquery.easing.compatibility.js │ │ ├── jquery.easing.js │ │ └── jquery.easing.min.js │ │ └── jquery │ │ ├── jquery.js │ │ └── jquery.min.js ├── templates │ ├── abs.jpg │ ├── humidity1.html │ ├── humidity2.html │ ├── leef.jpg │ ├── leef1.jpg │ ├── pie1.html │ ├── pie2.html │ ├── plant1-2.html │ ├── plant1.html │ ├── plant2.html │ ├── plant_st.png │ ├── temperature1.html │ ├── temperature2.html │ └── userdashboard.html ├── tests.py ├── urls.py ├── urls.pyc ├── views.py └── views.pyc ├── rasberry.py └── sensors ├── __init__.py ├── __init__.pyc ├── __pycache__ ├── __init__.cpython-36.pyc ├── admin.cpython-36.pyc ├── apps.cpython-36.pyc ├── models.cpython-36.pyc ├── urls.cpython-36.pyc └── views.cpython-36.pyc ├── admin.py ├── admin.pyc ├── apps.py ├── apps.pyc ├── migrations ├── 0001_initial.py ├── 0001_initial.pyc ├── 0002_auto_20171006_0500.py ├── 0002_auto_20171006_0500.pyc ├── 0003_auto_20171006_2026.py ├── 0003_auto_20171006_2026.pyc ├── 0004_auto_20171006_2039.py ├── 0004_auto_20171006_2039.pyc ├── 0005_actuator.py ├── 0005_actuator.pyc ├── 0006_auto_20171011_0805.py ├── 0006_auto_20171011_0805.pyc ├── 0007_auto_20171011_1838.py ├── 0007_auto_20171011_1838.pyc ├── 0008_auto_20171029_1020.py ├── 0008_auto_20171029_1020.pyc ├── __init__.py ├── __init__.pyc └── __pycache__ │ ├── 0001_initial.cpython-36.pyc │ ├── 0002_auto_20171006_0500.cpython-36.pyc │ ├── 0003_auto_20171006_2026.cpython-36.pyc │ ├── 0004_auto_20171006_2039.cpython-36.pyc │ ├── 0005_actuator.cpython-36.pyc │ ├── 0006_auto_20171011_0805.cpython-36.pyc │ ├── 0007_auto_20171011_1838.cpython-36.pyc │ ├── 0008_auto_20171029_1020.cpython-36.pyc │ └── __init__.cpython-36.pyc ├── models.py ├── models.pyc ├── tests.py ├── urls.py ├── urls.pyc ├── views.py └── views.pyc /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/README.md -------------------------------------------------------------------------------- /admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/css/base.css -------------------------------------------------------------------------------- /admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/css/changelists.css -------------------------------------------------------------------------------- /admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/css/dashboard.css -------------------------------------------------------------------------------- /admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/css/fonts.css -------------------------------------------------------------------------------- /admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/css/forms.css -------------------------------------------------------------------------------- /admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/css/login.css -------------------------------------------------------------------------------- /admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/css/rtl.css -------------------------------------------------------------------------------- /admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/css/widgets.css -------------------------------------------------------------------------------- /admin/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/fonts/LICENSE.txt -------------------------------------------------------------------------------- /admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/fonts/README.txt -------------------------------------------------------------------------------- /admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/LICENSE -------------------------------------------------------------------------------- /admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/README.txt -------------------------------------------------------------------------------- /admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/icon-no.svg -------------------------------------------------------------------------------- /admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/icon-unknown-alt.svg -------------------------------------------------------------------------------- /admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/search.svg -------------------------------------------------------------------------------- /admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/SelectBox.js -------------------------------------------------------------------------------- /admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/actions.js -------------------------------------------------------------------------------- /admin/js/actions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/actions.min.js -------------------------------------------------------------------------------- /admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/calendar.js -------------------------------------------------------------------------------- /admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/cancel.js -------------------------------------------------------------------------------- /admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/change_form.js -------------------------------------------------------------------------------- /admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/collapse.js -------------------------------------------------------------------------------- /admin/js/collapse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/collapse.min.js -------------------------------------------------------------------------------- /admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/core.js -------------------------------------------------------------------------------- /admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/inlines.js -------------------------------------------------------------------------------- /admin/js/inlines.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/inlines.min.js -------------------------------------------------------------------------------- /admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/jquery.init.js -------------------------------------------------------------------------------- /admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/popup_response.js -------------------------------------------------------------------------------- /admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/prepopulate.js -------------------------------------------------------------------------------- /admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/prepopulate.min.js -------------------------------------------------------------------------------- /admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /admin/js/timeparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/timeparse.js -------------------------------------------------------------------------------- /admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/admin/js/urlify.js -------------------------------------------------------------------------------- /alpha/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alpha/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/alpha/__init__.pyc -------------------------------------------------------------------------------- /alpha/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/alpha/settings.py -------------------------------------------------------------------------------- /alpha/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/alpha/settings.pyc -------------------------------------------------------------------------------- /alpha/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/alpha/urls.py -------------------------------------------------------------------------------- /alpha/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/alpha/urls.pyc -------------------------------------------------------------------------------- /alpha/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/alpha/wsgi.py -------------------------------------------------------------------------------- /alpha/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/alpha/wsgi.pyc -------------------------------------------------------------------------------- /auth_part/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/README.txt -------------------------------------------------------------------------------- /auth_part/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth_part/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/__init__.pyc -------------------------------------------------------------------------------- /auth_part/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | -------------------------------------------------------------------------------- /auth_part/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/admin.pyc -------------------------------------------------------------------------------- /auth_part/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/apps.py -------------------------------------------------------------------------------- /auth_part/apps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/apps.pyc -------------------------------------------------------------------------------- /auth_part/auth_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/auth_dao.py -------------------------------------------------------------------------------- /auth_part/images/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/images/mail.svg -------------------------------------------------------------------------------- /auth_part/images/mail1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/images/mail1.svg -------------------------------------------------------------------------------- /auth_part/index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/index1.html -------------------------------------------------------------------------------- /auth_part/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/license.txt -------------------------------------------------------------------------------- /auth_part/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth_part/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/models.py -------------------------------------------------------------------------------- /auth_part/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/models.pyc -------------------------------------------------------------------------------- /auth_part/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/scss/style.scss -------------------------------------------------------------------------------- /auth_part/templates/css/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/templates/css/1.jpg -------------------------------------------------------------------------------- /auth_part/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/templates/index.html -------------------------------------------------------------------------------- /auth_part/templates/index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/templates/index1.html -------------------------------------------------------------------------------- /auth_part/templates/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/templates/js/index.js -------------------------------------------------------------------------------- /auth_part/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/tests.py -------------------------------------------------------------------------------- /auth_part/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/urls.py -------------------------------------------------------------------------------- /auth_part/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/urls.pyc -------------------------------------------------------------------------------- /auth_part/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/views.py -------------------------------------------------------------------------------- /auth_part/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/auth_part/views.pyc -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/manage.py -------------------------------------------------------------------------------- /plants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plants/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/__init__.pyc -------------------------------------------------------------------------------- /plants/abs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/abs.jpg -------------------------------------------------------------------------------- /plants/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/admin.py -------------------------------------------------------------------------------- /plants/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/admin.pyc -------------------------------------------------------------------------------- /plants/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/apps.py -------------------------------------------------------------------------------- /plants/apps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/apps.pyc -------------------------------------------------------------------------------- /plants/builder/build_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/builder/build_data.json -------------------------------------------------------------------------------- /plants/builder/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/builder/generate.py -------------------------------------------------------------------------------- /plants/builder/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/builder/manifest.json -------------------------------------------------------------------------------- /plants/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/css/font-awesome.min.css -------------------------------------------------------------------------------- /plants/css/ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/css/ie8.css -------------------------------------------------------------------------------- /plants/css/ie9.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/css/ie9.css -------------------------------------------------------------------------------- /plants/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/css/images/overlay.png -------------------------------------------------------------------------------- /plants/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/css/ionicons.min.css -------------------------------------------------------------------------------- /plants/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/css/main.css -------------------------------------------------------------------------------- /plants/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/css/materialize.css -------------------------------------------------------------------------------- /plants/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/css/materialize.min.css -------------------------------------------------------------------------------- /plants/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /plants/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/fonts/ionicons.eot -------------------------------------------------------------------------------- /plants/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/fonts/ionicons.svg -------------------------------------------------------------------------------- /plants/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/fonts/ionicons.ttf -------------------------------------------------------------------------------- /plants/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/fonts/ionicons.woff -------------------------------------------------------------------------------- /plants/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/images/avatar.jpg -------------------------------------------------------------------------------- /plants/images/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/images/banner1.jpg -------------------------------------------------------------------------------- /plants/images/man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/images/man.svg -------------------------------------------------------------------------------- /plants/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/images/pic02.jpg -------------------------------------------------------------------------------- /plants/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/images/pic03.jpg -------------------------------------------------------------------------------- /plants/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/images/pic04.jpg -------------------------------------------------------------------------------- /plants/images/pic05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/images/pic05.jpg -------------------------------------------------------------------------------- /plants/images/pic06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/images/pic06.jpg -------------------------------------------------------------------------------- /plants/images/pic07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/images/pic07.jpg -------------------------------------------------------------------------------- /plants/images/pic08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/images/pic08.jpg -------------------------------------------------------------------------------- /plants/js/ie/PIE.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/js/ie/PIE.htc -------------------------------------------------------------------------------- /plants/js/ie/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/js/ie/html5shiv.js -------------------------------------------------------------------------------- /plants/js/ie/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/js/ie/respond.min.js -------------------------------------------------------------------------------- /plants/js/jq.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/js/jq.min.js -------------------------------------------------------------------------------- /plants/js/jq.min.js.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plants/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/js/jquery.min.js -------------------------------------------------------------------------------- /plants/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /plants/js/justgage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/js/justgage.js -------------------------------------------------------------------------------- /plants/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/js/main.js -------------------------------------------------------------------------------- /plants/js/materialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/js/materialize.js -------------------------------------------------------------------------------- /plants/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/js/materialize.min.js -------------------------------------------------------------------------------- /plants/js/raphael-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/js/raphael-2.1.4.min.js -------------------------------------------------------------------------------- /plants/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/js/skel.min.js -------------------------------------------------------------------------------- /plants/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/js/util.js -------------------------------------------------------------------------------- /plants/leef.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/leef.jpg -------------------------------------------------------------------------------- /plants/leef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/leef1.jpg -------------------------------------------------------------------------------- /plants/less/_ionicons-font.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/less/_ionicons-font.less -------------------------------------------------------------------------------- /plants/less/ionicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/less/ionicons.less -------------------------------------------------------------------------------- /plants/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plants/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/migrations/__init__.pyc -------------------------------------------------------------------------------- /plants/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/models.py -------------------------------------------------------------------------------- /plants/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/models.pyc -------------------------------------------------------------------------------- /plants/pie1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/pie1.html -------------------------------------------------------------------------------- /plants/plant2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/plant2.html -------------------------------------------------------------------------------- /plants/plant_st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/plant_st.png -------------------------------------------------------------------------------- /plants/png/512/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/alert.png -------------------------------------------------------------------------------- /plants/png/512/android-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/android-add.png -------------------------------------------------------------------------------- /plants/png/512/android-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/android-book.png -------------------------------------------------------------------------------- /plants/png/512/android-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/android-call.png -------------------------------------------------------------------------------- /plants/png/512/android-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/android-chat.png -------------------------------------------------------------------------------- /plants/png/512/android-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/android-data.png -------------------------------------------------------------------------------- /plants/png/512/android-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/android-hand.png -------------------------------------------------------------------------------- /plants/png/512/android-mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/android-mail.png -------------------------------------------------------------------------------- /plants/png/512/android-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/android-more.png -------------------------------------------------------------------------------- /plants/png/512/android-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/android-note.png -------------------------------------------------------------------------------- /plants/png/512/android-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/android-send.png -------------------------------------------------------------------------------- /plants/png/512/android-sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/android-sort.png -------------------------------------------------------------------------------- /plants/png/512/android-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/android-star.png -------------------------------------------------------------------------------- /plants/png/512/android-wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/android-wifi.png -------------------------------------------------------------------------------- /plants/png/512/aperture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/aperture.png -------------------------------------------------------------------------------- /plants/png/512/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/archive.png -------------------------------------------------------------------------------- /plants/png/512/arrow-down-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-down-a.png -------------------------------------------------------------------------------- /plants/png/512/arrow-down-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-down-b.png -------------------------------------------------------------------------------- /plants/png/512/arrow-down-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-down-c.png -------------------------------------------------------------------------------- /plants/png/512/arrow-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-expand.png -------------------------------------------------------------------------------- /plants/png/512/arrow-left-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-left-a.png -------------------------------------------------------------------------------- /plants/png/512/arrow-left-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-left-b.png -------------------------------------------------------------------------------- /plants/png/512/arrow-left-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-left-c.png -------------------------------------------------------------------------------- /plants/png/512/arrow-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-move.png -------------------------------------------------------------------------------- /plants/png/512/arrow-resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-resize.png -------------------------------------------------------------------------------- /plants/png/512/arrow-shrink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-shrink.png -------------------------------------------------------------------------------- /plants/png/512/arrow-swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-swap.png -------------------------------------------------------------------------------- /plants/png/512/arrow-up-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-up-a.png -------------------------------------------------------------------------------- /plants/png/512/arrow-up-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-up-b.png -------------------------------------------------------------------------------- /plants/png/512/arrow-up-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/arrow-up-c.png -------------------------------------------------------------------------------- /plants/png/512/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/asterisk.png -------------------------------------------------------------------------------- /plants/png/512/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/at.png -------------------------------------------------------------------------------- /plants/png/512/bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/bag.png -------------------------------------------------------------------------------- /plants/png/512/battery-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/battery-full.png -------------------------------------------------------------------------------- /plants/png/512/battery-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/battery-half.png -------------------------------------------------------------------------------- /plants/png/512/battery-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/battery-low.png -------------------------------------------------------------------------------- /plants/png/512/beaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/beaker.png -------------------------------------------------------------------------------- /plants/png/512/beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/beer.png -------------------------------------------------------------------------------- /plants/png/512/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/bluetooth.png -------------------------------------------------------------------------------- /plants/png/512/bonfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/bonfire.png -------------------------------------------------------------------------------- /plants/png/512/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/bookmark.png -------------------------------------------------------------------------------- /plants/png/512/briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/briefcase.png -------------------------------------------------------------------------------- /plants/png/512/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/bug.png -------------------------------------------------------------------------------- /plants/png/512/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/calculator.png -------------------------------------------------------------------------------- /plants/png/512/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/calendar.png -------------------------------------------------------------------------------- /plants/png/512/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/camera.png -------------------------------------------------------------------------------- /plants/png/512/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/card.png -------------------------------------------------------------------------------- /plants/png/512/cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/cash.png -------------------------------------------------------------------------------- /plants/png/512/chatbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/chatbox.png -------------------------------------------------------------------------------- /plants/png/512/chatboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/chatboxes.png -------------------------------------------------------------------------------- /plants/png/512/chatbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/chatbubble.png -------------------------------------------------------------------------------- /plants/png/512/chatbubbles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/chatbubbles.png -------------------------------------------------------------------------------- /plants/png/512/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/checkmark.png -------------------------------------------------------------------------------- /plants/png/512/chevron-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/chevron-down.png -------------------------------------------------------------------------------- /plants/png/512/chevron-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/chevron-left.png -------------------------------------------------------------------------------- /plants/png/512/chevron-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/chevron-up.png -------------------------------------------------------------------------------- /plants/png/512/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/clipboard.png -------------------------------------------------------------------------------- /plants/png/512/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/clock.png -------------------------------------------------------------------------------- /plants/png/512/close-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/close-round.png -------------------------------------------------------------------------------- /plants/png/512/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/close.png -------------------------------------------------------------------------------- /plants/png/512/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/cloud.png -------------------------------------------------------------------------------- /plants/png/512/code-working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/code-working.png -------------------------------------------------------------------------------- /plants/png/512/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/code.png -------------------------------------------------------------------------------- /plants/png/512/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/coffee.png -------------------------------------------------------------------------------- /plants/png/512/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/compass.png -------------------------------------------------------------------------------- /plants/png/512/compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/compose.png -------------------------------------------------------------------------------- /plants/png/512/contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/contrast.png -------------------------------------------------------------------------------- /plants/png/512/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/cube.png -------------------------------------------------------------------------------- /plants/png/512/disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/disc.png -------------------------------------------------------------------------------- /plants/png/512/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/document.png -------------------------------------------------------------------------------- /plants/png/512/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/drag.png -------------------------------------------------------------------------------- /plants/png/512/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/earth.png -------------------------------------------------------------------------------- /plants/png/512/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/edit.png -------------------------------------------------------------------------------- /plants/png/512/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/egg.png -------------------------------------------------------------------------------- /plants/png/512/eject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/eject.png -------------------------------------------------------------------------------- /plants/png/512/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/email.png -------------------------------------------------------------------------------- /plants/png/512/eye-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/eye-disabled.png -------------------------------------------------------------------------------- /plants/png/512/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/eye.png -------------------------------------------------------------------------------- /plants/png/512/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/female.png -------------------------------------------------------------------------------- /plants/png/512/filing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/filing.png -------------------------------------------------------------------------------- /plants/png/512/film-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/film-marker.png -------------------------------------------------------------------------------- /plants/png/512/fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/fireball.png -------------------------------------------------------------------------------- /plants/png/512/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/flag.png -------------------------------------------------------------------------------- /plants/png/512/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/flame.png -------------------------------------------------------------------------------- /plants/png/512/flash-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/flash-off.png -------------------------------------------------------------------------------- /plants/png/512/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/flash.png -------------------------------------------------------------------------------- /plants/png/512/flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/flask.png -------------------------------------------------------------------------------- /plants/png/512/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/folder.png -------------------------------------------------------------------------------- /plants/png/512/fork-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/fork-repo.png -------------------------------------------------------------------------------- /plants/png/512/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/fork.png -------------------------------------------------------------------------------- /plants/png/512/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/forward.png -------------------------------------------------------------------------------- /plants/png/512/funnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/funnel.png -------------------------------------------------------------------------------- /plants/png/512/gear-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/gear-a.png -------------------------------------------------------------------------------- /plants/png/512/gear-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/gear-b.png -------------------------------------------------------------------------------- /plants/png/512/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/grid.png -------------------------------------------------------------------------------- /plants/png/512/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/hammer.png -------------------------------------------------------------------------------- /plants/png/512/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/happy.png -------------------------------------------------------------------------------- /plants/png/512/headphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/headphone.png -------------------------------------------------------------------------------- /plants/png/512/heart-broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/heart-broken.png -------------------------------------------------------------------------------- /plants/png/512/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/heart.png -------------------------------------------------------------------------------- /plants/png/512/help-buoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/help-buoy.png -------------------------------------------------------------------------------- /plants/png/512/help-circled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/help-circled.png -------------------------------------------------------------------------------- /plants/png/512/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/help.png -------------------------------------------------------------------------------- /plants/png/512/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/home.png -------------------------------------------------------------------------------- /plants/png/512/icecream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/icecream.png -------------------------------------------------------------------------------- /plants/png/512/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/image.png -------------------------------------------------------------------------------- /plants/png/512/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/images.png -------------------------------------------------------------------------------- /plants/png/512/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/information.png -------------------------------------------------------------------------------- /plants/png/512/ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ionic.png -------------------------------------------------------------------------------- /plants/png/512/ios7-alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-alarm.png -------------------------------------------------------------------------------- /plants/png/512/ios7-albums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-albums.png -------------------------------------------------------------------------------- /plants/png/512/ios7-at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-at.png -------------------------------------------------------------------------------- /plants/png/512/ios7-barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-barcode.png -------------------------------------------------------------------------------- /plants/png/512/ios7-bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-bell.png -------------------------------------------------------------------------------- /plants/png/512/ios7-bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-bolt.png -------------------------------------------------------------------------------- /plants/png/512/ios7-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-box.png -------------------------------------------------------------------------------- /plants/png/512/ios7-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-cart.png -------------------------------------------------------------------------------- /plants/png/512/ios7-cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-cog.png -------------------------------------------------------------------------------- /plants/png/512/ios7-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-copy.png -------------------------------------------------------------------------------- /plants/png/512/ios7-drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-drag.png -------------------------------------------------------------------------------- /plants/png/512/ios7-eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-eye.png -------------------------------------------------------------------------------- /plants/png/512/ios7-film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-film.png -------------------------------------------------------------------------------- /plants/png/512/ios7-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-flag.png -------------------------------------------------------------------------------- /plants/png/512/ios7-gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-gear.png -------------------------------------------------------------------------------- /plants/png/512/ios7-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-help.png -------------------------------------------------------------------------------- /plants/png/512/ios7-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-home.png -------------------------------------------------------------------------------- /plants/png/512/ios7-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-loop.png -------------------------------------------------------------------------------- /plants/png/512/ios7-mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-mic.png -------------------------------------------------------------------------------- /plants/png/512/ios7-moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-moon.png -------------------------------------------------------------------------------- /plants/png/512/ios7-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-more.png -------------------------------------------------------------------------------- /plants/png/512/ios7-paw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-paw.png -------------------------------------------------------------------------------- /plants/png/512/ios7-pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-pie.png -------------------------------------------------------------------------------- /plants/png/512/ios7-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-play.png -------------------------------------------------------------------------------- /plants/png/512/ios7-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-plus.png -------------------------------------------------------------------------------- /plants/png/512/ios7-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-redo.png -------------------------------------------------------------------------------- /plants/png/512/ios7-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-star.png -------------------------------------------------------------------------------- /plants/png/512/ios7-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-time.png -------------------------------------------------------------------------------- /plants/png/512/ios7-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ios7-undo.png -------------------------------------------------------------------------------- /plants/png/512/ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ipad.png -------------------------------------------------------------------------------- /plants/png/512/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/iphone.png -------------------------------------------------------------------------------- /plants/png/512/ipod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ipod.png -------------------------------------------------------------------------------- /plants/png/512/jet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/jet.png -------------------------------------------------------------------------------- /plants/png/512/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/key.png -------------------------------------------------------------------------------- /plants/png/512/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/knife.png -------------------------------------------------------------------------------- /plants/png/512/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/laptop.png -------------------------------------------------------------------------------- /plants/png/512/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/leaf.png -------------------------------------------------------------------------------- /plants/png/512/levels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/levels.png -------------------------------------------------------------------------------- /plants/png/512/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/lightbulb.png -------------------------------------------------------------------------------- /plants/png/512/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/link.png -------------------------------------------------------------------------------- /plants/png/512/load-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/load-a.png -------------------------------------------------------------------------------- /plants/png/512/load-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/load-b.png -------------------------------------------------------------------------------- /plants/png/512/load-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/load-c.png -------------------------------------------------------------------------------- /plants/png/512/load-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/load-d.png -------------------------------------------------------------------------------- /plants/png/512/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/location.png -------------------------------------------------------------------------------- /plants/png/512/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/locked.png -------------------------------------------------------------------------------- /plants/png/512/log-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/log-in.png -------------------------------------------------------------------------------- /plants/png/512/log-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/log-out.png -------------------------------------------------------------------------------- /plants/png/512/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/loop.png -------------------------------------------------------------------------------- /plants/png/512/magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/magnet.png -------------------------------------------------------------------------------- /plants/png/512/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/male.png -------------------------------------------------------------------------------- /plants/png/512/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/man.png -------------------------------------------------------------------------------- /plants/png/512/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/map.png -------------------------------------------------------------------------------- /plants/png/512/medkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/medkit.png -------------------------------------------------------------------------------- /plants/png/512/merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/merge.png -------------------------------------------------------------------------------- /plants/png/512/mic-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/mic-a.png -------------------------------------------------------------------------------- /plants/png/512/mic-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/mic-b.png -------------------------------------------------------------------------------- /plants/png/512/mic-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/mic-c.png -------------------------------------------------------------------------------- /plants/png/512/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/minus.png -------------------------------------------------------------------------------- /plants/png/512/model-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/model-s.png -------------------------------------------------------------------------------- /plants/png/512/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/monitor.png -------------------------------------------------------------------------------- /plants/png/512/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/more.png -------------------------------------------------------------------------------- /plants/png/512/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/mouse.png -------------------------------------------------------------------------------- /plants/png/512/navicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/navicon.png -------------------------------------------------------------------------------- /plants/png/512/navigate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/navigate.png -------------------------------------------------------------------------------- /plants/png/512/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/network.png -------------------------------------------------------------------------------- /plants/png/512/nuclear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/nuclear.png -------------------------------------------------------------------------------- /plants/png/512/outlet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/outlet.png -------------------------------------------------------------------------------- /plants/png/512/paperclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/paperclip.png -------------------------------------------------------------------------------- /plants/png/512/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/pause.png -------------------------------------------------------------------------------- /plants/png/512/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/person.png -------------------------------------------------------------------------------- /plants/png/512/pie-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/pie-graph.png -------------------------------------------------------------------------------- /plants/png/512/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/pin.png -------------------------------------------------------------------------------- /plants/png/512/pinpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/pinpoint.png -------------------------------------------------------------------------------- /plants/png/512/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/pizza.png -------------------------------------------------------------------------------- /plants/png/512/plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/plane.png -------------------------------------------------------------------------------- /plants/png/512/planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/planet.png -------------------------------------------------------------------------------- /plants/png/512/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/play.png -------------------------------------------------------------------------------- /plants/png/512/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/plus.png -------------------------------------------------------------------------------- /plants/png/512/podium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/podium.png -------------------------------------------------------------------------------- /plants/png/512/pound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/pound.png -------------------------------------------------------------------------------- /plants/png/512/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/power.png -------------------------------------------------------------------------------- /plants/png/512/pricetag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/pricetag.png -------------------------------------------------------------------------------- /plants/png/512/pricetags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/pricetags.png -------------------------------------------------------------------------------- /plants/png/512/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/printer.png -------------------------------------------------------------------------------- /plants/png/512/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/quote.png -------------------------------------------------------------------------------- /plants/png/512/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/record.png -------------------------------------------------------------------------------- /plants/png/512/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/refresh.png -------------------------------------------------------------------------------- /plants/png/512/reply-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/reply-all.png -------------------------------------------------------------------------------- /plants/png/512/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/reply.png -------------------------------------------------------------------------------- /plants/png/512/ribbon-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ribbon-a.png -------------------------------------------------------------------------------- /plants/png/512/ribbon-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/ribbon-b.png -------------------------------------------------------------------------------- /plants/png/512/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/sad.png -------------------------------------------------------------------------------- /plants/png/512/scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/scissors.png -------------------------------------------------------------------------------- /plants/png/512/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/search.png -------------------------------------------------------------------------------- /plants/png/512/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/settings.png -------------------------------------------------------------------------------- /plants/png/512/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/share.png -------------------------------------------------------------------------------- /plants/png/512/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/shuffle.png -------------------------------------------------------------------------------- /plants/png/512/spoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/spoon.png -------------------------------------------------------------------------------- /plants/png/512/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/star.png -------------------------------------------------------------------------------- /plants/png/512/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/steam.png -------------------------------------------------------------------------------- /plants/png/512/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/stop.png -------------------------------------------------------------------------------- /plants/png/512/thumbsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/thumbsup.png -------------------------------------------------------------------------------- /plants/png/512/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/toggle.png -------------------------------------------------------------------------------- /plants/png/512/trash-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/trash-a.png -------------------------------------------------------------------------------- /plants/png/512/trash-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/trash-b.png -------------------------------------------------------------------------------- /plants/png/512/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/trophy.png -------------------------------------------------------------------------------- /plants/png/512/umbrella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/umbrella.png -------------------------------------------------------------------------------- /plants/png/512/unlocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/unlocked.png -------------------------------------------------------------------------------- /plants/png/512/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/upload.png -------------------------------------------------------------------------------- /plants/png/512/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/usb.png -------------------------------------------------------------------------------- /plants/png/512/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/wand.png -------------------------------------------------------------------------------- /plants/png/512/waterdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/waterdrop.png -------------------------------------------------------------------------------- /plants/png/512/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/wifi.png -------------------------------------------------------------------------------- /plants/png/512/wineglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/wineglass.png -------------------------------------------------------------------------------- /plants/png/512/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/woman.png -------------------------------------------------------------------------------- /plants/png/512/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/wrench.png -------------------------------------------------------------------------------- /plants/png/512/xbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/png/512/xbox.png -------------------------------------------------------------------------------- /plants/sass/ie8.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/sass/ie8.scss -------------------------------------------------------------------------------- /plants/sass/ie9.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/sass/ie9.scss -------------------------------------------------------------------------------- /plants/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/sass/libs/_skel.scss -------------------------------------------------------------------------------- /plants/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/sass/libs/_vars.scss -------------------------------------------------------------------------------- /plants/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/sass/main.scss -------------------------------------------------------------------------------- /plants/src/alert-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/alert-circled.svg -------------------------------------------------------------------------------- /plants/src/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/alert.svg -------------------------------------------------------------------------------- /plants/src/android-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-add.svg -------------------------------------------------------------------------------- /plants/src/android-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-alert.svg -------------------------------------------------------------------------------- /plants/src/android-apps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-apps.svg -------------------------------------------------------------------------------- /plants/src/android-bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-bar.svg -------------------------------------------------------------------------------- /plants/src/android-boat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-boat.svg -------------------------------------------------------------------------------- /plants/src/android-bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-bulb.svg -------------------------------------------------------------------------------- /plants/src/android-bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-bus.svg -------------------------------------------------------------------------------- /plants/src/android-call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-call.svg -------------------------------------------------------------------------------- /plants/src/android-car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-car.svg -------------------------------------------------------------------------------- /plants/src/android-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-cart.svg -------------------------------------------------------------------------------- /plants/src/android-chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-chat.svg -------------------------------------------------------------------------------- /plants/src/android-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-close.svg -------------------------------------------------------------------------------- /plants/src/android-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-cloud.svg -------------------------------------------------------------------------------- /plants/src/android-done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-done.svg -------------------------------------------------------------------------------- /plants/src/android-exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-exit.svg -------------------------------------------------------------------------------- /plants/src/android-film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-film.svg -------------------------------------------------------------------------------- /plants/src/android-globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-globe.svg -------------------------------------------------------------------------------- /plants/src/android-hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-hand.svg -------------------------------------------------------------------------------- /plants/src/android-happy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-happy.svg -------------------------------------------------------------------------------- /plants/src/android-home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-home.svg -------------------------------------------------------------------------------- /plants/src/android-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-image.svg -------------------------------------------------------------------------------- /plants/src/android-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-list.svg -------------------------------------------------------------------------------- /plants/src/android-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-lock.svg -------------------------------------------------------------------------------- /plants/src/android-mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-mail.svg -------------------------------------------------------------------------------- /plants/src/android-map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-map.svg -------------------------------------------------------------------------------- /plants/src/android-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-menu.svg -------------------------------------------------------------------------------- /plants/src/android-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-open.svg -------------------------------------------------------------------------------- /plants/src/android-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-pin.svg -------------------------------------------------------------------------------- /plants/src/android-plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-plane.svg -------------------------------------------------------------------------------- /plants/src/android-print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-print.svg -------------------------------------------------------------------------------- /plants/src/android-sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-sad.svg -------------------------------------------------------------------------------- /plants/src/android-send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-send.svg -------------------------------------------------------------------------------- /plants/src/android-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-share.svg -------------------------------------------------------------------------------- /plants/src/android-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-star.svg -------------------------------------------------------------------------------- /plants/src/android-sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-sunny.svg -------------------------------------------------------------------------------- /plants/src/android-sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-sync.svg -------------------------------------------------------------------------------- /plants/src/android-time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-time.svg -------------------------------------------------------------------------------- /plants/src/android-train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-train.svg -------------------------------------------------------------------------------- /plants/src/android-walk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-walk.svg -------------------------------------------------------------------------------- /plants/src/android-watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-watch.svg -------------------------------------------------------------------------------- /plants/src/android-wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/android-wifi.svg -------------------------------------------------------------------------------- /plants/src/aperture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/aperture.svg -------------------------------------------------------------------------------- /plants/src/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/archive.svg -------------------------------------------------------------------------------- /plants/src/arrow-down-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-down-a.svg -------------------------------------------------------------------------------- /plants/src/arrow-down-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-down-b.svg -------------------------------------------------------------------------------- /plants/src/arrow-down-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-down-c.svg -------------------------------------------------------------------------------- /plants/src/arrow-expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-expand.svg -------------------------------------------------------------------------------- /plants/src/arrow-left-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-left-a.svg -------------------------------------------------------------------------------- /plants/src/arrow-left-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-left-b.svg -------------------------------------------------------------------------------- /plants/src/arrow-left-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-left-c.svg -------------------------------------------------------------------------------- /plants/src/arrow-move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-move.svg -------------------------------------------------------------------------------- /plants/src/arrow-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-resize.svg -------------------------------------------------------------------------------- /plants/src/arrow-right-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-right-a.svg -------------------------------------------------------------------------------- /plants/src/arrow-right-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-right-b.svg -------------------------------------------------------------------------------- /plants/src/arrow-right-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-right-c.svg -------------------------------------------------------------------------------- /plants/src/arrow-shrink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-shrink.svg -------------------------------------------------------------------------------- /plants/src/arrow-swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-swap.svg -------------------------------------------------------------------------------- /plants/src/arrow-up-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-up-a.svg -------------------------------------------------------------------------------- /plants/src/arrow-up-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-up-b.svg -------------------------------------------------------------------------------- /plants/src/arrow-up-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/arrow-up-c.svg -------------------------------------------------------------------------------- /plants/src/asterisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/asterisk.svg -------------------------------------------------------------------------------- /plants/src/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/at.svg -------------------------------------------------------------------------------- /plants/src/backspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/backspace.svg -------------------------------------------------------------------------------- /plants/src/bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/bag.svg -------------------------------------------------------------------------------- /plants/src/battery-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/battery-empty.svg -------------------------------------------------------------------------------- /plants/src/battery-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/battery-full.svg -------------------------------------------------------------------------------- /plants/src/battery-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/battery-half.svg -------------------------------------------------------------------------------- /plants/src/battery-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/battery-low.svg -------------------------------------------------------------------------------- /plants/src/beaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/beaker.svg -------------------------------------------------------------------------------- /plants/src/beer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/beer.svg -------------------------------------------------------------------------------- /plants/src/bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/bluetooth.svg -------------------------------------------------------------------------------- /plants/src/bonfire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/bonfire.svg -------------------------------------------------------------------------------- /plants/src/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/bookmark.svg -------------------------------------------------------------------------------- /plants/src/bowtie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/bowtie.svg -------------------------------------------------------------------------------- /plants/src/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/briefcase.svg -------------------------------------------------------------------------------- /plants/src/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/bug.svg -------------------------------------------------------------------------------- /plants/src/calculator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/calculator.svg -------------------------------------------------------------------------------- /plants/src/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/calendar.svg -------------------------------------------------------------------------------- /plants/src/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/camera.svg -------------------------------------------------------------------------------- /plants/src/card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/card.svg -------------------------------------------------------------------------------- /plants/src/cash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/cash.svg -------------------------------------------------------------------------------- /plants/src/chatbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/chatbox.svg -------------------------------------------------------------------------------- /plants/src/chatboxes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/chatboxes.svg -------------------------------------------------------------------------------- /plants/src/chatbubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/chatbubble.svg -------------------------------------------------------------------------------- /plants/src/chatbubbles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/chatbubbles.svg -------------------------------------------------------------------------------- /plants/src/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/checkmark.svg -------------------------------------------------------------------------------- /plants/src/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/chevron-down.svg -------------------------------------------------------------------------------- /plants/src/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/chevron-left.svg -------------------------------------------------------------------------------- /plants/src/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/chevron-right.svg -------------------------------------------------------------------------------- /plants/src/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/chevron-up.svg -------------------------------------------------------------------------------- /plants/src/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/clipboard.svg -------------------------------------------------------------------------------- /plants/src/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/clock.svg -------------------------------------------------------------------------------- /plants/src/close-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/close-circled.svg -------------------------------------------------------------------------------- /plants/src/close-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/close-round.svg -------------------------------------------------------------------------------- /plants/src/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/close.svg -------------------------------------------------------------------------------- /plants/src/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/cloud.svg -------------------------------------------------------------------------------- /plants/src/code-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/code-download.svg -------------------------------------------------------------------------------- /plants/src/code-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/code-working.svg -------------------------------------------------------------------------------- /plants/src/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/code.svg -------------------------------------------------------------------------------- /plants/src/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/coffee.svg -------------------------------------------------------------------------------- /plants/src/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/compass.svg -------------------------------------------------------------------------------- /plants/src/compose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/compose.svg -------------------------------------------------------------------------------- /plants/src/contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/contrast.svg -------------------------------------------------------------------------------- /plants/src/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/crop.svg -------------------------------------------------------------------------------- /plants/src/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/cube.svg -------------------------------------------------------------------------------- /plants/src/disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/disc.svg -------------------------------------------------------------------------------- /plants/src/document-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/document-text.svg -------------------------------------------------------------------------------- /plants/src/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/document.svg -------------------------------------------------------------------------------- /plants/src/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/drag.svg -------------------------------------------------------------------------------- /plants/src/earth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/earth.svg -------------------------------------------------------------------------------- /plants/src/easel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/easel.svg -------------------------------------------------------------------------------- /plants/src/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/edit.svg -------------------------------------------------------------------------------- /plants/src/egg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/egg.svg -------------------------------------------------------------------------------- /plants/src/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/eject.svg -------------------------------------------------------------------------------- /plants/src/email-unread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/email-unread.svg -------------------------------------------------------------------------------- /plants/src/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/email.svg -------------------------------------------------------------------------------- /plants/src/eye-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/eye-disabled.svg -------------------------------------------------------------------------------- /plants/src/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/eye.svg -------------------------------------------------------------------------------- /plants/src/female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/female.svg -------------------------------------------------------------------------------- /plants/src/filing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/filing.svg -------------------------------------------------------------------------------- /plants/src/film-marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/film-marker.svg -------------------------------------------------------------------------------- /plants/src/fireball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/fireball.svg -------------------------------------------------------------------------------- /plants/src/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/flag.svg -------------------------------------------------------------------------------- /plants/src/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/flame.svg -------------------------------------------------------------------------------- /plants/src/flash-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/flash-off.svg -------------------------------------------------------------------------------- /plants/src/flash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/flash.svg -------------------------------------------------------------------------------- /plants/src/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/folder.svg -------------------------------------------------------------------------------- /plants/src/fork-repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/fork-repo.svg -------------------------------------------------------------------------------- /plants/src/fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/fork.svg -------------------------------------------------------------------------------- /plants/src/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/forward.svg -------------------------------------------------------------------------------- /plants/src/funnel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/funnel.svg -------------------------------------------------------------------------------- /plants/src/gear-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/gear-a.svg -------------------------------------------------------------------------------- /plants/src/gear-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/gear-b.svg -------------------------------------------------------------------------------- /plants/src/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/grid.svg -------------------------------------------------------------------------------- /plants/src/hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/hammer.svg -------------------------------------------------------------------------------- /plants/src/happy-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/happy-outline.svg -------------------------------------------------------------------------------- /plants/src/happy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/happy.svg -------------------------------------------------------------------------------- /plants/src/headphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/headphone.svg -------------------------------------------------------------------------------- /plants/src/heart-broken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/heart-broken.svg -------------------------------------------------------------------------------- /plants/src/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/heart.svg -------------------------------------------------------------------------------- /plants/src/help-buoy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/help-buoy.svg -------------------------------------------------------------------------------- /plants/src/help-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/help-circled.svg -------------------------------------------------------------------------------- /plants/src/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/help.svg -------------------------------------------------------------------------------- /plants/src/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/home.svg -------------------------------------------------------------------------------- /plants/src/icecream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/icecream.svg -------------------------------------------------------------------------------- /plants/src/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/image.svg -------------------------------------------------------------------------------- /plants/src/images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/images.svg -------------------------------------------------------------------------------- /plants/src/information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/information.svg -------------------------------------------------------------------------------- /plants/src/ionic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ionic.svg -------------------------------------------------------------------------------- /plants/src/ios-alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-alarm.svg -------------------------------------------------------------------------------- /plants/src/ios-albums.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-albums.svg -------------------------------------------------------------------------------- /plants/src/ios-analytics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-analytics.svg -------------------------------------------------------------------------------- /plants/src/ios-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-arrow-up.svg -------------------------------------------------------------------------------- /plants/src/ios-at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-at.svg -------------------------------------------------------------------------------- /plants/src/ios-barcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-barcode.svg -------------------------------------------------------------------------------- /plants/src/ios-baseball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-baseball.svg -------------------------------------------------------------------------------- /plants/src/ios-bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-bell.svg -------------------------------------------------------------------------------- /plants/src/ios-body.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-body.svg -------------------------------------------------------------------------------- /plants/src/ios-bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-bolt.svg -------------------------------------------------------------------------------- /plants/src/ios-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-book.svg -------------------------------------------------------------------------------- /plants/src/ios-bookmarks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-bookmarks.svg -------------------------------------------------------------------------------- /plants/src/ios-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-box.svg -------------------------------------------------------------------------------- /plants/src/ios-briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-briefcase.svg -------------------------------------------------------------------------------- /plants/src/ios-browsers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-browsers.svg -------------------------------------------------------------------------------- /plants/src/ios-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-calendar.svg -------------------------------------------------------------------------------- /plants/src/ios-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-camera.svg -------------------------------------------------------------------------------- /plants/src/ios-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-cart.svg -------------------------------------------------------------------------------- /plants/src/ios-chatboxes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-chatboxes.svg -------------------------------------------------------------------------------- /plants/src/ios-checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-checkmark.svg -------------------------------------------------------------------------------- /plants/src/ios-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-clock.svg -------------------------------------------------------------------------------- /plants/src/ios-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-close.svg -------------------------------------------------------------------------------- /plants/src/ios-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-cloud.svg -------------------------------------------------------------------------------- /plants/src/ios-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-cloudy.svg -------------------------------------------------------------------------------- /plants/src/ios-cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-cog.svg -------------------------------------------------------------------------------- /plants/src/ios-compose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-compose.svg -------------------------------------------------------------------------------- /plants/src/ios-contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-contact.svg -------------------------------------------------------------------------------- /plants/src/ios-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-copy.svg -------------------------------------------------------------------------------- /plants/src/ios-crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-crop.svg -------------------------------------------------------------------------------- /plants/src/ios-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-download.svg -------------------------------------------------------------------------------- /plants/src/ios-drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-drag.svg -------------------------------------------------------------------------------- /plants/src/ios-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-email.svg -------------------------------------------------------------------------------- /plants/src/ios-eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-eye.svg -------------------------------------------------------------------------------- /plants/src/ios-filing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-filing.svg -------------------------------------------------------------------------------- /plants/src/ios-film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-film.svg -------------------------------------------------------------------------------- /plants/src/ios-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-flag.svg -------------------------------------------------------------------------------- /plants/src/ios-flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-flame.svg -------------------------------------------------------------------------------- /plants/src/ios-flask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-flask.svg -------------------------------------------------------------------------------- /plants/src/ios-flower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-flower.svg -------------------------------------------------------------------------------- /plants/src/ios-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-folder.svg -------------------------------------------------------------------------------- /plants/src/ios-football.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-football.svg -------------------------------------------------------------------------------- /plants/src/ios-gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-gear.svg -------------------------------------------------------------------------------- /plants/src/ios-glasses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-glasses.svg -------------------------------------------------------------------------------- /plants/src/ios-grid-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-grid-view.svg -------------------------------------------------------------------------------- /plants/src/ios-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-heart.svg -------------------------------------------------------------------------------- /plants/src/ios-help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-help.svg -------------------------------------------------------------------------------- /plants/src/ios-home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-home.svg -------------------------------------------------------------------------------- /plants/src/ios-infinite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-infinite.svg -------------------------------------------------------------------------------- /plants/src/ios-keypad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-keypad.svg -------------------------------------------------------------------------------- /plants/src/ios-lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-lightbulb.svg -------------------------------------------------------------------------------- /plants/src/ios-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-list.svg -------------------------------------------------------------------------------- /plants/src/ios-location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-location.svg -------------------------------------------------------------------------------- /plants/src/ios-locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-locked.svg -------------------------------------------------------------------------------- /plants/src/ios-loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-loop.svg -------------------------------------------------------------------------------- /plants/src/ios-medical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-medical.svg -------------------------------------------------------------------------------- /plants/src/ios-medkit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-medkit.svg -------------------------------------------------------------------------------- /plants/src/ios-mic-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-mic-off.svg -------------------------------------------------------------------------------- /plants/src/ios-mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-mic.svg -------------------------------------------------------------------------------- /plants/src/ios-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-minus.svg -------------------------------------------------------------------------------- /plants/src/ios-monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-monitor.svg -------------------------------------------------------------------------------- /plants/src/ios-moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-moon.svg -------------------------------------------------------------------------------- /plants/src/ios-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-more.svg -------------------------------------------------------------------------------- /plants/src/ios-navigate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-navigate.svg -------------------------------------------------------------------------------- /plants/src/ios-nutrition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-nutrition.svg -------------------------------------------------------------------------------- /plants/src/ios-paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-paper.svg -------------------------------------------------------------------------------- /plants/src/ios-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-pause.svg -------------------------------------------------------------------------------- /plants/src/ios-paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-paw.svg -------------------------------------------------------------------------------- /plants/src/ios-people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-people.svg -------------------------------------------------------------------------------- /plants/src/ios-person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-person.svg -------------------------------------------------------------------------------- /plants/src/ios-personadd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-personadd.svg -------------------------------------------------------------------------------- /plants/src/ios-photos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-photos.svg -------------------------------------------------------------------------------- /plants/src/ios-pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-pie.svg -------------------------------------------------------------------------------- /plants/src/ios-pint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-pint.svg -------------------------------------------------------------------------------- /plants/src/ios-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-play.svg -------------------------------------------------------------------------------- /plants/src/ios-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-plus.svg -------------------------------------------------------------------------------- /plants/src/ios-pricetag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-pricetag.svg -------------------------------------------------------------------------------- /plants/src/ios-pricetags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-pricetags.svg -------------------------------------------------------------------------------- /plants/src/ios-printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-printer.svg -------------------------------------------------------------------------------- /plants/src/ios-pulse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-pulse.svg -------------------------------------------------------------------------------- /plants/src/ios-rainy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-rainy.svg -------------------------------------------------------------------------------- /plants/src/ios-recording.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-recording.svg -------------------------------------------------------------------------------- /plants/src/ios-redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-redo.svg -------------------------------------------------------------------------------- /plants/src/ios-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-refresh.svg -------------------------------------------------------------------------------- /plants/src/ios-reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-reload.svg -------------------------------------------------------------------------------- /plants/src/ios-rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-rewind.svg -------------------------------------------------------------------------------- /plants/src/ios-rose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-rose.svg -------------------------------------------------------------------------------- /plants/src/ios-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-search.svg -------------------------------------------------------------------------------- /plants/src/ios-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-settings.svg -------------------------------------------------------------------------------- /plants/src/ios-shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-shuffle.svg -------------------------------------------------------------------------------- /plants/src/ios-snowy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-snowy.svg -------------------------------------------------------------------------------- /plants/src/ios-star-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-star-half.svg -------------------------------------------------------------------------------- /plants/src/ios-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-star.svg -------------------------------------------------------------------------------- /plants/src/ios-stopwatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-stopwatch.svg -------------------------------------------------------------------------------- /plants/src/ios-sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-sunny.svg -------------------------------------------------------------------------------- /plants/src/ios-telephone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-telephone.svg -------------------------------------------------------------------------------- /plants/src/ios-time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-time.svg -------------------------------------------------------------------------------- /plants/src/ios-timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-timer.svg -------------------------------------------------------------------------------- /plants/src/ios-toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-toggle.svg -------------------------------------------------------------------------------- /plants/src/ios-trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-trash.svg -------------------------------------------------------------------------------- /plants/src/ios-undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-undo.svg -------------------------------------------------------------------------------- /plants/src/ios-unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-unlocked.svg -------------------------------------------------------------------------------- /plants/src/ios-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-upload.svg -------------------------------------------------------------------------------- /plants/src/ios-videocam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-videocam.svg -------------------------------------------------------------------------------- /plants/src/ios-wineglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-wineglass.svg -------------------------------------------------------------------------------- /plants/src/ios-world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ios-world.svg -------------------------------------------------------------------------------- /plants/src/ipad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ipad.svg -------------------------------------------------------------------------------- /plants/src/iphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/iphone.svg -------------------------------------------------------------------------------- /plants/src/ipod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ipod.svg -------------------------------------------------------------------------------- /plants/src/jet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/jet.svg -------------------------------------------------------------------------------- /plants/src/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/key.svg -------------------------------------------------------------------------------- /plants/src/knife.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/knife.svg -------------------------------------------------------------------------------- /plants/src/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/laptop.svg -------------------------------------------------------------------------------- /plants/src/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/leaf.svg -------------------------------------------------------------------------------- /plants/src/levels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/levels.svg -------------------------------------------------------------------------------- /plants/src/lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/lightbulb.svg -------------------------------------------------------------------------------- /plants/src/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/link.svg -------------------------------------------------------------------------------- /plants/src/load-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/load-a.svg -------------------------------------------------------------------------------- /plants/src/load-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/load-b.svg -------------------------------------------------------------------------------- /plants/src/load-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/load-c.svg -------------------------------------------------------------------------------- /plants/src/load-d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/load-d.svg -------------------------------------------------------------------------------- /plants/src/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/location.svg -------------------------------------------------------------------------------- /plants/src/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/locked.svg -------------------------------------------------------------------------------- /plants/src/log-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/log-in.svg -------------------------------------------------------------------------------- /plants/src/log-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/log-out.svg -------------------------------------------------------------------------------- /plants/src/loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/loop.svg -------------------------------------------------------------------------------- /plants/src/magnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/magnet.svg -------------------------------------------------------------------------------- /plants/src/male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/male.svg -------------------------------------------------------------------------------- /plants/src/man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/man.svg -------------------------------------------------------------------------------- /plants/src/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/map.svg -------------------------------------------------------------------------------- /plants/src/medkit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/medkit.svg -------------------------------------------------------------------------------- /plants/src/merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/merge.svg -------------------------------------------------------------------------------- /plants/src/mic-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/mic-a.svg -------------------------------------------------------------------------------- /plants/src/mic-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/mic-b.svg -------------------------------------------------------------------------------- /plants/src/mic-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/mic-c.svg -------------------------------------------------------------------------------- /plants/src/minus-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/minus-circled.svg -------------------------------------------------------------------------------- /plants/src/minus-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/minus-round.svg -------------------------------------------------------------------------------- /plants/src/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/minus.svg -------------------------------------------------------------------------------- /plants/src/model-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/model-s.svg -------------------------------------------------------------------------------- /plants/src/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/monitor.svg -------------------------------------------------------------------------------- /plants/src/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/more.svg -------------------------------------------------------------------------------- /plants/src/mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/mouse.svg -------------------------------------------------------------------------------- /plants/src/music-note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/music-note.svg -------------------------------------------------------------------------------- /plants/src/navicon-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/navicon-round.svg -------------------------------------------------------------------------------- /plants/src/navicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/navicon.svg -------------------------------------------------------------------------------- /plants/src/navigate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/navigate.svg -------------------------------------------------------------------------------- /plants/src/network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/network.svg -------------------------------------------------------------------------------- /plants/src/no-smoking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/no-smoking.svg -------------------------------------------------------------------------------- /plants/src/nuclear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/nuclear.svg -------------------------------------------------------------------------------- /plants/src/outlet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/outlet.svg -------------------------------------------------------------------------------- /plants/src/paintbrush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/paintbrush.svg -------------------------------------------------------------------------------- /plants/src/paintbucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/paintbucket.svg -------------------------------------------------------------------------------- /plants/src/paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/paperclip.svg -------------------------------------------------------------------------------- /plants/src/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/pause.svg -------------------------------------------------------------------------------- /plants/src/person-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/person-add.svg -------------------------------------------------------------------------------- /plants/src/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/person.svg -------------------------------------------------------------------------------- /plants/src/pie-graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/pie-graph.svg -------------------------------------------------------------------------------- /plants/src/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/pin.svg -------------------------------------------------------------------------------- /plants/src/pinpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/pinpoint.svg -------------------------------------------------------------------------------- /plants/src/pizza.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/pizza.svg -------------------------------------------------------------------------------- /plants/src/plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/plane.svg -------------------------------------------------------------------------------- /plants/src/planet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/planet.svg -------------------------------------------------------------------------------- /plants/src/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/play.svg -------------------------------------------------------------------------------- /plants/src/playstation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/playstation.svg -------------------------------------------------------------------------------- /plants/src/plus-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/plus-circled.svg -------------------------------------------------------------------------------- /plants/src/plus-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/plus-round.svg -------------------------------------------------------------------------------- /plants/src/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/plus.svg -------------------------------------------------------------------------------- /plants/src/podium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/podium.svg -------------------------------------------------------------------------------- /plants/src/pound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/pound.svg -------------------------------------------------------------------------------- /plants/src/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/power.svg -------------------------------------------------------------------------------- /plants/src/pricetag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/pricetag.svg -------------------------------------------------------------------------------- /plants/src/pricetags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/pricetags.svg -------------------------------------------------------------------------------- /plants/src/printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/printer.svg -------------------------------------------------------------------------------- /plants/src/pull-request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/pull-request.svg -------------------------------------------------------------------------------- /plants/src/qr-scanner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/qr-scanner.svg -------------------------------------------------------------------------------- /plants/src/quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/quote.svg -------------------------------------------------------------------------------- /plants/src/radio-waves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/radio-waves.svg -------------------------------------------------------------------------------- /plants/src/record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/record.svg -------------------------------------------------------------------------------- /plants/src/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/refresh.svg -------------------------------------------------------------------------------- /plants/src/reply-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/reply-all.svg -------------------------------------------------------------------------------- /plants/src/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/reply.svg -------------------------------------------------------------------------------- /plants/src/ribbon-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ribbon-a.svg -------------------------------------------------------------------------------- /plants/src/ribbon-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/ribbon-b.svg -------------------------------------------------------------------------------- /plants/src/sad-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/sad-outline.svg -------------------------------------------------------------------------------- /plants/src/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/sad.svg -------------------------------------------------------------------------------- /plants/src/scissors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/scissors.svg -------------------------------------------------------------------------------- /plants/src/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/search.svg -------------------------------------------------------------------------------- /plants/src/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/settings.svg -------------------------------------------------------------------------------- /plants/src/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/share.svg -------------------------------------------------------------------------------- /plants/src/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/shuffle.svg -------------------------------------------------------------------------------- /plants/src/skip-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/skip-backward.svg -------------------------------------------------------------------------------- /plants/src/skip-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/skip-forward.svg -------------------------------------------------------------------------------- /plants/src/social-apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-apple.svg -------------------------------------------------------------------------------- /plants/src/social-buffer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-buffer.svg -------------------------------------------------------------------------------- /plants/src/social-chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-chrome.svg -------------------------------------------------------------------------------- /plants/src/social-css3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-css3.svg -------------------------------------------------------------------------------- /plants/src/social-euro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-euro.svg -------------------------------------------------------------------------------- /plants/src/social-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-github.svg -------------------------------------------------------------------------------- /plants/src/social-google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-google.svg -------------------------------------------------------------------------------- /plants/src/social-html5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-html5.svg -------------------------------------------------------------------------------- /plants/src/social-nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-nodejs.svg -------------------------------------------------------------------------------- /plants/src/social-python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-python.svg -------------------------------------------------------------------------------- /plants/src/social-reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-reddit.svg -------------------------------------------------------------------------------- /plants/src/social-rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-rss.svg -------------------------------------------------------------------------------- /plants/src/social-sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-sass.svg -------------------------------------------------------------------------------- /plants/src/social-skype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-skype.svg -------------------------------------------------------------------------------- /plants/src/social-tumblr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-tumblr.svg -------------------------------------------------------------------------------- /plants/src/social-tux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-tux.svg -------------------------------------------------------------------------------- /plants/src/social-twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-twitch.svg -------------------------------------------------------------------------------- /plants/src/social-usd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-usd.svg -------------------------------------------------------------------------------- /plants/src/social-vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-vimeo.svg -------------------------------------------------------------------------------- /plants/src/social-yahoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-yahoo.svg -------------------------------------------------------------------------------- /plants/src/social-yen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/social-yen.svg -------------------------------------------------------------------------------- /plants/src/soup-can.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/soup-can.svg -------------------------------------------------------------------------------- /plants/src/speakerphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/speakerphone.svg -------------------------------------------------------------------------------- /plants/src/speedometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/speedometer.svg -------------------------------------------------------------------------------- /plants/src/spoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/spoon.svg -------------------------------------------------------------------------------- /plants/src/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/star.svg -------------------------------------------------------------------------------- /plants/src/stats-bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/stats-bars.svg -------------------------------------------------------------------------------- /plants/src/steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/steam.svg -------------------------------------------------------------------------------- /plants/src/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/stop.svg -------------------------------------------------------------------------------- /plants/src/thermometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/thermometer.svg -------------------------------------------------------------------------------- /plants/src/thumbsdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/thumbsdown.svg -------------------------------------------------------------------------------- /plants/src/thumbsup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/thumbsup.svg -------------------------------------------------------------------------------- /plants/src/toggle-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/toggle-filled.svg -------------------------------------------------------------------------------- /plants/src/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/toggle.svg -------------------------------------------------------------------------------- /plants/src/transgender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/transgender.svg -------------------------------------------------------------------------------- /plants/src/trash-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/trash-a.svg -------------------------------------------------------------------------------- /plants/src/trash-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/trash-b.svg -------------------------------------------------------------------------------- /plants/src/trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/trophy.svg -------------------------------------------------------------------------------- /plants/src/tshirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/tshirt.svg -------------------------------------------------------------------------------- /plants/src/umbrella.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/umbrella.svg -------------------------------------------------------------------------------- /plants/src/university.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/university.svg -------------------------------------------------------------------------------- /plants/src/unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/unlocked.svg -------------------------------------------------------------------------------- /plants/src/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/upload.svg -------------------------------------------------------------------------------- /plants/src/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/usb.svg -------------------------------------------------------------------------------- /plants/src/videocamera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/videocamera.svg -------------------------------------------------------------------------------- /plants/src/volume-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/volume-high.svg -------------------------------------------------------------------------------- /plants/src/volume-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/volume-low.svg -------------------------------------------------------------------------------- /plants/src/volume-medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/volume-medium.svg -------------------------------------------------------------------------------- /plants/src/volume-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/volume-mute.svg -------------------------------------------------------------------------------- /plants/src/wand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/wand.svg -------------------------------------------------------------------------------- /plants/src/waterdrop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/waterdrop.svg -------------------------------------------------------------------------------- /plants/src/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/wifi.svg -------------------------------------------------------------------------------- /plants/src/wineglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/wineglass.svg -------------------------------------------------------------------------------- /plants/src/woman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/woman.svg -------------------------------------------------------------------------------- /plants/src/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/wrench.svg -------------------------------------------------------------------------------- /plants/src/xbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/src/xbox.svg -------------------------------------------------------------------------------- /plants/static/js/sb-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/static/js/sb-admin.js -------------------------------------------------------------------------------- /plants/static/plant_st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/static/plant_st.png -------------------------------------------------------------------------------- /plants/static/plants/abs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/static/plants/abs.jpg -------------------------------------------------------------------------------- /plants/static/plants/js/jq.min.js.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plants/templates/abs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/templates/abs.jpg -------------------------------------------------------------------------------- /plants/templates/leef.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/templates/leef.jpg -------------------------------------------------------------------------------- /plants/templates/leef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/templates/leef1.jpg -------------------------------------------------------------------------------- /plants/templates/pie1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/templates/pie1.html -------------------------------------------------------------------------------- /plants/templates/pie2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/templates/pie2.html -------------------------------------------------------------------------------- /plants/templates/plant1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/templates/plant1.html -------------------------------------------------------------------------------- /plants/templates/plant2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/templates/plant2.html -------------------------------------------------------------------------------- /plants/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/tests.py -------------------------------------------------------------------------------- /plants/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/urls.py -------------------------------------------------------------------------------- /plants/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/urls.pyc -------------------------------------------------------------------------------- /plants/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/views.py -------------------------------------------------------------------------------- /plants/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/plants/views.pyc -------------------------------------------------------------------------------- /rasberry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/rasberry.py -------------------------------------------------------------------------------- /sensors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sensors/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/sensors/__init__.pyc -------------------------------------------------------------------------------- /sensors/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/sensors/admin.py -------------------------------------------------------------------------------- /sensors/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/sensors/admin.pyc -------------------------------------------------------------------------------- /sensors/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/sensors/apps.py -------------------------------------------------------------------------------- /sensors/apps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/sensors/apps.pyc -------------------------------------------------------------------------------- /sensors/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sensors/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/sensors/models.py -------------------------------------------------------------------------------- /sensors/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/sensors/models.pyc -------------------------------------------------------------------------------- /sensors/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/sensors/tests.py -------------------------------------------------------------------------------- /sensors/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/sensors/urls.py -------------------------------------------------------------------------------- /sensors/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/sensors/urls.pyc -------------------------------------------------------------------------------- /sensors/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/sensors/views.py -------------------------------------------------------------------------------- /sensors/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garvitkataria/Smart-Plant-Management-Agriculture-System/HEAD/sensors/views.pyc --------------------------------------------------------------------------------