├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Acces.php ├── Activity.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── AccessManageController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── AuthManageController.php │ │ ├── Controller.php │ │ ├── HomeController.php │ │ ├── ProductManageController.php │ │ ├── ProfileManageController.php │ │ ├── ReportManageController.php │ │ ├── SearchManageController.php │ │ ├── SupplyManageController.php │ │ ├── TransactionManageController.php │ │ ├── UserManageController.php │ │ └── ViewManageController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── CheckRole.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Imports │ ├── ProductImport.php │ └── SupplyImport.php ├── Market.php ├── Product.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Supply.php ├── Supply_system.php ├── Transaction.php └── User.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── excel.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2020_05_22_230351_create_product_table.php │ ├── 2020_05_26_114219_create_supply_table.php │ ├── 2020_05_26_123200_create_trigger_supply.php │ ├── 2020_06_03_202123_create_supply_system.php │ ├── 2020_06_03_202129_create_transaction_table.php │ ├── 2020_06_10_225325_create_access_table.php │ ├── 2020_06_12_133440_create_activity_table.php │ └── 2020_06_15_205927_create_market_table.php └── seeds │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── css │ │ ├── demo_1 │ │ │ ├── style.css │ │ │ └── style.css.map │ │ └── shared │ │ │ ├── style.css │ │ │ └── style.css.map │ ├── fonts │ │ └── Roboto │ │ │ ├── LICENSE.txt │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ └── Roboto-ThinItalic.ttf │ ├── images │ │ ├── auth │ │ │ ├── login_1.jpg │ │ │ ├── login_2.jpg │ │ │ ├── register.jpg │ │ │ └── register_2.jpg │ │ ├── carousel │ │ │ ├── banner_1.jpg │ │ │ ├── banner_10.jpg │ │ │ ├── banner_11.jpg │ │ │ ├── banner_12.jpg │ │ │ ├── banner_2.jpg │ │ │ ├── banner_3.jpg │ │ │ ├── banner_4.jpg │ │ │ ├── banner_5.jpg │ │ │ ├── banner_6.jpg │ │ │ ├── banner_7.jpg │ │ │ ├── banner_8.jpg │ │ │ ├── banner_9.jpg │ │ │ ├── dashboard_slides.jpg │ │ │ ├── lock_bg.jpg │ │ │ ├── login_1.jpg │ │ │ ├── login_2.jpg │ │ │ ├── register.jpg │ │ │ └── register_1.jpg │ │ ├── chat │ │ │ ├── profile_image.jpg │ │ │ ├── thumb_image1.jpg │ │ │ ├── thumb_image2.jpg │ │ │ ├── thumb_image3.jpg │ │ │ ├── thumb_image4.jpg │ │ │ ├── thumb_image5.jpg │ │ │ ├── thumb_image6.jpg │ │ │ ├── thumb_image7.jpg │ │ │ └── thumb_image8.jpg │ │ ├── dashboard │ │ │ ├── banner_bg.jpg │ │ │ ├── banner_img.png │ │ │ ├── img_1.jpg │ │ │ ├── img_2.jpg │ │ │ ├── img_3.jpg │ │ │ ├── profile-card.jpg │ │ │ ├── progress-card-bg.jpg │ │ │ └── weather-card.jpg │ │ ├── email │ │ │ ├── fb.png │ │ │ ├── mail-image.jpg │ │ │ ├── medium.png │ │ │ ├── slack.png │ │ │ ├── twitter.png │ │ │ └── youtube.png │ │ ├── faces-clipart │ │ │ ├── pic-1.png │ │ │ ├── pic-2.png │ │ │ ├── pic-3.png │ │ │ └── pic-4.png │ │ ├── faces │ │ │ ├── face1.jpg │ │ │ ├── face10.jpg │ │ │ ├── face11.jpg │ │ │ ├── face12.jpg │ │ │ ├── face13.jpg │ │ │ ├── face14.jpg │ │ │ ├── face15.jpg │ │ │ ├── face16.jpg │ │ │ ├── face17.jpg │ │ │ ├── face18.jpg │ │ │ ├── face19.jpg │ │ │ ├── face2.jpg │ │ │ ├── face20.jpg │ │ │ ├── face21.jpg │ │ │ ├── face22.jpg │ │ │ ├── face23.jpg │ │ │ ├── face24.jpg │ │ │ ├── face25.jpg │ │ │ ├── face26.jpg │ │ │ ├── face27.jpg │ │ │ ├── face3.jpg │ │ │ ├── face4.jpg │ │ │ ├── face5.jpg │ │ │ ├── face6.jpg │ │ │ ├── face7.jpg │ │ │ ├── face8.jpg │ │ │ ├── face9.jpg │ │ │ └── profile │ │ │ │ └── profile.jpg │ │ ├── favicon.png │ │ ├── file-icons │ │ │ ├── 64 │ │ │ │ ├── 001-interface-1.png │ │ │ │ ├── 002-tool.png │ │ │ │ ├── 003-interface.png │ │ │ │ ├── 004-folder-1.png │ │ │ │ ├── 005-database.png │ │ │ │ ├── 006-record.png │ │ │ │ ├── 007-folder.png │ │ │ │ └── 008-archive.png │ │ │ ├── 128 │ │ │ │ ├── 001-interface-1.png │ │ │ │ ├── 002-tool.png │ │ │ │ ├── 003-interface.png │ │ │ │ ├── 004-folder-1.png │ │ │ │ ├── 005-database.png │ │ │ │ ├── 006-record.png │ │ │ │ ├── 007-folder.png │ │ │ │ └── 008-archive.png │ │ │ ├── 256 │ │ │ │ ├── 001-interface-1.png │ │ │ │ ├── 002-tool.png │ │ │ │ ├── 003-interface.png │ │ │ │ ├── 004-folder-1.png │ │ │ │ ├── 005-database.png │ │ │ │ ├── 006-record.png │ │ │ │ ├── 007-folder.png │ │ │ │ └── 008-archive.png │ │ │ ├── 512 │ │ │ │ ├── 001-interface-1.png │ │ │ │ ├── 002-tool.png │ │ │ │ ├── 003-interface.png │ │ │ │ ├── 004-folder-1.png │ │ │ │ ├── 005-database.png │ │ │ │ ├── 006-record.png │ │ │ │ ├── 007-folder.png │ │ │ │ └── 008-archive.png │ │ │ ├── Internet-Explorer.png │ │ │ ├── Safari.png │ │ │ ├── chrome.png │ │ │ ├── extension │ │ │ │ ├── corrupted-file.png │ │ │ │ ├── css.png │ │ │ │ ├── database.png │ │ │ │ ├── doc-file.png │ │ │ │ ├── document.png │ │ │ │ ├── download-file.png │ │ │ │ ├── folder-open.png │ │ │ │ ├── folder.png │ │ │ │ ├── git-file.png │ │ │ │ ├── html.png │ │ │ │ ├── js-file.png │ │ │ │ ├── pdf.png │ │ │ │ ├── server-2.png │ │ │ │ ├── server.png │ │ │ │ ├── zip-file.png │ │ │ │ └── zip.png │ │ │ ├── firefox.png │ │ │ ├── icon-3.svg │ │ │ ├── icon-google.svg │ │ │ ├── opera.png │ │ │ └── vivaldi.png │ │ ├── lazy-load │ │ │ ├── 1.jpg │ │ │ ├── 1_small.jpg │ │ │ ├── 2.jpg │ │ │ ├── 2_small.jpg │ │ │ ├── 3.jpg │ │ │ ├── 3_small.jpg │ │ │ ├── 4.jpg │ │ │ ├── 4_small.jpg │ │ │ ├── 5.jpg │ │ │ ├── 5_small.jpg │ │ │ ├── 6.jpg │ │ │ └── 6_small.jpg │ │ ├── lightbox │ │ │ ├── play-button.png │ │ │ ├── thumb-v-v-1.jpg │ │ │ ├── thumb-v-v-2.jpg │ │ │ ├── thumb-v-y-1.jpg │ │ │ └── thumb-v-y-2.jpg │ │ ├── logo-mini-4.svg │ │ ├── logo-mini.svg │ │ ├── logo-mini_10.svg │ │ ├── logo-mini_11.svg │ │ ├── logo-mini_3.svg │ │ ├── logo-mini_5.svg │ │ ├── logo-mini_6.svg │ │ ├── logo-mini_7.svg │ │ ├── logo.svg │ │ ├── logo_10.svg │ │ ├── logo_11.svg │ │ ├── logo_2.svg │ │ ├── logo_3.svg │ │ ├── logo_5.svg │ │ ├── logo_6.svg │ │ ├── logo_7.svg │ │ ├── logo_8.svg │ │ ├── logo_9.svg │ │ ├── logo_blue.svg │ │ ├── logo_dark.svg │ │ ├── logo_dark_mini.svg │ │ ├── logo_star_white.svg │ │ ├── product_images │ │ │ ├── Homepod.png │ │ │ ├── apple-watch.jpg │ │ │ ├── apple-watch_2.jpg │ │ │ ├── baf.jpeg │ │ │ ├── ball.jpeg │ │ │ ├── beats-headphone.jpg │ │ │ ├── headphone.jpeg │ │ │ ├── homepod_small.png │ │ │ ├── imac.png │ │ │ ├── iphone-x.jpg │ │ │ ├── iphone.png │ │ │ ├── macbook-pro.png │ │ │ ├── magic-mouse.png │ │ │ ├── shoe.jpeg │ │ │ ├── shoe_2.jpeg │ │ │ ├── shoe_3.jpeg │ │ │ └── watch.jpeg │ │ ├── product_images_2 │ │ │ ├── thumb_image1.jpg │ │ │ ├── thumb_image10.jpg │ │ │ ├── thumb_image11.jpg │ │ │ ├── thumb_image12.jpg │ │ │ ├── thumb_image2.jpg │ │ │ ├── thumb_image3.jpg │ │ │ ├── thumb_image4.jpg │ │ │ ├── thumb_image5.jpg │ │ │ ├── thumb_image6.jpg │ │ │ ├── thumb_image7.jpg │ │ │ ├── thumb_image8.jpg │ │ │ └── thumb_image9.jpg │ │ ├── samples │ │ │ ├── 1280x768 │ │ │ │ ├── 1.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 11.jpg │ │ │ │ ├── 12.jpg │ │ │ │ ├── 13.jpg │ │ │ │ ├── 14.jpg │ │ │ │ ├── 15.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 8.jpg │ │ │ │ └── 9.jpg │ │ │ ├── 300x300 │ │ │ │ ├── 1.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 11.jpg │ │ │ │ ├── 12.jpg │ │ │ │ ├── 13.jpg │ │ │ │ ├── 14.jpg │ │ │ │ ├── 15.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 8.jpg │ │ │ │ └── 9.jpg │ │ │ ├── Login_bg.jpg │ │ │ ├── Login_bg2.jpg │ │ │ ├── Mac.png │ │ │ ├── angular-4.png │ │ │ ├── bg_1.jpg │ │ │ ├── bootstrap-stack.png │ │ │ ├── charts.png │ │ │ ├── dashboard.png │ │ │ ├── e-commerce.png │ │ │ ├── editors.png │ │ │ ├── email.png │ │ │ ├── footer_bg.jpg │ │ │ ├── forms.png │ │ │ ├── html5.png │ │ │ ├── invoice_banner.jpg │ │ │ ├── lockscreen-bg.jpg │ │ │ ├── modal.png │ │ │ ├── popup.png │ │ │ ├── profile_page │ │ │ │ ├── banner_01.jpg │ │ │ │ ├── banner_02.jpg │ │ │ │ ├── logo │ │ │ │ │ ├── 01.png │ │ │ │ │ ├── 02.png │ │ │ │ │ └── 03.png │ │ │ │ ├── profile_header_banner.jpg │ │ │ │ └── thumbnail │ │ │ │ │ ├── 01.jpg │ │ │ │ │ ├── 02.jpg │ │ │ │ │ ├── 03.jpg │ │ │ │ │ ├── 04.jpg │ │ │ │ │ ├── 05.jpg │ │ │ │ │ ├── 06.jpg │ │ │ │ │ ├── 07.jpg │ │ │ │ │ ├── 08.jpg │ │ │ │ │ ├── 09.jpg │ │ │ │ │ ├── 10.jpg │ │ │ │ │ ├── 11.jpg │ │ │ │ │ └── 12.jpg │ │ │ ├── tab_preview │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ └── 05.png │ │ │ ├── weather.svg │ │ │ └── widgets.png │ │ ├── screenshots │ │ │ ├── Marketing-dashboard.jpg │ │ │ ├── analytics-dasboard.jpg │ │ │ ├── classic-dashboard.jpg │ │ │ ├── crm-dashboard.jpg │ │ │ ├── dark-dashboard.png │ │ │ ├── default-dark.jpg │ │ │ ├── default-two.jpg │ │ │ ├── default.jpg │ │ │ ├── e-commerce_dashboard.jpg │ │ │ ├── finance-dashboard.jpg │ │ │ ├── horizontal-screens.jpg │ │ │ └── modern-dashboard.jpg │ │ ├── social_icons │ │ │ ├── facebook.svg │ │ │ ├── google_plus.svg │ │ │ ├── instagram.svg │ │ │ ├── twitter.svg │ │ │ └── youtube.svg │ │ ├── sprites │ │ │ ├── blue.png │ │ │ ├── dark.png │ │ │ ├── flag.png │ │ │ ├── green.png │ │ │ ├── jsgrid-icons.png │ │ │ ├── logo-mini.svg │ │ │ ├── red.png │ │ │ └── yellow.png │ │ ├── thumb_images │ │ │ ├── thumb_image1.jpg │ │ │ ├── thumb_image2.jpg │ │ │ ├── thumb_image3.jpg │ │ │ ├── thumb_image4.jpg │ │ │ ├── thumb_image5.jpg │ │ │ ├── thumb_image6.jpg │ │ │ ├── thumb_image7.jpg │ │ │ ├── thumb_image8.jpg │ │ │ └── thumb_image9.jpg │ │ └── weather_icons │ │ │ ├── sun.svg │ │ │ └── sunset.svg │ ├── js │ │ ├── demo_1 │ │ │ └── dashboard.js │ │ └── shared │ │ │ ├── chart.js │ │ │ ├── misc.js │ │ │ └── off-canvas.js │ ├── scss │ │ ├── demo_1 │ │ │ ├── _card.scss │ │ │ ├── _dashboard.scss │ │ │ ├── _footer.scss │ │ │ ├── _layouts.scss │ │ │ ├── _misc.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _variables.scss │ │ │ └── style.scss │ │ └── shared │ │ │ ├── _dashboard.scss │ │ │ ├── _demo.scss │ │ │ ├── _fonts.scss │ │ │ ├── _functions.scss │ │ │ ├── _misc.scss │ │ │ ├── _reset.scss │ │ │ ├── _typography.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── components │ │ │ ├── _bootstrap-progress.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _checkbox-radio.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _icons.scss │ │ │ ├── _lists.scss │ │ │ ├── _preview.scss │ │ │ ├── _purchase-banner.scss │ │ │ ├── _tables.scss │ │ │ ├── _timeline.scss │ │ │ └── plugin-overrides │ │ │ │ └── _chartjs.scss │ │ │ ├── mixins │ │ │ ├── _animation.scss │ │ │ ├── _background.scss │ │ │ ├── _blockqoute.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _misc.scss │ │ │ └── _text.scss │ │ │ ├── screens │ │ │ ├── _auth.scss │ │ │ └── _error.scss │ │ │ └── style.scss │ └── vendors │ │ ├── ace-builds │ │ └── src-min │ │ │ ├── ace.js │ │ │ ├── ext-beautify.js │ │ │ ├── ext-chromevox.js │ │ │ ├── ext-elastic_tabstops_lite.js │ │ │ ├── ext-emmet.js │ │ │ ├── ext-error_marker.js │ │ │ ├── ext-keybinding_menu.js │ │ │ ├── ext-language_tools.js │ │ │ ├── ext-linking.js │ │ │ ├── ext-modelist.js │ │ │ ├── ext-old_ie.js │ │ │ ├── ext-searchbox.js │ │ │ ├── ext-settings_menu.js │ │ │ ├── ext-spellcheck.js │ │ │ ├── ext-split.js │ │ │ ├── ext-static_highlight.js │ │ │ ├── ext-statusbar.js │ │ │ ├── ext-textarea.js │ │ │ ├── ext-themelist.js │ │ │ ├── ext-whitespace.js │ │ │ ├── keybinding-emacs.js │ │ │ ├── keybinding-vim.js │ │ │ ├── mode-abap.js │ │ │ ├── mode-abc.js │ │ │ ├── mode-actionscript.js │ │ │ ├── mode-ada.js │ │ │ ├── mode-apache_conf.js │ │ │ ├── mode-applescript.js │ │ │ ├── mode-asciidoc.js │ │ │ ├── mode-assembly_x86.js │ │ │ ├── mode-autohotkey.js │ │ │ ├── mode-batchfile.js │ │ │ ├── mode-bro.js │ │ │ ├── mode-c9search.js │ │ │ ├── mode-c_cpp.js │ │ │ ├── mode-cirru.js │ │ │ ├── mode-clojure.js │ │ │ ├── mode-cobol.js │ │ │ ├── mode-coffee.js │ │ │ ├── mode-coldfusion.js │ │ │ ├── mode-csharp.js │ │ │ ├── mode-csound_document.js │ │ │ ├── mode-csound_orchestra.js │ │ │ ├── mode-csound_score.js │ │ │ ├── mode-css.js │ │ │ ├── mode-curly.js │ │ │ ├── mode-d.js │ │ │ ├── mode-dart.js │ │ │ ├── mode-diff.js │ │ │ ├── mode-django.js │ │ │ ├── mode-dockerfile.js │ │ │ ├── mode-dot.js │ │ │ ├── mode-drools.js │ │ │ ├── mode-eiffel.js │ │ │ ├── mode-ejs.js │ │ │ ├── mode-elixir.js │ │ │ ├── mode-elm.js │ │ │ ├── mode-erlang.js │ │ │ ├── mode-forth.js │ │ │ ├── mode-fortran.js │ │ │ ├── mode-ftl.js │ │ │ ├── mode-gcode.js │ │ │ ├── mode-gherkin.js │ │ │ ├── mode-gitignore.js │ │ │ ├── mode-glsl.js │ │ │ ├── mode-gobstones.js │ │ │ ├── mode-golang.js │ │ │ ├── mode-graphqlschema.js │ │ │ ├── mode-groovy.js │ │ │ ├── mode-haml.js │ │ │ ├── mode-handlebars.js │ │ │ ├── mode-haskell.js │ │ │ ├── mode-haskell_cabal.js │ │ │ ├── mode-haxe.js │ │ │ ├── mode-hjson.js │ │ │ ├── mode-html.js │ │ │ ├── mode-html_elixir.js │ │ │ ├── mode-html_ruby.js │ │ │ ├── mode-ini.js │ │ │ ├── mode-io.js │ │ │ ├── mode-jack.js │ │ │ ├── mode-jade.js │ │ │ ├── mode-java.js │ │ │ ├── mode-javascript.js │ │ │ ├── mode-json.js │ │ │ ├── mode-jsoniq.js │ │ │ ├── mode-jsp.js │ │ │ ├── mode-jssm.js │ │ │ ├── mode-jsx.js │ │ │ ├── mode-julia.js │ │ │ ├── mode-kotlin.js │ │ │ ├── mode-latex.js │ │ │ ├── mode-lean.js │ │ │ ├── mode-less.js │ │ │ ├── mode-liquid.js │ │ │ ├── mode-lisp.js │ │ │ ├── mode-live_script.js │ │ │ ├── mode-livescript.js │ │ │ ├── mode-logiql.js │ │ │ ├── mode-lsl.js │ │ │ ├── mode-lua.js │ │ │ ├── mode-luapage.js │ │ │ ├── mode-lucene.js │ │ │ ├── mode-makefile.js │ │ │ ├── mode-markdown.js │ │ │ ├── mode-mask.js │ │ │ ├── mode-matlab.js │ │ │ ├── mode-maze.js │ │ │ ├── mode-mel.js │ │ │ ├── mode-mips_assembler.js │ │ │ ├── mode-mipsassembler.js │ │ │ ├── mode-mushcode.js │ │ │ ├── mode-mysql.js │ │ │ ├── mode-nix.js │ │ │ ├── mode-nsis.js │ │ │ ├── mode-objectivec.js │ │ │ ├── mode-ocaml.js │ │ │ ├── mode-pascal.js │ │ │ ├── mode-perl.js │ │ │ ├── mode-pgsql.js │ │ │ ├── mode-php.js │ │ │ ├── mode-pig.js │ │ │ ├── mode-plain_text.js │ │ │ ├── mode-powershell.js │ │ │ ├── mode-praat.js │ │ │ ├── mode-prolog.js │ │ │ ├── mode-properties.js │ │ │ ├── mode-protobuf.js │ │ │ ├── mode-python.js │ │ │ ├── mode-r.js │ │ │ ├── mode-razor.js │ │ │ ├── mode-rdoc.js │ │ │ ├── mode-red.js │ │ │ ├── mode-rhtml.js │ │ │ ├── mode-rst.js │ │ │ ├── mode-ruby.js │ │ │ ├── mode-rust.js │ │ │ ├── mode-sass.js │ │ │ ├── mode-scad.js │ │ │ ├── mode-scala.js │ │ │ ├── mode-scheme.js │ │ │ ├── mode-scss.js │ │ │ ├── mode-sh.js │ │ │ ├── mode-sjs.js │ │ │ ├── mode-smarty.js │ │ │ ├── mode-snippets.js │ │ │ ├── mode-soy_template.js │ │ │ ├── mode-space.js │ │ │ ├── mode-sparql.js │ │ │ ├── mode-sql.js │ │ │ ├── mode-sqlserver.js │ │ │ ├── mode-stylus.js │ │ │ ├── mode-svg.js │ │ │ ├── mode-swift.js │ │ │ ├── mode-swig.js │ │ │ ├── mode-tcl.js │ │ │ ├── mode-tex.js │ │ │ ├── mode-text.js │ │ │ ├── mode-textile.js │ │ │ ├── mode-toml.js │ │ │ ├── mode-tsx.js │ │ │ ├── mode-turtle.js │ │ │ ├── mode-twig.js │ │ │ ├── mode-typescript.js │ │ │ ├── mode-vala.js │ │ │ ├── mode-vbscript.js │ │ │ ├── mode-velocity.js │ │ │ ├── mode-verilog.js │ │ │ ├── mode-vhdl.js │ │ │ ├── mode-wollok.js │ │ │ ├── mode-xml.js │ │ │ ├── mode-xquery.js │ │ │ ├── mode-yaml.js │ │ │ ├── snippets │ │ │ ├── abap.js │ │ │ ├── abc.js │ │ │ ├── actionscript.js │ │ │ ├── ada.js │ │ │ ├── apache_conf.js │ │ │ ├── applescript.js │ │ │ ├── asciidoc.js │ │ │ ├── assembly_x86.js │ │ │ ├── autohotkey.js │ │ │ ├── batchfile.js │ │ │ ├── bro.js │ │ │ ├── c9search.js │ │ │ ├── c_cpp.js │ │ │ ├── cirru.js │ │ │ ├── clojure.js │ │ │ ├── cobol.js │ │ │ ├── coffee.js │ │ │ ├── coldfusion.js │ │ │ ├── csharp.js │ │ │ ├── csound_document.js │ │ │ ├── csound_orchestra.js │ │ │ ├── csound_score.js │ │ │ ├── css.js │ │ │ ├── curly.js │ │ │ ├── d.js │ │ │ ├── dart.js │ │ │ ├── diff.js │ │ │ ├── django.js │ │ │ ├── dockerfile.js │ │ │ ├── dot.js │ │ │ ├── drools.js │ │ │ ├── eiffel.js │ │ │ ├── ejs.js │ │ │ ├── elixir.js │ │ │ ├── elm.js │ │ │ ├── erlang.js │ │ │ ├── forth.js │ │ │ ├── fortran.js │ │ │ ├── ftl.js │ │ │ ├── gcode.js │ │ │ ├── gherkin.js │ │ │ ├── gitignore.js │ │ │ ├── glsl.js │ │ │ ├── gobstones.js │ │ │ ├── golang.js │ │ │ ├── graphqlschema.js │ │ │ ├── groovy.js │ │ │ ├── haml.js │ │ │ ├── handlebars.js │ │ │ ├── haskell.js │ │ │ ├── haskell_cabal.js │ │ │ ├── haxe.js │ │ │ ├── hjson.js │ │ │ ├── html.js │ │ │ ├── html_elixir.js │ │ │ ├── html_ruby.js │ │ │ ├── ini.js │ │ │ ├── io.js │ │ │ ├── jack.js │ │ │ ├── jade.js │ │ │ ├── java.js │ │ │ ├── javascript.js │ │ │ ├── json.js │ │ │ ├── jsoniq.js │ │ │ ├── jsp.js │ │ │ ├── jssm.js │ │ │ ├── jsx.js │ │ │ ├── julia.js │ │ │ ├── kotlin.js │ │ │ ├── latex.js │ │ │ ├── lean.js │ │ │ ├── less.js │ │ │ ├── liquid.js │ │ │ ├── lisp.js │ │ │ ├── live_script.js │ │ │ ├── livescript.js │ │ │ ├── logiql.js │ │ │ ├── lsl.js │ │ │ ├── lua.js │ │ │ ├── luapage.js │ │ │ ├── lucene.js │ │ │ ├── makefile.js │ │ │ ├── markdown.js │ │ │ ├── mask.js │ │ │ ├── matlab.js │ │ │ ├── maze.js │ │ │ ├── mel.js │ │ │ ├── mips_assembler.js │ │ │ ├── mipsassembler.js │ │ │ ├── mushcode.js │ │ │ ├── mysql.js │ │ │ ├── nix.js │ │ │ ├── nsis.js │ │ │ ├── objectivec.js │ │ │ ├── ocaml.js │ │ │ ├── pascal.js │ │ │ ├── perl.js │ │ │ ├── pgsql.js │ │ │ ├── php.js │ │ │ ├── pig.js │ │ │ ├── plain_text.js │ │ │ ├── powershell.js │ │ │ ├── praat.js │ │ │ ├── prolog.js │ │ │ ├── properties.js │ │ │ ├── protobuf.js │ │ │ ├── python.js │ │ │ ├── r.js │ │ │ ├── razor.js │ │ │ ├── rdoc.js │ │ │ ├── red.js │ │ │ ├── rhtml.js │ │ │ ├── rst.js │ │ │ ├── ruby.js │ │ │ ├── rust.js │ │ │ ├── sass.js │ │ │ ├── scad.js │ │ │ ├── scala.js │ │ │ ├── scheme.js │ │ │ ├── scss.js │ │ │ ├── sh.js │ │ │ ├── sjs.js │ │ │ ├── smarty.js │ │ │ ├── snippets.js │ │ │ ├── soy_template.js │ │ │ ├── space.js │ │ │ ├── sparql.js │ │ │ ├── sql.js │ │ │ ├── sqlserver.js │ │ │ ├── stylus.js │ │ │ ├── svg.js │ │ │ ├── swift.js │ │ │ ├── swig.js │ │ │ ├── tcl.js │ │ │ ├── tex.js │ │ │ ├── text.js │ │ │ ├── textile.js │ │ │ ├── toml.js │ │ │ ├── tsx.js │ │ │ ├── turtle.js │ │ │ ├── twig.js │ │ │ ├── typescript.js │ │ │ ├── vala.js │ │ │ ├── vbscript.js │ │ │ ├── velocity.js │ │ │ ├── verilog.js │ │ │ ├── vhdl.js │ │ │ ├── wollok.js │ │ │ ├── xml.js │ │ │ ├── xquery.js │ │ │ └── yaml.js │ │ │ ├── theme-ambiance.js │ │ │ ├── theme-chaos.js │ │ │ ├── theme-chrome.js │ │ │ ├── theme-clouds.js │ │ │ ├── theme-clouds_midnight.js │ │ │ ├── theme-cobalt.js │ │ │ ├── theme-crimson_editor.js │ │ │ ├── theme-dawn.js │ │ │ ├── theme-dracula.js │ │ │ ├── theme-dreamweaver.js │ │ │ ├── theme-eclipse.js │ │ │ ├── theme-github.js │ │ │ ├── theme-gob.js │ │ │ ├── theme-gruvbox.js │ │ │ ├── theme-idle_fingers.js │ │ │ ├── theme-iplastic.js │ │ │ ├── theme-katzenmilch.js │ │ │ ├── theme-kr_theme.js │ │ │ ├── theme-kuroir.js │ │ │ ├── theme-merbivore.js │ │ │ ├── theme-merbivore_soft.js │ │ │ ├── theme-mono_industrial.js │ │ │ ├── theme-monokai.js │ │ │ ├── theme-pastel_on_dark.js │ │ │ ├── theme-solarized_dark.js │ │ │ ├── theme-solarized_light.js │ │ │ ├── theme-sqlserver.js │ │ │ ├── theme-terminal.js │ │ │ ├── theme-textmate.js │ │ │ ├── theme-tomorrow.js │ │ │ ├── theme-tomorrow_night.js │ │ │ ├── theme-tomorrow_night_blue.js │ │ │ ├── theme-tomorrow_night_bright.js │ │ │ ├── theme-tomorrow_night_eighties.js │ │ │ ├── theme-twilight.js │ │ │ ├── theme-vibrant_ink.js │ │ │ ├── theme-xcode.js │ │ │ ├── worker-coffee.js │ │ │ ├── worker-css.js │ │ │ ├── worker-html.js │ │ │ ├── worker-javascript.js │ │ │ ├── worker-json.js │ │ │ ├── worker-lua.js │ │ │ ├── worker-php.js │ │ │ ├── worker-xml.js │ │ │ └── worker-xquery.js │ │ ├── css │ │ ├── vendor.bundle.addons.css │ │ └── vendor.bundle.base.css │ │ ├── datepicker-locals │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ ├── bootstrap-datepicker.ar.min.js │ │ ├── bootstrap-datepicker.az.min.js │ │ ├── bootstrap-datepicker.bg.min.js │ │ ├── bootstrap-datepicker.bn.min.js │ │ ├── bootstrap-datepicker.br.min.js │ │ ├── bootstrap-datepicker.bs.min.js │ │ ├── bootstrap-datepicker.ca.min.js │ │ ├── bootstrap-datepicker.cs.min.js │ │ ├── bootstrap-datepicker.cy.min.js │ │ ├── bootstrap-datepicker.da.min.js │ │ ├── bootstrap-datepicker.de.min.js │ │ ├── bootstrap-datepicker.el.min.js │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ ├── bootstrap-datepicker.eo.min.js │ │ ├── bootstrap-datepicker.es.min.js │ │ ├── bootstrap-datepicker.et.min.js │ │ ├── bootstrap-datepicker.eu.min.js │ │ ├── bootstrap-datepicker.fa.min.js │ │ ├── bootstrap-datepicker.fi.min.js │ │ ├── bootstrap-datepicker.fo.min.js │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ ├── bootstrap-datepicker.fr.min.js │ │ ├── bootstrap-datepicker.gl.min.js │ │ ├── bootstrap-datepicker.he.min.js │ │ ├── bootstrap-datepicker.hi.min.js │ │ ├── bootstrap-datepicker.hr.min.js │ │ ├── bootstrap-datepicker.hu.min.js │ │ ├── bootstrap-datepicker.hy.min.js │ │ ├── bootstrap-datepicker.id.min.js │ │ ├── bootstrap-datepicker.is.min.js │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ ├── bootstrap-datepicker.it.min.js │ │ ├── bootstrap-datepicker.ja.min.js │ │ ├── bootstrap-datepicker.ka.min.js │ │ ├── bootstrap-datepicker.kh.min.js │ │ ├── bootstrap-datepicker.kk.min.js │ │ ├── bootstrap-datepicker.km.min.js │ │ ├── bootstrap-datepicker.ko.min.js │ │ ├── bootstrap-datepicker.kr.min.js │ │ ├── bootstrap-datepicker.lt.min.js │ │ ├── bootstrap-datepicker.lv.min.js │ │ ├── bootstrap-datepicker.me.min.js │ │ ├── bootstrap-datepicker.mk.min.js │ │ ├── bootstrap-datepicker.mn.min.js │ │ ├── bootstrap-datepicker.ms.min.js │ │ ├── bootstrap-datepicker.nb.min.js │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ ├── bootstrap-datepicker.nl.min.js │ │ ├── bootstrap-datepicker.no.min.js │ │ ├── bootstrap-datepicker.oc.min.js │ │ ├── bootstrap-datepicker.pl.min.js │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ ├── bootstrap-datepicker.pt.min.js │ │ ├── bootstrap-datepicker.ro.min.js │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ ├── bootstrap-datepicker.rs.min.js │ │ ├── bootstrap-datepicker.ru.min.js │ │ ├── bootstrap-datepicker.si.min.js │ │ ├── bootstrap-datepicker.sk.min.js │ │ ├── bootstrap-datepicker.sl.min.js │ │ ├── bootstrap-datepicker.sq.min.js │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ ├── bootstrap-datepicker.sr.min.js │ │ ├── bootstrap-datepicker.sv.min.js │ │ ├── bootstrap-datepicker.sw.min.js │ │ ├── bootstrap-datepicker.ta.min.js │ │ ├── bootstrap-datepicker.tg.min.js │ │ ├── bootstrap-datepicker.th.min.js │ │ ├── bootstrap-datepicker.tr.min.js │ │ ├── bootstrap-datepicker.uk.min.js │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ ├── bootstrap-datepicker.vi.min.js │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ ├── icheck │ │ └── skins │ │ │ ├── all.css │ │ │ ├── flat │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── flat.css │ │ │ ├── flat.png │ │ │ ├── flat@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ ├── futurico.css │ │ │ ├── futurico.png │ │ │ └── futurico@2x.png │ │ │ ├── line │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── blue.css │ │ │ ├── green.css │ │ │ ├── grey.css │ │ │ ├── line.css │ │ │ ├── line.png │ │ │ ├── line@2x.png │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── minimal.css │ │ │ ├── minimal.png │ │ │ ├── minimal@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ ├── polaris.css │ │ │ ├── polaris.png │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── square.css │ │ │ ├── square.png │ │ │ ├── square@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── iconfonts │ │ ├── flag-icon-css │ │ │ ├── Gruntfile.coffee │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── docs.css │ │ │ │ ├── docs.js │ │ │ │ └── docs.less │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── css │ │ │ │ ├── flag-icon.css │ │ │ │ └── flag-icon.min.css │ │ │ ├── flags │ │ │ │ ├── 1x1 │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── af.svg │ │ │ │ │ ├── ag.svg │ │ │ │ │ ├── ai.svg │ │ │ │ │ ├── al.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── ao.svg │ │ │ │ │ ├── aq.svg │ │ │ │ │ ├── ar.svg │ │ │ │ │ ├── as.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── au.svg │ │ │ │ │ ├── aw.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ba.svg │ │ │ │ │ ├── bb.svg │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── bi.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── bm.svg │ │ │ │ │ ├── bn.svg │ │ │ │ │ ├── bo.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── br.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── bt.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── by.svg │ │ │ │ │ ├── bz.svg │ │ │ │ │ ├── ca.svg │ │ │ │ │ ├── cc.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── cf.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── ck.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ ├── cm.svg │ │ │ │ │ ├── cn.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── cu.svg │ │ │ │ │ ├── cv.svg │ │ │ │ │ ├── cw.svg │ │ │ │ │ ├── cx.svg │ │ │ │ │ ├── cy.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── dm.svg │ │ │ │ │ ├── do.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── ec.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── eg.svg │ │ │ │ │ ├── eh.svg │ │ │ │ │ ├── er.svg │ │ │ │ │ ├── es-ct.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── et.svg │ │ │ │ │ ├── eu.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── fj.svg │ │ │ │ │ ├── fk.svg │ │ │ │ │ ├── fm.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── gb-nir.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── gb-wls.svg │ │ │ │ │ ├── gb.svg │ │ │ │ │ ├── gd.svg │ │ │ │ │ ├── ge.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gi.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── gq.svg │ │ │ │ │ ├── gr.svg │ │ │ │ │ ├── gs.svg │ │ │ │ │ ├── gt.svg │ │ │ │ │ ├── gu.svg │ │ │ │ │ ├── gw.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── hk.svg │ │ │ │ │ ├── hm.svg │ │ │ │ │ ├── hn.svg │ │ │ │ │ ├── hr.svg │ │ │ │ │ ├── ht.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── il.svg │ │ │ │ │ ├── im.svg │ │ │ │ │ ├── in.svg │ │ │ │ │ ├── io.svg │ │ │ │ │ ├── iq.svg │ │ │ │ │ ├── ir.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── je.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── jo.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── ke.svg │ │ │ │ │ ├── kg.svg │ │ │ │ │ ├── kh.svg │ │ │ │ │ ├── ki.svg │ │ │ │ │ ├── km.svg │ │ │ │ │ ├── kn.svg │ │ │ │ │ ├── kp.svg │ │ │ │ │ ├── kr.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── ky.svg │ │ │ │ │ ├── kz.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── lb.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── li.svg │ │ │ │ │ ├── lk.svg │ │ │ │ │ ├── lr.svg │ │ │ │ │ ├── ls.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── md.svg │ │ │ │ │ ├── me.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mh.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mm.svg │ │ │ │ │ ├── mn.svg │ │ │ │ │ ├── mo.svg │ │ │ │ │ ├── mp.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── ms.svg │ │ │ │ │ ├── mt.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── mw.svg │ │ │ │ │ ├── mx.svg │ │ │ │ │ ├── my.svg │ │ │ │ │ ├── mz.svg │ │ │ │ │ ├── na.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── nf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ni.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── np.svg │ │ │ │ │ ├── nr.svg │ │ │ │ │ ├── nu.svg │ │ │ │ │ ├── nz.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── pa.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── pf.svg │ │ │ │ │ ├── pg.svg │ │ │ │ │ ├── ph.svg │ │ │ │ │ ├── pk.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── pn.svg │ │ │ │ │ ├── pr.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── pt.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── py.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── rs.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── rw.svg │ │ │ │ │ ├── sa.svg │ │ │ │ │ ├── sb.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── sg.svg │ │ │ │ │ ├── sh.svg │ │ │ │ │ ├── si.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── sk.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── sm.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── st.svg │ │ │ │ │ ├── sv.svg │ │ │ │ │ ├── sx.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── sz.svg │ │ │ │ │ ├── tc.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── tf.svg │ │ │ │ │ ├── tg.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── tj.svg │ │ │ │ │ ├── tk.svg │ │ │ │ │ ├── tl.svg │ │ │ │ │ ├── tm.svg │ │ │ │ │ ├── tn.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── tr.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── tw.svg │ │ │ │ │ ├── tz.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── ug.svg │ │ │ │ │ ├── um.svg │ │ │ │ │ ├── un.svg │ │ │ │ │ ├── us.svg │ │ │ │ │ ├── uy.svg │ │ │ │ │ ├── uz.svg │ │ │ │ │ ├── va.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── ve.svg │ │ │ │ │ ├── vg.svg │ │ │ │ │ ├── vi.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── vu.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── ws.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── za.svg │ │ │ │ │ ├── zm.svg │ │ │ │ │ └── zw.svg │ │ │ │ └── 4x3 │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── af.svg │ │ │ │ │ ├── ag.svg │ │ │ │ │ ├── ai.svg │ │ │ │ │ ├── al.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── ao.svg │ │ │ │ │ ├── aq.svg │ │ │ │ │ ├── ar.svg │ │ │ │ │ ├── as.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── au.svg │ │ │ │ │ ├── aw.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ba.svg │ │ │ │ │ ├── bb.svg │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── bi.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── bm.svg │ │ │ │ │ ├── bn.svg │ │ │ │ │ ├── bo.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── br.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── bt.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── by.svg │ │ │ │ │ ├── bz.svg │ │ │ │ │ ├── ca.svg │ │ │ │ │ ├── cc.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── cf.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── ck.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ ├── cm.svg │ │ │ │ │ ├── cn.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── cu.svg │ │ │ │ │ ├── cv.svg │ │ │ │ │ ├── cw.svg │ │ │ │ │ ├── cx.svg │ │ │ │ │ ├── cy.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── dm.svg │ │ │ │ │ ├── do.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── ec.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── eg.svg │ │ │ │ │ ├── eh.svg │ │ │ │ │ ├── er.svg │ │ │ │ │ ├── es-ct.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── et.svg │ │ │ │ │ ├── eu.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── fj.svg │ │ │ │ │ ├── fk.svg │ │ │ │ │ ├── fm.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── gb-nir.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── gb-wls.svg │ │ │ │ │ ├── gb.svg │ │ │ │ │ ├── gd.svg │ │ │ │ │ ├── ge.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gi.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── gq.svg │ │ │ │ │ ├── gr.svg │ │ │ │ │ ├── gs.svg │ │ │ │ │ ├── gt.svg │ │ │ │ │ ├── gu.svg │ │ │ │ │ ├── gw.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── hk.svg │ │ │ │ │ ├── hm.svg │ │ │ │ │ ├── hn.svg │ │ │ │ │ ├── hr.svg │ │ │ │ │ ├── ht.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── il.svg │ │ │ │ │ ├── im.svg │ │ │ │ │ ├── in.svg │ │ │ │ │ ├── io.svg │ │ │ │ │ ├── iq.svg │ │ │ │ │ ├── ir.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── je.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── jo.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── ke.svg │ │ │ │ │ ├── kg.svg │ │ │ │ │ ├── kh.svg │ │ │ │ │ ├── ki.svg │ │ │ │ │ ├── km.svg │ │ │ │ │ ├── kn.svg │ │ │ │ │ ├── kp.svg │ │ │ │ │ ├── kr.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── ky.svg │ │ │ │ │ ├── kz.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── lb.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── li.svg │ │ │ │ │ ├── lk.svg │ │ │ │ │ ├── lr.svg │ │ │ │ │ ├── ls.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── md.svg │ │ │ │ │ ├── me.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mh.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mm.svg │ │ │ │ │ ├── mn.svg │ │ │ │ │ ├── mo.svg │ │ │ │ │ ├── mp.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── ms.svg │ │ │ │ │ ├── mt.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── mw.svg │ │ │ │ │ ├── mx.svg │ │ │ │ │ ├── my.svg │ │ │ │ │ ├── mz.svg │ │ │ │ │ ├── na.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── nf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ni.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── np.svg │ │ │ │ │ ├── nr.svg │ │ │ │ │ ├── nu.svg │ │ │ │ │ ├── nz.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── pa.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── pf.svg │ │ │ │ │ ├── pg.svg │ │ │ │ │ ├── ph.svg │ │ │ │ │ ├── pk.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── pn.svg │ │ │ │ │ ├── pr.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── pt.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── py.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── rs.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── rw.svg │ │ │ │ │ ├── sa.svg │ │ │ │ │ ├── sb.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── sg.svg │ │ │ │ │ ├── sh.svg │ │ │ │ │ ├── si.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── sk.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── sm.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── st.svg │ │ │ │ │ ├── sv.svg │ │ │ │ │ ├── sx.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── sz.svg │ │ │ │ │ ├── tc.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── tf.svg │ │ │ │ │ ├── tg.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── tj.svg │ │ │ │ │ ├── tk.svg │ │ │ │ │ ├── tl.svg │ │ │ │ │ ├── tm.svg │ │ │ │ │ ├── tn.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── tr.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── tw.svg │ │ │ │ │ ├── tz.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── ug.svg │ │ │ │ │ ├── um.svg │ │ │ │ │ ├── un.svg │ │ │ │ │ ├── us.svg │ │ │ │ │ ├── uy.svg │ │ │ │ │ ├── uz.svg │ │ │ │ │ ├── va.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── ve.svg │ │ │ │ │ ├── vg.svg │ │ │ │ │ ├── vi.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── vu.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── ws.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── za.svg │ │ │ │ │ ├── zm.svg │ │ │ │ │ └── zw.svg │ │ │ ├── index.html │ │ │ ├── less │ │ │ │ ├── flag-icon-base.less │ │ │ │ ├── flag-icon-list.less │ │ │ │ ├── flag-icon-more.less │ │ │ │ ├── flag-icon.less │ │ │ │ └── variables.less │ │ │ ├── package.json │ │ │ └── sass │ │ │ │ ├── _flag-icon-base.scss │ │ │ │ ├── _flag-icon-list.scss │ │ │ │ ├── _flag-icon-more.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── flag-icon.scss │ │ ├── font-awesome │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── README.md │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.css.map │ │ │ │ └── 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 │ │ │ ├── package.json │ │ │ └── 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 │ │ ├── ionicons │ │ │ ├── cheatsheet.html │ │ │ ├── collection │ │ │ │ ├── build │ │ │ │ │ └── ionicons │ │ │ │ │ │ └── svg │ │ │ │ │ │ ├── ios-add-circle-outline.svg │ │ │ │ │ │ ├── ios-add-circle.svg │ │ │ │ │ │ ├── ios-add.svg │ │ │ │ │ │ ├── ios-airplane.svg │ │ │ │ │ │ ├── ios-alarm.svg │ │ │ │ │ │ ├── ios-albums.svg │ │ │ │ │ │ ├── ios-alert.svg │ │ │ │ │ │ ├── ios-american-football.svg │ │ │ │ │ │ ├── ios-analytics.svg │ │ │ │ │ │ ├── ios-aperture.svg │ │ │ │ │ │ ├── ios-apps.svg │ │ │ │ │ │ ├── ios-appstore.svg │ │ │ │ │ │ ├── ios-archive.svg │ │ │ │ │ │ ├── ios-arrow-back.svg │ │ │ │ │ │ ├── ios-arrow-down.svg │ │ │ │ │ │ ├── ios-arrow-dropdown-circle.svg │ │ │ │ │ │ ├── ios-arrow-dropdown.svg │ │ │ │ │ │ ├── ios-arrow-dropleft-circle.svg │ │ │ │ │ │ ├── ios-arrow-dropleft.svg │ │ │ │ │ │ ├── ios-arrow-dropright-circle.svg │ │ │ │ │ │ ├── ios-arrow-dropright.svg │ │ │ │ │ │ ├── ios-arrow-dropup-circle.svg │ │ │ │ │ │ ├── ios-arrow-dropup.svg │ │ │ │ │ │ ├── ios-arrow-forward.svg │ │ │ │ │ │ ├── ios-arrow-round-back.svg │ │ │ │ │ │ ├── ios-arrow-round-down.svg │ │ │ │ │ │ ├── ios-arrow-round-forward.svg │ │ │ │ │ │ ├── ios-arrow-round-up.svg │ │ │ │ │ │ ├── ios-arrow-up.svg │ │ │ │ │ │ ├── ios-at.svg │ │ │ │ │ │ ├── ios-attach.svg │ │ │ │ │ │ ├── ios-backspace.svg │ │ │ │ │ │ ├── ios-barcode.svg │ │ │ │ │ │ ├── ios-baseball.svg │ │ │ │ │ │ ├── ios-basket.svg │ │ │ │ │ │ ├── ios-basketball.svg │ │ │ │ │ │ ├── ios-battery-charging.svg │ │ │ │ │ │ ├── ios-battery-dead.svg │ │ │ │ │ │ ├── ios-battery-full.svg │ │ │ │ │ │ ├── ios-beaker.svg │ │ │ │ │ │ ├── ios-bed.svg │ │ │ │ │ │ ├── ios-beer.svg │ │ │ │ │ │ ├── ios-bicycle.svg │ │ │ │ │ │ ├── ios-bluetooth.svg │ │ │ │ │ │ ├── ios-boat.svg │ │ │ │ │ │ ├── ios-body.svg │ │ │ │ │ │ ├── ios-bonfire.svg │ │ │ │ │ │ ├── ios-book.svg │ │ │ │ │ │ ├── ios-bookmark.svg │ │ │ │ │ │ ├── ios-bookmarks.svg │ │ │ │ │ │ ├── ios-bowtie.svg │ │ │ │ │ │ ├── ios-briefcase.svg │ │ │ │ │ │ ├── ios-browsers.svg │ │ │ │ │ │ ├── ios-brush.svg │ │ │ │ │ │ ├── ios-bug.svg │ │ │ │ │ │ ├── ios-build.svg │ │ │ │ │ │ ├── ios-bulb.svg │ │ │ │ │ │ ├── ios-bus.svg │ │ │ │ │ │ ├── ios-business.svg │ │ │ │ │ │ ├── ios-cafe.svg │ │ │ │ │ │ ├── ios-calculator.svg │ │ │ │ │ │ ├── ios-calendar.svg │ │ │ │ │ │ ├── ios-call.svg │ │ │ │ │ │ ├── ios-camera.svg │ │ │ │ │ │ ├── ios-car.svg │ │ │ │ │ │ ├── ios-card.svg │ │ │ │ │ │ ├── ios-cart.svg │ │ │ │ │ │ ├── ios-cash.svg │ │ │ │ │ │ ├── ios-cellular.svg │ │ │ │ │ │ ├── ios-chatboxes.svg │ │ │ │ │ │ ├── ios-chatbubbles.svg │ │ │ │ │ │ ├── ios-checkbox-outline.svg │ │ │ │ │ │ ├── ios-checkbox.svg │ │ │ │ │ │ ├── ios-checkmark-circle-outline.svg │ │ │ │ │ │ ├── ios-checkmark-circle.svg │ │ │ │ │ │ ├── ios-checkmark.svg │ │ │ │ │ │ ├── ios-clipboard.svg │ │ │ │ │ │ ├── ios-clock.svg │ │ │ │ │ │ ├── ios-close-circle-outline.svg │ │ │ │ │ │ ├── ios-close-circle.svg │ │ │ │ │ │ ├── ios-close.svg │ │ │ │ │ │ ├── ios-cloud-circle.svg │ │ │ │ │ │ ├── ios-cloud-done.svg │ │ │ │ │ │ ├── ios-cloud-download.svg │ │ │ │ │ │ ├── ios-cloud-outline.svg │ │ │ │ │ │ ├── ios-cloud-upload.svg │ │ │ │ │ │ ├── ios-cloud.svg │ │ │ │ │ │ ├── ios-cloudy-night.svg │ │ │ │ │ │ ├── ios-cloudy.svg │ │ │ │ │ │ ├── ios-code-download.svg │ │ │ │ │ │ ├── ios-code-working.svg │ │ │ │ │ │ ├── ios-code.svg │ │ │ │ │ │ ├── ios-cog.svg │ │ │ │ │ │ ├── ios-color-fill.svg │ │ │ │ │ │ ├── ios-color-filter.svg │ │ │ │ │ │ ├── ios-color-palette.svg │ │ │ │ │ │ ├── ios-color-wand.svg │ │ │ │ │ │ ├── ios-compass.svg │ │ │ │ │ │ ├── ios-construct.svg │ │ │ │ │ │ ├── ios-contact.svg │ │ │ │ │ │ ├── ios-contacts.svg │ │ │ │ │ │ ├── ios-contract.svg │ │ │ │ │ │ ├── ios-contrast.svg │ │ │ │ │ │ ├── ios-copy.svg │ │ │ │ │ │ ├── ios-create.svg │ │ │ │ │ │ ├── ios-crop.svg │ │ │ │ │ │ ├── ios-cube.svg │ │ │ │ │ │ ├── ios-cut.svg │ │ │ │ │ │ ├── ios-desktop.svg │ │ │ │ │ │ ├── ios-disc.svg │ │ │ │ │ │ ├── ios-document.svg │ │ │ │ │ │ ├── ios-done-all.svg │ │ │ │ │ │ ├── ios-download.svg │ │ │ │ │ │ ├── ios-easel.svg │ │ │ │ │ │ ├── ios-egg.svg │ │ │ │ │ │ ├── ios-exit.svg │ │ │ │ │ │ ├── ios-expand.svg │ │ │ │ │ │ ├── ios-eye-off.svg │ │ │ │ │ │ ├── ios-eye.svg │ │ │ │ │ │ ├── ios-fastforward.svg │ │ │ │ │ │ ├── ios-female.svg │ │ │ │ │ │ ├── ios-filing.svg │ │ │ │ │ │ ├── ios-film.svg │ │ │ │ │ │ ├── ios-finger-print.svg │ │ │ │ │ │ ├── ios-fitness.svg │ │ │ │ │ │ ├── ios-flag.svg │ │ │ │ │ │ ├── ios-flame.svg │ │ │ │ │ │ ├── ios-flash-off.svg │ │ │ │ │ │ ├── ios-flash.svg │ │ │ │ │ │ ├── ios-flashlight.svg │ │ │ │ │ │ ├── ios-flask.svg │ │ │ │ │ │ ├── ios-flower.svg │ │ │ │ │ │ ├── ios-folder-open.svg │ │ │ │ │ │ ├── ios-folder.svg │ │ │ │ │ │ ├── ios-football.svg │ │ │ │ │ │ ├── ios-funnel.svg │ │ │ │ │ │ ├── ios-gift.svg │ │ │ │ │ │ ├── ios-git-branch.svg │ │ │ │ │ │ ├── ios-git-commit.svg │ │ │ │ │ │ ├── ios-git-compare.svg │ │ │ │ │ │ ├── ios-git-merge.svg │ │ │ │ │ │ ├── ios-git-network.svg │ │ │ │ │ │ ├── ios-git-pull-request.svg │ │ │ │ │ │ ├── ios-glasses.svg │ │ │ │ │ │ ├── ios-globe.svg │ │ │ │ │ │ ├── ios-grid.svg │ │ │ │ │ │ ├── ios-hammer.svg │ │ │ │ │ │ ├── ios-hand.svg │ │ │ │ │ │ ├── ios-happy.svg │ │ │ │ │ │ ├── ios-headset.svg │ │ │ │ │ │ ├── ios-heart-dislike.svg │ │ │ │ │ │ ├── ios-heart-empty.svg │ │ │ │ │ │ ├── ios-heart-half.svg │ │ │ │ │ │ ├── ios-heart.svg │ │ │ │ │ │ ├── ios-help-buoy.svg │ │ │ │ │ │ ├── ios-help-circle-outline.svg │ │ │ │ │ │ ├── ios-help-circle.svg │ │ │ │ │ │ ├── ios-help.svg │ │ │ │ │ │ ├── ios-home.svg │ │ │ │ │ │ ├── ios-hourglass.svg │ │ │ │ │ │ ├── ios-ice-cream.svg │ │ │ │ │ │ ├── ios-image.svg │ │ │ │ │ │ ├── ios-images.svg │ │ │ │ │ │ ├── ios-infinite.svg │ │ │ │ │ │ ├── ios-information-circle-outline.svg │ │ │ │ │ │ ├── ios-information-circle.svg │ │ │ │ │ │ ├── ios-information.svg │ │ │ │ │ │ ├── ios-jet.svg │ │ │ │ │ │ ├── ios-journal.svg │ │ │ │ │ │ ├── ios-key.svg │ │ │ │ │ │ ├── ios-keypad.svg │ │ │ │ │ │ ├── ios-laptop.svg │ │ │ │ │ │ ├── ios-leaf.svg │ │ │ │ │ │ ├── ios-link.svg │ │ │ │ │ │ ├── ios-list-box.svg │ │ │ │ │ │ ├── ios-list.svg │ │ │ │ │ │ ├── ios-locate.svg │ │ │ │ │ │ ├── ios-lock.svg │ │ │ │ │ │ ├── ios-log-in.svg │ │ │ │ │ │ ├── ios-log-out.svg │ │ │ │ │ │ ├── ios-magnet.svg │ │ │ │ │ │ ├── ios-mail-open.svg │ │ │ │ │ │ ├── ios-mail-unread.svg │ │ │ │ │ │ ├── ios-mail.svg │ │ │ │ │ │ ├── ios-male.svg │ │ │ │ │ │ ├── ios-man.svg │ │ │ │ │ │ ├── ios-map.svg │ │ │ │ │ │ ├── ios-medal.svg │ │ │ │ │ │ ├── ios-medical.svg │ │ │ │ │ │ ├── ios-medkit.svg │ │ │ │ │ │ ├── ios-megaphone.svg │ │ │ │ │ │ ├── ios-menu.svg │ │ │ │ │ │ ├── ios-mic-off.svg │ │ │ │ │ │ ├── ios-mic.svg │ │ │ │ │ │ ├── ios-microphone.svg │ │ │ │ │ │ ├── ios-moon.svg │ │ │ │ │ │ ├── ios-more.svg │ │ │ │ │ │ ├── ios-move.svg │ │ │ │ │ │ ├── ios-musical-note.svg │ │ │ │ │ │ ├── ios-musical-notes.svg │ │ │ │ │ │ ├── ios-navigate.svg │ │ │ │ │ │ ├── ios-notifications-off.svg │ │ │ │ │ │ ├── ios-notifications-outline.svg │ │ │ │ │ │ ├── ios-notifications.svg │ │ │ │ │ │ ├── ios-nuclear.svg │ │ │ │ │ │ ├── ios-nutrition.svg │ │ │ │ │ │ ├── ios-open.svg │ │ │ │ │ │ ├── ios-options.svg │ │ │ │ │ │ ├── ios-outlet.svg │ │ │ │ │ │ ├── ios-paper-plane.svg │ │ │ │ │ │ ├── ios-paper.svg │ │ │ │ │ │ ├── ios-partly-sunny.svg │ │ │ │ │ │ ├── ios-pause.svg │ │ │ │ │ │ ├── ios-paw.svg │ │ │ │ │ │ ├── ios-people.svg │ │ │ │ │ │ ├── ios-person-add.svg │ │ │ │ │ │ ├── ios-person.svg │ │ │ │ │ │ ├── ios-phone-landscape.svg │ │ │ │ │ │ ├── ios-phone-portrait.svg │ │ │ │ │ │ ├── ios-photos.svg │ │ │ │ │ │ ├── ios-pie.svg │ │ │ │ │ │ ├── ios-pin.svg │ │ │ │ │ │ ├── ios-pint.svg │ │ │ │ │ │ ├── ios-pizza.svg │ │ │ │ │ │ ├── ios-planet.svg │ │ │ │ │ │ ├── ios-play-circle.svg │ │ │ │ │ │ ├── ios-play.svg │ │ │ │ │ │ ├── ios-podium.svg │ │ │ │ │ │ ├── ios-power.svg │ │ │ │ │ │ ├── ios-pricetag.svg │ │ │ │ │ │ ├── ios-pricetags.svg │ │ │ │ │ │ ├── ios-print.svg │ │ │ │ │ │ ├── ios-pulse.svg │ │ │ │ │ │ ├── ios-qr-scanner.svg │ │ │ │ │ │ ├── ios-quote.svg │ │ │ │ │ │ ├── ios-radio-button-off.svg │ │ │ │ │ │ ├── ios-radio-button-on.svg │ │ │ │ │ │ ├── ios-radio.svg │ │ │ │ │ │ ├── ios-rainy.svg │ │ │ │ │ │ ├── ios-recording.svg │ │ │ │ │ │ ├── ios-redo.svg │ │ │ │ │ │ ├── ios-refresh-circle.svg │ │ │ │ │ │ ├── ios-refresh.svg │ │ │ │ │ │ ├── ios-remove-circle-outline.svg │ │ │ │ │ │ ├── ios-remove-circle.svg │ │ │ │ │ │ ├── ios-remove.svg │ │ │ │ │ │ ├── ios-reorder.svg │ │ │ │ │ │ ├── ios-repeat.svg │ │ │ │ │ │ ├── ios-resize.svg │ │ │ │ │ │ ├── ios-restaurant.svg │ │ │ │ │ │ ├── ios-return-left.svg │ │ │ │ │ │ ├── ios-return-right.svg │ │ │ │ │ │ ├── ios-reverse-camera.svg │ │ │ │ │ │ ├── ios-rewind.svg │ │ │ │ │ │ ├── ios-ribbon.svg │ │ │ │ │ │ ├── ios-rocket.svg │ │ │ │ │ │ ├── ios-rose.svg │ │ │ │ │ │ ├── ios-sad.svg │ │ │ │ │ │ ├── ios-save.svg │ │ │ │ │ │ ├── ios-school.svg │ │ │ │ │ │ ├── ios-search.svg │ │ │ │ │ │ ├── ios-send.svg │ │ │ │ │ │ ├── ios-settings.svg │ │ │ │ │ │ ├── ios-share-alt.svg │ │ │ │ │ │ ├── ios-share.svg │ │ │ │ │ │ ├── ios-shirt.svg │ │ │ │ │ │ ├── ios-shuffle.svg │ │ │ │ │ │ ├── ios-skip-backward.svg │ │ │ │ │ │ ├── ios-skip-forward.svg │ │ │ │ │ │ ├── ios-snow.svg │ │ │ │ │ │ ├── ios-speedometer.svg │ │ │ │ │ │ ├── ios-square-outline.svg │ │ │ │ │ │ ├── ios-square.svg │ │ │ │ │ │ ├── ios-star-half.svg │ │ │ │ │ │ ├── ios-star-outline.svg │ │ │ │ │ │ ├── ios-star.svg │ │ │ │ │ │ ├── ios-stats.svg │ │ │ │ │ │ ├── ios-stopwatch.svg │ │ │ │ │ │ ├── ios-subway.svg │ │ │ │ │ │ ├── ios-sunny.svg │ │ │ │ │ │ ├── ios-swap.svg │ │ │ │ │ │ ├── ios-switch.svg │ │ │ │ │ │ ├── ios-sync.svg │ │ │ │ │ │ ├── ios-tablet-landscape.svg │ │ │ │ │ │ ├── ios-tablet-portrait.svg │ │ │ │ │ │ ├── ios-tennisball.svg │ │ │ │ │ │ ├── ios-text.svg │ │ │ │ │ │ ├── ios-thermometer.svg │ │ │ │ │ │ ├── ios-thumbs-down.svg │ │ │ │ │ │ ├── ios-thumbs-up.svg │ │ │ │ │ │ ├── ios-thunderstorm.svg │ │ │ │ │ │ ├── ios-time.svg │ │ │ │ │ │ ├── ios-timer.svg │ │ │ │ │ │ ├── ios-today.svg │ │ │ │ │ │ ├── ios-train.svg │ │ │ │ │ │ ├── ios-transgender.svg │ │ │ │ │ │ ├── ios-trash.svg │ │ │ │ │ │ ├── ios-trending-down.svg │ │ │ │ │ │ ├── ios-trending-up.svg │ │ │ │ │ │ ├── ios-trophy.svg │ │ │ │ │ │ ├── ios-tv.svg │ │ │ │ │ │ ├── ios-umbrella.svg │ │ │ │ │ │ ├── ios-undo.svg │ │ │ │ │ │ ├── ios-unlock.svg │ │ │ │ │ │ ├── ios-videocam.svg │ │ │ │ │ │ ├── ios-volume-high.svg │ │ │ │ │ │ ├── ios-volume-low.svg │ │ │ │ │ │ ├── ios-volume-mute.svg │ │ │ │ │ │ ├── ios-volume-off.svg │ │ │ │ │ │ ├── ios-walk.svg │ │ │ │ │ │ ├── ios-wallet.svg │ │ │ │ │ │ ├── ios-warning.svg │ │ │ │ │ │ ├── ios-watch.svg │ │ │ │ │ │ ├── ios-water.svg │ │ │ │ │ │ ├── ios-wifi.svg │ │ │ │ │ │ ├── ios-wine.svg │ │ │ │ │ │ ├── ios-woman.svg │ │ │ │ │ │ ├── logo-android.svg │ │ │ │ │ │ ├── logo-angular.svg │ │ │ │ │ │ ├── logo-apple.svg │ │ │ │ │ │ ├── logo-bitbucket.svg │ │ │ │ │ │ ├── logo-bitcoin.svg │ │ │ │ │ │ ├── logo-buffer.svg │ │ │ │ │ │ ├── logo-chrome.svg │ │ │ │ │ │ ├── logo-closed-captioning.svg │ │ │ │ │ │ ├── logo-codepen.svg │ │ │ │ │ │ ├── logo-css3.svg │ │ │ │ │ │ ├── logo-designernews.svg │ │ │ │ │ │ ├── logo-dribbble.svg │ │ │ │ │ │ ├── logo-dropbox.svg │ │ │ │ │ │ ├── logo-euro.svg │ │ │ │ │ │ ├── logo-facebook.svg │ │ │ │ │ │ ├── logo-flickr.svg │ │ │ │ │ │ ├── logo-foursquare.svg │ │ │ │ │ │ ├── logo-freebsd-devil.svg │ │ │ │ │ │ ├── logo-game-controller-a.svg │ │ │ │ │ │ ├── logo-game-controller-b.svg │ │ │ │ │ │ ├── logo-github.svg │ │ │ │ │ │ ├── logo-google.svg │ │ │ │ │ │ ├── logo-googleplus.svg │ │ │ │ │ │ ├── logo-hackernews.svg │ │ │ │ │ │ ├── logo-html5.svg │ │ │ │ │ │ ├── logo-instagram.svg │ │ │ │ │ │ ├── logo-ionic.svg │ │ │ │ │ │ ├── logo-ionitron.svg │ │ │ │ │ │ ├── logo-javascript.svg │ │ │ │ │ │ ├── logo-linkedin.svg │ │ │ │ │ │ ├── logo-markdown.svg │ │ │ │ │ │ ├── logo-model-s.svg │ │ │ │ │ │ ├── logo-no-smoking.svg │ │ │ │ │ │ ├── logo-nodejs.svg │ │ │ │ │ │ ├── logo-npm.svg │ │ │ │ │ │ ├── logo-octocat.svg │ │ │ │ │ │ ├── logo-pinterest.svg │ │ │ │ │ │ ├── logo-playstation.svg │ │ │ │ │ │ ├── logo-polymer.svg │ │ │ │ │ │ ├── logo-python.svg │ │ │ │ │ │ ├── logo-reddit.svg │ │ │ │ │ │ ├── logo-rss.svg │ │ │ │ │ │ ├── logo-sass.svg │ │ │ │ │ │ ├── logo-skype.svg │ │ │ │ │ │ ├── logo-slack.svg │ │ │ │ │ │ ├── logo-snapchat.svg │ │ │ │ │ │ ├── logo-steam.svg │ │ │ │ │ │ ├── logo-tumblr.svg │ │ │ │ │ │ ├── logo-tux.svg │ │ │ │ │ │ ├── logo-twitch.svg │ │ │ │ │ │ ├── logo-twitter.svg │ │ │ │ │ │ ├── logo-usd.svg │ │ │ │ │ │ ├── logo-vimeo.svg │ │ │ │ │ │ ├── logo-vk.svg │ │ │ │ │ │ ├── logo-whatsapp.svg │ │ │ │ │ │ ├── logo-windows.svg │ │ │ │ │ │ ├── logo-wordpress.svg │ │ │ │ │ │ ├── logo-xbox.svg │ │ │ │ │ │ ├── logo-xing.svg │ │ │ │ │ │ ├── logo-yahoo.svg │ │ │ │ │ │ ├── logo-yen.svg │ │ │ │ │ │ ├── logo-youtube.svg │ │ │ │ │ │ ├── md-add-circle-outline.svg │ │ │ │ │ │ ├── md-add-circle.svg │ │ │ │ │ │ ├── md-add.svg │ │ │ │ │ │ ├── md-airplane.svg │ │ │ │ │ │ ├── md-alarm.svg │ │ │ │ │ │ ├── md-albums.svg │ │ │ │ │ │ ├── md-alert.svg │ │ │ │ │ │ ├── md-american-football.svg │ │ │ │ │ │ ├── md-analytics.svg │ │ │ │ │ │ ├── md-aperture.svg │ │ │ │ │ │ ├── md-apps.svg │ │ │ │ │ │ ├── md-appstore.svg │ │ │ │ │ │ ├── md-archive.svg │ │ │ │ │ │ ├── md-arrow-back.svg │ │ │ │ │ │ ├── md-arrow-down.svg │ │ │ │ │ │ ├── md-arrow-dropdown-circle.svg │ │ │ │ │ │ ├── md-arrow-dropdown.svg │ │ │ │ │ │ ├── md-arrow-dropleft-circle.svg │ │ │ │ │ │ ├── md-arrow-dropleft.svg │ │ │ │ │ │ ├── md-arrow-dropright-circle.svg │ │ │ │ │ │ ├── md-arrow-dropright.svg │ │ │ │ │ │ ├── md-arrow-dropup-circle.svg │ │ │ │ │ │ ├── md-arrow-dropup.svg │ │ │ │ │ │ ├── md-arrow-forward.svg │ │ │ │ │ │ ├── md-arrow-round-back.svg │ │ │ │ │ │ ├── md-arrow-round-down.svg │ │ │ │ │ │ ├── md-arrow-round-forward.svg │ │ │ │ │ │ ├── md-arrow-round-up.svg │ │ │ │ │ │ ├── md-arrow-up.svg │ │ │ │ │ │ ├── md-at.svg │ │ │ │ │ │ ├── md-attach.svg │ │ │ │ │ │ ├── md-backspace.svg │ │ │ │ │ │ ├── md-barcode.svg │ │ │ │ │ │ ├── md-baseball.svg │ │ │ │ │ │ ├── md-basket.svg │ │ │ │ │ │ ├── md-basketball.svg │ │ │ │ │ │ ├── md-battery-charging.svg │ │ │ │ │ │ ├── md-battery-dead.svg │ │ │ │ │ │ ├── md-battery-full.svg │ │ │ │ │ │ ├── md-beaker.svg │ │ │ │ │ │ ├── md-bed.svg │ │ │ │ │ │ ├── md-beer.svg │ │ │ │ │ │ ├── md-bicycle.svg │ │ │ │ │ │ ├── md-bluetooth.svg │ │ │ │ │ │ ├── md-boat.svg │ │ │ │ │ │ ├── md-body.svg │ │ │ │ │ │ ├── md-bonfire.svg │ │ │ │ │ │ ├── md-book.svg │ │ │ │ │ │ ├── md-bookmark.svg │ │ │ │ │ │ ├── md-bookmarks.svg │ │ │ │ │ │ ├── md-bowtie.svg │ │ │ │ │ │ ├── md-briefcase.svg │ │ │ │ │ │ ├── md-browsers.svg │ │ │ │ │ │ ├── md-brush.svg │ │ │ │ │ │ ├── md-bug.svg │ │ │ │ │ │ ├── md-build.svg │ │ │ │ │ │ ├── md-bulb.svg │ │ │ │ │ │ ├── md-bus.svg │ │ │ │ │ │ ├── md-business.svg │ │ │ │ │ │ ├── md-cafe.svg │ │ │ │ │ │ ├── md-calculator.svg │ │ │ │ │ │ ├── md-calendar.svg │ │ │ │ │ │ ├── md-call.svg │ │ │ │ │ │ ├── md-camera.svg │ │ │ │ │ │ ├── md-car.svg │ │ │ │ │ │ ├── md-card.svg │ │ │ │ │ │ ├── md-cart.svg │ │ │ │ │ │ ├── md-cash.svg │ │ │ │ │ │ ├── md-cellular.svg │ │ │ │ │ │ ├── md-chatboxes.svg │ │ │ │ │ │ ├── md-chatbubbles.svg │ │ │ │ │ │ ├── md-checkbox-outline.svg │ │ │ │ │ │ ├── md-checkbox.svg │ │ │ │ │ │ ├── md-checkmark-circle-outline.svg │ │ │ │ │ │ ├── md-checkmark-circle.svg │ │ │ │ │ │ ├── md-checkmark.svg │ │ │ │ │ │ ├── md-clipboard.svg │ │ │ │ │ │ ├── md-clock.svg │ │ │ │ │ │ ├── md-close-circle-outline.svg │ │ │ │ │ │ ├── md-close-circle.svg │ │ │ │ │ │ ├── md-close.svg │ │ │ │ │ │ ├── md-cloud-circle.svg │ │ │ │ │ │ ├── md-cloud-done.svg │ │ │ │ │ │ ├── md-cloud-download.svg │ │ │ │ │ │ ├── md-cloud-outline.svg │ │ │ │ │ │ ├── md-cloud-upload.svg │ │ │ │ │ │ ├── md-cloud.svg │ │ │ │ │ │ ├── md-cloudy-night.svg │ │ │ │ │ │ ├── md-cloudy.svg │ │ │ │ │ │ ├── md-code-download.svg │ │ │ │ │ │ ├── md-code-working.svg │ │ │ │ │ │ ├── md-code.svg │ │ │ │ │ │ ├── md-cog.svg │ │ │ │ │ │ ├── md-color-fill.svg │ │ │ │ │ │ ├── md-color-filter.svg │ │ │ │ │ │ ├── md-color-palette.svg │ │ │ │ │ │ ├── md-color-wand.svg │ │ │ │ │ │ ├── md-compass.svg │ │ │ │ │ │ ├── md-construct.svg │ │ │ │ │ │ ├── md-contact.svg │ │ │ │ │ │ ├── md-contacts.svg │ │ │ │ │ │ ├── md-contract.svg │ │ │ │ │ │ ├── md-contrast.svg │ │ │ │ │ │ ├── md-copy.svg │ │ │ │ │ │ ├── md-create.svg │ │ │ │ │ │ ├── md-crop.svg │ │ │ │ │ │ ├── md-cube.svg │ │ │ │ │ │ ├── md-cut.svg │ │ │ │ │ │ ├── md-desktop.svg │ │ │ │ │ │ ├── md-disc.svg │ │ │ │ │ │ ├── md-document.svg │ │ │ │ │ │ ├── md-done-all.svg │ │ │ │ │ │ ├── md-download.svg │ │ │ │ │ │ ├── md-easel.svg │ │ │ │ │ │ ├── md-egg.svg │ │ │ │ │ │ ├── md-exit.svg │ │ │ │ │ │ ├── md-expand.svg │ │ │ │ │ │ ├── md-eye-off.svg │ │ │ │ │ │ ├── md-eye.svg │ │ │ │ │ │ ├── md-fastforward.svg │ │ │ │ │ │ ├── md-female.svg │ │ │ │ │ │ ├── md-filing.svg │ │ │ │ │ │ ├── md-film.svg │ │ │ │ │ │ ├── md-finger-print.svg │ │ │ │ │ │ ├── md-fitness.svg │ │ │ │ │ │ ├── md-flag.svg │ │ │ │ │ │ ├── md-flame.svg │ │ │ │ │ │ ├── md-flash-off.svg │ │ │ │ │ │ ├── md-flash.svg │ │ │ │ │ │ ├── md-flashlight.svg │ │ │ │ │ │ ├── md-flask.svg │ │ │ │ │ │ ├── md-flower.svg │ │ │ │ │ │ ├── md-folder-open.svg │ │ │ │ │ │ ├── md-folder.svg │ │ │ │ │ │ ├── md-football.svg │ │ │ │ │ │ ├── md-funnel.svg │ │ │ │ │ │ ├── md-gift.svg │ │ │ │ │ │ ├── md-git-branch.svg │ │ │ │ │ │ ├── md-git-commit.svg │ │ │ │ │ │ ├── md-git-compare.svg │ │ │ │ │ │ ├── md-git-merge.svg │ │ │ │ │ │ ├── md-git-network.svg │ │ │ │ │ │ ├── md-git-pull-request.svg │ │ │ │ │ │ ├── md-glasses.svg │ │ │ │ │ │ ├── md-globe.svg │ │ │ │ │ │ ├── md-grid.svg │ │ │ │ │ │ ├── md-hammer.svg │ │ │ │ │ │ ├── md-hand.svg │ │ │ │ │ │ ├── md-happy.svg │ │ │ │ │ │ ├── md-headset.svg │ │ │ │ │ │ ├── md-heart-dislike.svg │ │ │ │ │ │ ├── md-heart-empty.svg │ │ │ │ │ │ ├── md-heart-half.svg │ │ │ │ │ │ ├── md-heart.svg │ │ │ │ │ │ ├── md-help-buoy.svg │ │ │ │ │ │ ├── md-help-circle-outline.svg │ │ │ │ │ │ ├── md-help-circle.svg │ │ │ │ │ │ ├── md-help.svg │ │ │ │ │ │ ├── md-home.svg │ │ │ │ │ │ ├── md-hourglass.svg │ │ │ │ │ │ ├── md-ice-cream.svg │ │ │ │ │ │ ├── md-image.svg │ │ │ │ │ │ ├── md-images.svg │ │ │ │ │ │ ├── md-infinite.svg │ │ │ │ │ │ ├── md-information-circle-outline.svg │ │ │ │ │ │ ├── md-information-circle.svg │ │ │ │ │ │ ├── md-information.svg │ │ │ │ │ │ ├── md-jet.svg │ │ │ │ │ │ ├── md-journal.svg │ │ │ │ │ │ ├── md-key.svg │ │ │ │ │ │ ├── md-keypad.svg │ │ │ │ │ │ ├── md-laptop.svg │ │ │ │ │ │ ├── md-leaf.svg │ │ │ │ │ │ ├── md-link.svg │ │ │ │ │ │ ├── md-list-box.svg │ │ │ │ │ │ ├── md-list.svg │ │ │ │ │ │ ├── md-locate.svg │ │ │ │ │ │ ├── md-lock.svg │ │ │ │ │ │ ├── md-log-in.svg │ │ │ │ │ │ ├── md-log-out.svg │ │ │ │ │ │ ├── md-magnet.svg │ │ │ │ │ │ ├── md-mail-open.svg │ │ │ │ │ │ ├── md-mail-unread.svg │ │ │ │ │ │ ├── md-mail.svg │ │ │ │ │ │ ├── md-male.svg │ │ │ │ │ │ ├── md-man.svg │ │ │ │ │ │ ├── md-map.svg │ │ │ │ │ │ ├── md-medal.svg │ │ │ │ │ │ ├── md-medical.svg │ │ │ │ │ │ ├── md-medkit.svg │ │ │ │ │ │ ├── md-megaphone.svg │ │ │ │ │ │ ├── md-menu.svg │ │ │ │ │ │ ├── md-mic-off.svg │ │ │ │ │ │ ├── md-mic.svg │ │ │ │ │ │ ├── md-microphone.svg │ │ │ │ │ │ ├── md-moon.svg │ │ │ │ │ │ ├── md-more.svg │ │ │ │ │ │ ├── md-move.svg │ │ │ │ │ │ ├── md-musical-note.svg │ │ │ │ │ │ ├── md-musical-notes.svg │ │ │ │ │ │ ├── md-navigate.svg │ │ │ │ │ │ ├── md-notifications-off.svg │ │ │ │ │ │ ├── md-notifications-outline.svg │ │ │ │ │ │ ├── md-notifications.svg │ │ │ │ │ │ ├── md-nuclear.svg │ │ │ │ │ │ ├── md-nutrition.svg │ │ │ │ │ │ ├── md-open.svg │ │ │ │ │ │ ├── md-options.svg │ │ │ │ │ │ ├── md-outlet.svg │ │ │ │ │ │ ├── md-paper-plane.svg │ │ │ │ │ │ ├── md-paper.svg │ │ │ │ │ │ ├── md-partly-sunny.svg │ │ │ │ │ │ ├── md-pause.svg │ │ │ │ │ │ ├── md-paw.svg │ │ │ │ │ │ ├── md-people.svg │ │ │ │ │ │ ├── md-person-add.svg │ │ │ │ │ │ ├── md-person.svg │ │ │ │ │ │ ├── md-phone-landscape.svg │ │ │ │ │ │ ├── md-phone-portrait.svg │ │ │ │ │ │ ├── md-photos.svg │ │ │ │ │ │ ├── md-pie.svg │ │ │ │ │ │ ├── md-pin.svg │ │ │ │ │ │ ├── md-pint.svg │ │ │ │ │ │ ├── md-pizza.svg │ │ │ │ │ │ ├── md-planet.svg │ │ │ │ │ │ ├── md-play-circle.svg │ │ │ │ │ │ ├── md-play.svg │ │ │ │ │ │ ├── md-podium.svg │ │ │ │ │ │ ├── md-power.svg │ │ │ │ │ │ ├── md-pricetag.svg │ │ │ │ │ │ ├── md-pricetags.svg │ │ │ │ │ │ ├── md-print.svg │ │ │ │ │ │ ├── md-pulse.svg │ │ │ │ │ │ ├── md-qr-scanner.svg │ │ │ │ │ │ ├── md-quote.svg │ │ │ │ │ │ ├── md-radio-button-off.svg │ │ │ │ │ │ ├── md-radio-button-on.svg │ │ │ │ │ │ ├── md-radio.svg │ │ │ │ │ │ ├── md-rainy.svg │ │ │ │ │ │ ├── md-recording.svg │ │ │ │ │ │ ├── md-redo.svg │ │ │ │ │ │ ├── md-refresh-circle.svg │ │ │ │ │ │ ├── md-refresh.svg │ │ │ │ │ │ ├── md-remove-circle-outline.svg │ │ │ │ │ │ ├── md-remove-circle.svg │ │ │ │ │ │ ├── md-remove.svg │ │ │ │ │ │ ├── md-reorder.svg │ │ │ │ │ │ ├── md-repeat.svg │ │ │ │ │ │ ├── md-resize.svg │ │ │ │ │ │ ├── md-restaurant.svg │ │ │ │ │ │ ├── md-return-left.svg │ │ │ │ │ │ ├── md-return-right.svg │ │ │ │ │ │ ├── md-reverse-camera.svg │ │ │ │ │ │ ├── md-rewind.svg │ │ │ │ │ │ ├── md-ribbon.svg │ │ │ │ │ │ ├── md-rocket.svg │ │ │ │ │ │ ├── md-rose.svg │ │ │ │ │ │ ├── md-sad.svg │ │ │ │ │ │ ├── md-save.svg │ │ │ │ │ │ ├── md-school.svg │ │ │ │ │ │ ├── md-search.svg │ │ │ │ │ │ ├── md-send.svg │ │ │ │ │ │ ├── md-settings.svg │ │ │ │ │ │ ├── md-share-alt.svg │ │ │ │ │ │ ├── md-share.svg │ │ │ │ │ │ ├── md-shirt.svg │ │ │ │ │ │ ├── md-shuffle.svg │ │ │ │ │ │ ├── md-skip-backward.svg │ │ │ │ │ │ ├── md-skip-forward.svg │ │ │ │ │ │ ├── md-snow.svg │ │ │ │ │ │ ├── md-speedometer.svg │ │ │ │ │ │ ├── md-square-outline.svg │ │ │ │ │ │ ├── md-square.svg │ │ │ │ │ │ ├── md-star-half.svg │ │ │ │ │ │ ├── md-star-outline.svg │ │ │ │ │ │ ├── md-star.svg │ │ │ │ │ │ ├── md-stats.svg │ │ │ │ │ │ ├── md-stopwatch.svg │ │ │ │ │ │ ├── md-subway.svg │ │ │ │ │ │ ├── md-sunny.svg │ │ │ │ │ │ ├── md-swap.svg │ │ │ │ │ │ ├── md-switch.svg │ │ │ │ │ │ ├── md-sync.svg │ │ │ │ │ │ ├── md-tablet-landscape.svg │ │ │ │ │ │ ├── md-tablet-portrait.svg │ │ │ │ │ │ ├── md-tennisball.svg │ │ │ │ │ │ ├── md-text.svg │ │ │ │ │ │ ├── md-thermometer.svg │ │ │ │ │ │ ├── md-thumbs-down.svg │ │ │ │ │ │ ├── md-thumbs-up.svg │ │ │ │ │ │ ├── md-thunderstorm.svg │ │ │ │ │ │ ├── md-time.svg │ │ │ │ │ │ ├── md-timer.svg │ │ │ │ │ │ ├── md-today.svg │ │ │ │ │ │ ├── md-train.svg │ │ │ │ │ │ ├── md-transgender.svg │ │ │ │ │ │ ├── md-trash.svg │ │ │ │ │ │ ├── md-trending-down.svg │ │ │ │ │ │ ├── md-trending-up.svg │ │ │ │ │ │ ├── md-trophy.svg │ │ │ │ │ │ ├── md-tv.svg │ │ │ │ │ │ ├── md-umbrella.svg │ │ │ │ │ │ ├── md-undo.svg │ │ │ │ │ │ ├── md-unlock.svg │ │ │ │ │ │ ├── md-videocam.svg │ │ │ │ │ │ ├── md-volume-high.svg │ │ │ │ │ │ ├── md-volume-low.svg │ │ │ │ │ │ ├── md-volume-mute.svg │ │ │ │ │ │ ├── md-volume-off.svg │ │ │ │ │ │ ├── md-walk.svg │ │ │ │ │ │ ├── md-wallet.svg │ │ │ │ │ │ ├── md-warning.svg │ │ │ │ │ │ ├── md-watch.svg │ │ │ │ │ │ ├── md-water.svg │ │ │ │ │ │ ├── md-wifi.svg │ │ │ │ │ │ ├── md-wine.svg │ │ │ │ │ │ └── md-woman.svg │ │ │ │ ├── collection-manifest.json │ │ │ │ ├── icon │ │ │ │ │ ├── icon.css │ │ │ │ │ ├── icon.js │ │ │ │ │ ├── svg │ │ │ │ │ │ ├── index.esm.d.ts │ │ │ │ │ │ ├── index.esm.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── ios-add-circle-outline.svg │ │ │ │ │ │ ├── ios-add-circle.svg │ │ │ │ │ │ ├── ios-add.svg │ │ │ │ │ │ ├── ios-airplane.svg │ │ │ │ │ │ ├── ios-alarm.svg │ │ │ │ │ │ ├── ios-albums.svg │ │ │ │ │ │ ├── ios-alert.svg │ │ │ │ │ │ ├── ios-american-football.svg │ │ │ │ │ │ ├── ios-analytics.svg │ │ │ │ │ │ ├── ios-aperture.svg │ │ │ │ │ │ ├── ios-apps.svg │ │ │ │ │ │ ├── ios-appstore.svg │ │ │ │ │ │ ├── ios-archive.svg │ │ │ │ │ │ ├── ios-arrow-back.svg │ │ │ │ │ │ ├── ios-arrow-down.svg │ │ │ │ │ │ ├── ios-arrow-dropdown-circle.svg │ │ │ │ │ │ ├── ios-arrow-dropdown.svg │ │ │ │ │ │ ├── ios-arrow-dropleft-circle.svg │ │ │ │ │ │ ├── ios-arrow-dropleft.svg │ │ │ │ │ │ ├── ios-arrow-dropright-circle.svg │ │ │ │ │ │ ├── ios-arrow-dropright.svg │ │ │ │ │ │ ├── ios-arrow-dropup-circle.svg │ │ │ │ │ │ ├── ios-arrow-dropup.svg │ │ │ │ │ │ ├── ios-arrow-forward.svg │ │ │ │ │ │ ├── ios-arrow-round-back.svg │ │ │ │ │ │ ├── ios-arrow-round-down.svg │ │ │ │ │ │ ├── ios-arrow-round-forward.svg │ │ │ │ │ │ ├── ios-arrow-round-up.svg │ │ │ │ │ │ ├── ios-arrow-up.svg │ │ │ │ │ │ ├── ios-at.svg │ │ │ │ │ │ ├── ios-attach.svg │ │ │ │ │ │ ├── ios-backspace.svg │ │ │ │ │ │ ├── ios-barcode.svg │ │ │ │ │ │ ├── ios-baseball.svg │ │ │ │ │ │ ├── ios-basket.svg │ │ │ │ │ │ ├── ios-basketball.svg │ │ │ │ │ │ ├── ios-battery-charging.svg │ │ │ │ │ │ ├── ios-battery-dead.svg │ │ │ │ │ │ ├── ios-battery-full.svg │ │ │ │ │ │ ├── ios-beaker.svg │ │ │ │ │ │ ├── ios-bed.svg │ │ │ │ │ │ ├── ios-beer.svg │ │ │ │ │ │ ├── ios-bicycle.svg │ │ │ │ │ │ ├── ios-bluetooth.svg │ │ │ │ │ │ ├── ios-boat.svg │ │ │ │ │ │ ├── ios-body.svg │ │ │ │ │ │ ├── ios-bonfire.svg │ │ │ │ │ │ ├── ios-book.svg │ │ │ │ │ │ ├── ios-bookmark.svg │ │ │ │ │ │ ├── ios-bookmarks.svg │ │ │ │ │ │ ├── ios-bowtie.svg │ │ │ │ │ │ ├── ios-briefcase.svg │ │ │ │ │ │ ├── ios-browsers.svg │ │ │ │ │ │ ├── ios-brush.svg │ │ │ │ │ │ ├── ios-bug.svg │ │ │ │ │ │ ├── ios-build.svg │ │ │ │ │ │ ├── ios-bulb.svg │ │ │ │ │ │ ├── ios-bus.svg │ │ │ │ │ │ ├── ios-business.svg │ │ │ │ │ │ ├── ios-cafe.svg │ │ │ │ │ │ ├── ios-calculator.svg │ │ │ │ │ │ ├── ios-calendar.svg │ │ │ │ │ │ ├── ios-call.svg │ │ │ │ │ │ ├── ios-camera.svg │ │ │ │ │ │ ├── ios-car.svg │ │ │ │ │ │ ├── ios-card.svg │ │ │ │ │ │ ├── ios-cart.svg │ │ │ │ │ │ ├── ios-cash.svg │ │ │ │ │ │ ├── ios-cellular.svg │ │ │ │ │ │ ├── ios-chatboxes.svg │ │ │ │ │ │ ├── ios-chatbubbles.svg │ │ │ │ │ │ ├── ios-checkbox-outline.svg │ │ │ │ │ │ ├── ios-checkbox.svg │ │ │ │ │ │ ├── ios-checkmark-circle-outline.svg │ │ │ │ │ │ ├── ios-checkmark-circle.svg │ │ │ │ │ │ ├── ios-checkmark.svg │ │ │ │ │ │ ├── ios-clipboard.svg │ │ │ │ │ │ ├── ios-clock.svg │ │ │ │ │ │ ├── ios-close-circle-outline.svg │ │ │ │ │ │ ├── ios-close-circle.svg │ │ │ │ │ │ ├── ios-close.svg │ │ │ │ │ │ ├── ios-cloud-circle.svg │ │ │ │ │ │ ├── ios-cloud-done.svg │ │ │ │ │ │ ├── ios-cloud-download.svg │ │ │ │ │ │ ├── ios-cloud-outline.svg │ │ │ │ │ │ ├── ios-cloud-upload.svg │ │ │ │ │ │ ├── ios-cloud.svg │ │ │ │ │ │ ├── ios-cloudy-night.svg │ │ │ │ │ │ ├── ios-cloudy.svg │ │ │ │ │ │ ├── ios-code-download.svg │ │ │ │ │ │ ├── ios-code-working.svg │ │ │ │ │ │ ├── ios-code.svg │ │ │ │ │ │ ├── ios-cog.svg │ │ │ │ │ │ ├── ios-color-fill.svg │ │ │ │ │ │ ├── ios-color-filter.svg │ │ │ │ │ │ ├── ios-color-palette.svg │ │ │ │ │ │ ├── ios-color-wand.svg │ │ │ │ │ │ ├── ios-compass.svg │ │ │ │ │ │ ├── ios-construct.svg │ │ │ │ │ │ ├── ios-contact.svg │ │ │ │ │ │ ├── ios-contacts.svg │ │ │ │ │ │ ├── ios-contract.svg │ │ │ │ │ │ ├── ios-contrast.svg │ │ │ │ │ │ ├── ios-copy.svg │ │ │ │ │ │ ├── ios-create.svg │ │ │ │ │ │ ├── ios-crop.svg │ │ │ │ │ │ ├── ios-cube.svg │ │ │ │ │ │ ├── ios-cut.svg │ │ │ │ │ │ ├── ios-desktop.svg │ │ │ │ │ │ ├── ios-disc.svg │ │ │ │ │ │ ├── ios-document.svg │ │ │ │ │ │ ├── ios-done-all.svg │ │ │ │ │ │ ├── ios-download.svg │ │ │ │ │ │ ├── ios-easel.svg │ │ │ │ │ │ ├── ios-egg.svg │ │ │ │ │ │ ├── ios-exit.svg │ │ │ │ │ │ ├── ios-expand.svg │ │ │ │ │ │ ├── ios-eye-off.svg │ │ │ │ │ │ ├── ios-eye.svg │ │ │ │ │ │ ├── ios-fastforward.svg │ │ │ │ │ │ ├── ios-female.svg │ │ │ │ │ │ ├── ios-filing.svg │ │ │ │ │ │ ├── ios-film.svg │ │ │ │ │ │ ├── ios-finger-print.svg │ │ │ │ │ │ ├── ios-fitness.svg │ │ │ │ │ │ ├── ios-flag.svg │ │ │ │ │ │ ├── ios-flame.svg │ │ │ │ │ │ ├── ios-flash-off.svg │ │ │ │ │ │ ├── ios-flash.svg │ │ │ │ │ │ ├── ios-flashlight.svg │ │ │ │ │ │ ├── ios-flask.svg │ │ │ │ │ │ ├── ios-flower.svg │ │ │ │ │ │ ├── ios-folder-open.svg │ │ │ │ │ │ ├── ios-folder.svg │ │ │ │ │ │ ├── ios-football.svg │ │ │ │ │ │ ├── ios-funnel.svg │ │ │ │ │ │ ├── ios-gift.svg │ │ │ │ │ │ ├── ios-git-branch.svg │ │ │ │ │ │ ├── ios-git-commit.svg │ │ │ │ │ │ ├── ios-git-compare.svg │ │ │ │ │ │ ├── ios-git-merge.svg │ │ │ │ │ │ ├── ios-git-network.svg │ │ │ │ │ │ ├── ios-git-pull-request.svg │ │ │ │ │ │ ├── ios-glasses.svg │ │ │ │ │ │ ├── ios-globe.svg │ │ │ │ │ │ ├── ios-grid.svg │ │ │ │ │ │ ├── ios-hammer.svg │ │ │ │ │ │ ├── ios-hand.svg │ │ │ │ │ │ ├── ios-happy.svg │ │ │ │ │ │ ├── ios-headset.svg │ │ │ │ │ │ ├── ios-heart-dislike.svg │ │ │ │ │ │ ├── ios-heart-empty.svg │ │ │ │ │ │ ├── ios-heart-half.svg │ │ │ │ │ │ ├── ios-heart.svg │ │ │ │ │ │ ├── ios-help-buoy.svg │ │ │ │ │ │ ├── ios-help-circle-outline.svg │ │ │ │ │ │ ├── ios-help-circle.svg │ │ │ │ │ │ ├── ios-help.svg │ │ │ │ │ │ ├── ios-home.svg │ │ │ │ │ │ ├── ios-hourglass.svg │ │ │ │ │ │ ├── ios-ice-cream.svg │ │ │ │ │ │ ├── ios-image.svg │ │ │ │ │ │ ├── ios-images.svg │ │ │ │ │ │ ├── ios-infinite.svg │ │ │ │ │ │ ├── ios-information-circle-outline.svg │ │ │ │ │ │ ├── ios-information-circle.svg │ │ │ │ │ │ ├── ios-information.svg │ │ │ │ │ │ ├── ios-jet.svg │ │ │ │ │ │ ├── ios-journal.svg │ │ │ │ │ │ ├── ios-key.svg │ │ │ │ │ │ ├── ios-keypad.svg │ │ │ │ │ │ ├── ios-laptop.svg │ │ │ │ │ │ ├── ios-leaf.svg │ │ │ │ │ │ ├── ios-link.svg │ │ │ │ │ │ ├── ios-list-box.svg │ │ │ │ │ │ ├── ios-list.svg │ │ │ │ │ │ ├── ios-locate.svg │ │ │ │ │ │ ├── ios-lock.svg │ │ │ │ │ │ ├── ios-log-in.svg │ │ │ │ │ │ ├── ios-log-out.svg │ │ │ │ │ │ ├── ios-magnet.svg │ │ │ │ │ │ ├── ios-mail-open.svg │ │ │ │ │ │ ├── ios-mail-unread.svg │ │ │ │ │ │ ├── ios-mail.svg │ │ │ │ │ │ ├── ios-male.svg │ │ │ │ │ │ ├── ios-man.svg │ │ │ │ │ │ ├── ios-map.svg │ │ │ │ │ │ ├── ios-medal.svg │ │ │ │ │ │ ├── ios-medical.svg │ │ │ │ │ │ ├── ios-medkit.svg │ │ │ │ │ │ ├── ios-megaphone.svg │ │ │ │ │ │ ├── ios-menu.svg │ │ │ │ │ │ ├── ios-mic-off.svg │ │ │ │ │ │ ├── ios-mic.svg │ │ │ │ │ │ ├── ios-microphone.svg │ │ │ │ │ │ ├── ios-moon.svg │ │ │ │ │ │ ├── ios-more.svg │ │ │ │ │ │ ├── ios-move.svg │ │ │ │ │ │ ├── ios-musical-note.svg │ │ │ │ │ │ ├── ios-musical-notes.svg │ │ │ │ │ │ ├── ios-navigate.svg │ │ │ │ │ │ ├── ios-notifications-off.svg │ │ │ │ │ │ ├── ios-notifications-outline.svg │ │ │ │ │ │ ├── ios-notifications.svg │ │ │ │ │ │ ├── ios-nuclear.svg │ │ │ │ │ │ ├── ios-nutrition.svg │ │ │ │ │ │ ├── ios-open.svg │ │ │ │ │ │ ├── ios-options.svg │ │ │ │ │ │ ├── ios-outlet.svg │ │ │ │ │ │ ├── ios-paper-plane.svg │ │ │ │ │ │ ├── ios-paper.svg │ │ │ │ │ │ ├── ios-partly-sunny.svg │ │ │ │ │ │ ├── ios-pause.svg │ │ │ │ │ │ ├── ios-paw.svg │ │ │ │ │ │ ├── ios-people.svg │ │ │ │ │ │ ├── ios-person-add.svg │ │ │ │ │ │ ├── ios-person.svg │ │ │ │ │ │ ├── ios-phone-landscape.svg │ │ │ │ │ │ ├── ios-phone-portrait.svg │ │ │ │ │ │ ├── ios-photos.svg │ │ │ │ │ │ ├── ios-pie.svg │ │ │ │ │ │ ├── ios-pin.svg │ │ │ │ │ │ ├── ios-pint.svg │ │ │ │ │ │ ├── ios-pizza.svg │ │ │ │ │ │ ├── ios-planet.svg │ │ │ │ │ │ ├── ios-play-circle.svg │ │ │ │ │ │ ├── ios-play.svg │ │ │ │ │ │ ├── ios-podium.svg │ │ │ │ │ │ ├── ios-power.svg │ │ │ │ │ │ ├── ios-pricetag.svg │ │ │ │ │ │ ├── ios-pricetags.svg │ │ │ │ │ │ ├── ios-print.svg │ │ │ │ │ │ ├── ios-pulse.svg │ │ │ │ │ │ ├── ios-qr-scanner.svg │ │ │ │ │ │ ├── ios-quote.svg │ │ │ │ │ │ ├── ios-radio-button-off.svg │ │ │ │ │ │ ├── ios-radio-button-on.svg │ │ │ │ │ │ ├── ios-radio.svg │ │ │ │ │ │ ├── ios-rainy.svg │ │ │ │ │ │ ├── ios-recording.svg │ │ │ │ │ │ ├── ios-redo.svg │ │ │ │ │ │ ├── ios-refresh-circle.svg │ │ │ │ │ │ ├── ios-refresh.svg │ │ │ │ │ │ ├── ios-remove-circle-outline.svg │ │ │ │ │ │ ├── ios-remove-circle.svg │ │ │ │ │ │ ├── ios-remove.svg │ │ │ │ │ │ ├── ios-reorder.svg │ │ │ │ │ │ ├── ios-repeat.svg │ │ │ │ │ │ ├── ios-resize.svg │ │ │ │ │ │ ├── ios-restaurant.svg │ │ │ │ │ │ ├── ios-return-left.svg │ │ │ │ │ │ ├── ios-return-right.svg │ │ │ │ │ │ ├── ios-reverse-camera.svg │ │ │ │ │ │ ├── ios-rewind.svg │ │ │ │ │ │ ├── ios-ribbon.svg │ │ │ │ │ │ ├── ios-rocket.svg │ │ │ │ │ │ ├── ios-rose.svg │ │ │ │ │ │ ├── ios-sad.svg │ │ │ │ │ │ ├── ios-save.svg │ │ │ │ │ │ ├── ios-school.svg │ │ │ │ │ │ ├── ios-search.svg │ │ │ │ │ │ ├── ios-send.svg │ │ │ │ │ │ ├── ios-settings.svg │ │ │ │ │ │ ├── ios-share-alt.svg │ │ │ │ │ │ ├── ios-share.svg │ │ │ │ │ │ ├── ios-shirt.svg │ │ │ │ │ │ ├── ios-shuffle.svg │ │ │ │ │ │ ├── ios-skip-backward.svg │ │ │ │ │ │ ├── ios-skip-forward.svg │ │ │ │ │ │ ├── ios-snow.svg │ │ │ │ │ │ ├── ios-speedometer.svg │ │ │ │ │ │ ├── ios-square-outline.svg │ │ │ │ │ │ ├── ios-square.svg │ │ │ │ │ │ ├── ios-star-half.svg │ │ │ │ │ │ ├── ios-star-outline.svg │ │ │ │ │ │ ├── ios-star.svg │ │ │ │ │ │ ├── ios-stats.svg │ │ │ │ │ │ ├── ios-stopwatch.svg │ │ │ │ │ │ ├── ios-subway.svg │ │ │ │ │ │ ├── ios-sunny.svg │ │ │ │ │ │ ├── ios-swap.svg │ │ │ │ │ │ ├── ios-switch.svg │ │ │ │ │ │ ├── ios-sync.svg │ │ │ │ │ │ ├── ios-tablet-landscape.svg │ │ │ │ │ │ ├── ios-tablet-portrait.svg │ │ │ │ │ │ ├── ios-tennisball.svg │ │ │ │ │ │ ├── ios-text.svg │ │ │ │ │ │ ├── ios-thermometer.svg │ │ │ │ │ │ ├── ios-thumbs-down.svg │ │ │ │ │ │ ├── ios-thumbs-up.svg │ │ │ │ │ │ ├── ios-thunderstorm.svg │ │ │ │ │ │ ├── ios-time.svg │ │ │ │ │ │ ├── ios-timer.svg │ │ │ │ │ │ ├── ios-today.svg │ │ │ │ │ │ ├── ios-train.svg │ │ │ │ │ │ ├── ios-transgender.svg │ │ │ │ │ │ ├── ios-trash.svg │ │ │ │ │ │ ├── ios-trending-down.svg │ │ │ │ │ │ ├── ios-trending-up.svg │ │ │ │ │ │ ├── ios-trophy.svg │ │ │ │ │ │ ├── ios-tv.svg │ │ │ │ │ │ ├── ios-umbrella.svg │ │ │ │ │ │ ├── ios-undo.svg │ │ │ │ │ │ ├── ios-unlock.svg │ │ │ │ │ │ ├── ios-videocam.svg │ │ │ │ │ │ ├── ios-volume-high.svg │ │ │ │ │ │ ├── ios-volume-low.svg │ │ │ │ │ │ ├── ios-volume-mute.svg │ │ │ │ │ │ ├── ios-volume-off.svg │ │ │ │ │ │ ├── ios-walk.svg │ │ │ │ │ │ ├── ios-wallet.svg │ │ │ │ │ │ ├── ios-warning.svg │ │ │ │ │ │ ├── ios-watch.svg │ │ │ │ │ │ ├── ios-water.svg │ │ │ │ │ │ ├── ios-wifi.svg │ │ │ │ │ │ ├── ios-wine.svg │ │ │ │ │ │ ├── ios-woman.svg │ │ │ │ │ │ ├── logo-android.svg │ │ │ │ │ │ ├── logo-angular.svg │ │ │ │ │ │ ├── logo-apple.svg │ │ │ │ │ │ ├── logo-bitbucket.svg │ │ │ │ │ │ ├── logo-bitcoin.svg │ │ │ │ │ │ ├── logo-buffer.svg │ │ │ │ │ │ ├── logo-chrome.svg │ │ │ │ │ │ ├── logo-closed-captioning.svg │ │ │ │ │ │ ├── logo-codepen.svg │ │ │ │ │ │ ├── logo-css3.svg │ │ │ │ │ │ ├── logo-designernews.svg │ │ │ │ │ │ ├── logo-dribbble.svg │ │ │ │ │ │ ├── logo-dropbox.svg │ │ │ │ │ │ ├── logo-euro.svg │ │ │ │ │ │ ├── logo-facebook.svg │ │ │ │ │ │ ├── logo-flickr.svg │ │ │ │ │ │ ├── logo-foursquare.svg │ │ │ │ │ │ ├── logo-freebsd-devil.svg │ │ │ │ │ │ ├── logo-game-controller-a.svg │ │ │ │ │ │ ├── logo-game-controller-b.svg │ │ │ │ │ │ ├── logo-github.svg │ │ │ │ │ │ ├── logo-google.svg │ │ │ │ │ │ ├── logo-googleplus.svg │ │ │ │ │ │ ├── logo-hackernews.svg │ │ │ │ │ │ ├── logo-html5.svg │ │ │ │ │ │ ├── logo-instagram.svg │ │ │ │ │ │ ├── logo-ionic.svg │ │ │ │ │ │ ├── logo-ionitron.svg │ │ │ │ │ │ ├── logo-javascript.svg │ │ │ │ │ │ ├── logo-linkedin.svg │ │ │ │ │ │ ├── logo-markdown.svg │ │ │ │ │ │ ├── logo-model-s.svg │ │ │ │ │ │ ├── logo-no-smoking.svg │ │ │ │ │ │ ├── logo-nodejs.svg │ │ │ │ │ │ ├── logo-npm.svg │ │ │ │ │ │ ├── logo-octocat.svg │ │ │ │ │ │ ├── logo-pinterest.svg │ │ │ │ │ │ ├── logo-playstation.svg │ │ │ │ │ │ ├── logo-polymer.svg │ │ │ │ │ │ ├── logo-python.svg │ │ │ │ │ │ ├── logo-reddit.svg │ │ │ │ │ │ ├── logo-rss.svg │ │ │ │ │ │ ├── logo-sass.svg │ │ │ │ │ │ ├── logo-skype.svg │ │ │ │ │ │ ├── logo-slack.svg │ │ │ │ │ │ ├── logo-snapchat.svg │ │ │ │ │ │ ├── logo-steam.svg │ │ │ │ │ │ ├── logo-tumblr.svg │ │ │ │ │ │ ├── logo-tux.svg │ │ │ │ │ │ ├── logo-twitch.svg │ │ │ │ │ │ ├── logo-twitter.svg │ │ │ │ │ │ ├── logo-usd.svg │ │ │ │ │ │ ├── logo-vimeo.svg │ │ │ │ │ │ ├── logo-vk.svg │ │ │ │ │ │ ├── logo-whatsapp.svg │ │ │ │ │ │ ├── logo-windows.svg │ │ │ │ │ │ ├── logo-wordpress.svg │ │ │ │ │ │ ├── logo-xbox.svg │ │ │ │ │ │ ├── logo-xing.svg │ │ │ │ │ │ ├── logo-yahoo.svg │ │ │ │ │ │ ├── logo-yen.svg │ │ │ │ │ │ ├── logo-youtube.svg │ │ │ │ │ │ ├── md-add-circle-outline.svg │ │ │ │ │ │ ├── md-add-circle.svg │ │ │ │ │ │ ├── md-add.svg │ │ │ │ │ │ ├── md-airplane.svg │ │ │ │ │ │ ├── md-alarm.svg │ │ │ │ │ │ ├── md-albums.svg │ │ │ │ │ │ ├── md-alert.svg │ │ │ │ │ │ ├── md-american-football.svg │ │ │ │ │ │ ├── md-analytics.svg │ │ │ │ │ │ ├── md-aperture.svg │ │ │ │ │ │ ├── md-apps.svg │ │ │ │ │ │ ├── md-appstore.svg │ │ │ │ │ │ ├── md-archive.svg │ │ │ │ │ │ ├── md-arrow-back.svg │ │ │ │ │ │ ├── md-arrow-down.svg │ │ │ │ │ │ ├── md-arrow-dropdown-circle.svg │ │ │ │ │ │ ├── md-arrow-dropdown.svg │ │ │ │ │ │ ├── md-arrow-dropleft-circle.svg │ │ │ │ │ │ ├── md-arrow-dropleft.svg │ │ │ │ │ │ ├── md-arrow-dropright-circle.svg │ │ │ │ │ │ ├── md-arrow-dropright.svg │ │ │ │ │ │ ├── md-arrow-dropup-circle.svg │ │ │ │ │ │ ├── md-arrow-dropup.svg │ │ │ │ │ │ ├── md-arrow-forward.svg │ │ │ │ │ │ ├── md-arrow-round-back.svg │ │ │ │ │ │ ├── md-arrow-round-down.svg │ │ │ │ │ │ ├── md-arrow-round-forward.svg │ │ │ │ │ │ ├── md-arrow-round-up.svg │ │ │ │ │ │ ├── md-arrow-up.svg │ │ │ │ │ │ ├── md-at.svg │ │ │ │ │ │ ├── md-attach.svg │ │ │ │ │ │ ├── md-backspace.svg │ │ │ │ │ │ ├── md-barcode.svg │ │ │ │ │ │ ├── md-baseball.svg │ │ │ │ │ │ ├── md-basket.svg │ │ │ │ │ │ ├── md-basketball.svg │ │ │ │ │ │ ├── md-battery-charging.svg │ │ │ │ │ │ ├── md-battery-dead.svg │ │ │ │ │ │ ├── md-battery-full.svg │ │ │ │ │ │ ├── md-beaker.svg │ │ │ │ │ │ ├── md-bed.svg │ │ │ │ │ │ ├── md-beer.svg │ │ │ │ │ │ ├── md-bicycle.svg │ │ │ │ │ │ ├── md-bluetooth.svg │ │ │ │ │ │ ├── md-boat.svg │ │ │ │ │ │ ├── md-body.svg │ │ │ │ │ │ ├── md-bonfire.svg │ │ │ │ │ │ ├── md-book.svg │ │ │ │ │ │ ├── md-bookmark.svg │ │ │ │ │ │ ├── md-bookmarks.svg │ │ │ │ │ │ ├── md-bowtie.svg │ │ │ │ │ │ ├── md-briefcase.svg │ │ │ │ │ │ ├── md-browsers.svg │ │ │ │ │ │ ├── md-brush.svg │ │ │ │ │ │ ├── md-bug.svg │ │ │ │ │ │ ├── md-build.svg │ │ │ │ │ │ ├── md-bulb.svg │ │ │ │ │ │ ├── md-bus.svg │ │ │ │ │ │ ├── md-business.svg │ │ │ │ │ │ ├── md-cafe.svg │ │ │ │ │ │ ├── md-calculator.svg │ │ │ │ │ │ ├── md-calendar.svg │ │ │ │ │ │ ├── md-call.svg │ │ │ │ │ │ ├── md-camera.svg │ │ │ │ │ │ ├── md-car.svg │ │ │ │ │ │ ├── md-card.svg │ │ │ │ │ │ ├── md-cart.svg │ │ │ │ │ │ ├── md-cash.svg │ │ │ │ │ │ ├── md-cellular.svg │ │ │ │ │ │ ├── md-chatboxes.svg │ │ │ │ │ │ ├── md-chatbubbles.svg │ │ │ │ │ │ ├── md-checkbox-outline.svg │ │ │ │ │ │ ├── md-checkbox.svg │ │ │ │ │ │ ├── md-checkmark-circle-outline.svg │ │ │ │ │ │ ├── md-checkmark-circle.svg │ │ │ │ │ │ ├── md-checkmark.svg │ │ │ │ │ │ ├── md-clipboard.svg │ │ │ │ │ │ ├── md-clock.svg │ │ │ │ │ │ ├── md-close-circle-outline.svg │ │ │ │ │ │ ├── md-close-circle.svg │ │ │ │ │ │ ├── md-close.svg │ │ │ │ │ │ ├── md-cloud-circle.svg │ │ │ │ │ │ ├── md-cloud-done.svg │ │ │ │ │ │ ├── md-cloud-download.svg │ │ │ │ │ │ ├── md-cloud-outline.svg │ │ │ │ │ │ ├── md-cloud-upload.svg │ │ │ │ │ │ ├── md-cloud.svg │ │ │ │ │ │ ├── md-cloudy-night.svg │ │ │ │ │ │ ├── md-cloudy.svg │ │ │ │ │ │ ├── md-code-download.svg │ │ │ │ │ │ ├── md-code-working.svg │ │ │ │ │ │ ├── md-code.svg │ │ │ │ │ │ ├── md-cog.svg │ │ │ │ │ │ ├── md-color-fill.svg │ │ │ │ │ │ ├── md-color-filter.svg │ │ │ │ │ │ ├── md-color-palette.svg │ │ │ │ │ │ ├── md-color-wand.svg │ │ │ │ │ │ ├── md-compass.svg │ │ │ │ │ │ ├── md-construct.svg │ │ │ │ │ │ ├── md-contact.svg │ │ │ │ │ │ ├── md-contacts.svg │ │ │ │ │ │ ├── md-contract.svg │ │ │ │ │ │ ├── md-contrast.svg │ │ │ │ │ │ ├── md-copy.svg │ │ │ │ │ │ ├── md-create.svg │ │ │ │ │ │ ├── md-crop.svg │ │ │ │ │ │ ├── md-cube.svg │ │ │ │ │ │ ├── md-cut.svg │ │ │ │ │ │ ├── md-desktop.svg │ │ │ │ │ │ ├── md-disc.svg │ │ │ │ │ │ ├── md-document.svg │ │ │ │ │ │ ├── md-done-all.svg │ │ │ │ │ │ ├── md-download.svg │ │ │ │ │ │ ├── md-easel.svg │ │ │ │ │ │ ├── md-egg.svg │ │ │ │ │ │ ├── md-exit.svg │ │ │ │ │ │ ├── md-expand.svg │ │ │ │ │ │ ├── md-eye-off.svg │ │ │ │ │ │ ├── md-eye.svg │ │ │ │ │ │ ├── md-fastforward.svg │ │ │ │ │ │ ├── md-female.svg │ │ │ │ │ │ ├── md-filing.svg │ │ │ │ │ │ ├── md-film.svg │ │ │ │ │ │ ├── md-finger-print.svg │ │ │ │ │ │ ├── md-fitness.svg │ │ │ │ │ │ ├── md-flag.svg │ │ │ │ │ │ ├── md-flame.svg │ │ │ │ │ │ ├── md-flash-off.svg │ │ │ │ │ │ ├── md-flash.svg │ │ │ │ │ │ ├── md-flashlight.svg │ │ │ │ │ │ ├── md-flask.svg │ │ │ │ │ │ ├── md-flower.svg │ │ │ │ │ │ ├── md-folder-open.svg │ │ │ │ │ │ ├── md-folder.svg │ │ │ │ │ │ ├── md-football.svg │ │ │ │ │ │ ├── md-funnel.svg │ │ │ │ │ │ ├── md-gift.svg │ │ │ │ │ │ ├── md-git-branch.svg │ │ │ │ │ │ ├── md-git-commit.svg │ │ │ │ │ │ ├── md-git-compare.svg │ │ │ │ │ │ ├── md-git-merge.svg │ │ │ │ │ │ ├── md-git-network.svg │ │ │ │ │ │ ├── md-git-pull-request.svg │ │ │ │ │ │ ├── md-glasses.svg │ │ │ │ │ │ ├── md-globe.svg │ │ │ │ │ │ ├── md-grid.svg │ │ │ │ │ │ ├── md-hammer.svg │ │ │ │ │ │ ├── md-hand.svg │ │ │ │ │ │ ├── md-happy.svg │ │ │ │ │ │ ├── md-headset.svg │ │ │ │ │ │ ├── md-heart-dislike.svg │ │ │ │ │ │ ├── md-heart-empty.svg │ │ │ │ │ │ ├── md-heart-half.svg │ │ │ │ │ │ ├── md-heart.svg │ │ │ │ │ │ ├── md-help-buoy.svg │ │ │ │ │ │ ├── md-help-circle-outline.svg │ │ │ │ │ │ ├── md-help-circle.svg │ │ │ │ │ │ ├── md-help.svg │ │ │ │ │ │ ├── md-home.svg │ │ │ │ │ │ ├── md-hourglass.svg │ │ │ │ │ │ ├── md-ice-cream.svg │ │ │ │ │ │ ├── md-image.svg │ │ │ │ │ │ ├── md-images.svg │ │ │ │ │ │ ├── md-infinite.svg │ │ │ │ │ │ ├── md-information-circle-outline.svg │ │ │ │ │ │ ├── md-information-circle.svg │ │ │ │ │ │ ├── md-information.svg │ │ │ │ │ │ ├── md-jet.svg │ │ │ │ │ │ ├── md-journal.svg │ │ │ │ │ │ ├── md-key.svg │ │ │ │ │ │ ├── md-keypad.svg │ │ │ │ │ │ ├── md-laptop.svg │ │ │ │ │ │ ├── md-leaf.svg │ │ │ │ │ │ ├── md-link.svg │ │ │ │ │ │ ├── md-list-box.svg │ │ │ │ │ │ ├── md-list.svg │ │ │ │ │ │ ├── md-locate.svg │ │ │ │ │ │ ├── md-lock.svg │ │ │ │ │ │ ├── md-log-in.svg │ │ │ │ │ │ ├── md-log-out.svg │ │ │ │ │ │ ├── md-magnet.svg │ │ │ │ │ │ ├── md-mail-open.svg │ │ │ │ │ │ ├── md-mail-unread.svg │ │ │ │ │ │ ├── md-mail.svg │ │ │ │ │ │ ├── md-male.svg │ │ │ │ │ │ ├── md-man.svg │ │ │ │ │ │ ├── md-map.svg │ │ │ │ │ │ ├── md-medal.svg │ │ │ │ │ │ ├── md-medical.svg │ │ │ │ │ │ ├── md-medkit.svg │ │ │ │ │ │ ├── md-megaphone.svg │ │ │ │ │ │ ├── md-menu.svg │ │ │ │ │ │ ├── md-mic-off.svg │ │ │ │ │ │ ├── md-mic.svg │ │ │ │ │ │ ├── md-microphone.svg │ │ │ │ │ │ ├── md-moon.svg │ │ │ │ │ │ ├── md-more.svg │ │ │ │ │ │ ├── md-move.svg │ │ │ │ │ │ ├── md-musical-note.svg │ │ │ │ │ │ ├── md-musical-notes.svg │ │ │ │ │ │ ├── md-navigate.svg │ │ │ │ │ │ ├── md-notifications-off.svg │ │ │ │ │ │ ├── md-notifications-outline.svg │ │ │ │ │ │ ├── md-notifications.svg │ │ │ │ │ │ ├── md-nuclear.svg │ │ │ │ │ │ ├── md-nutrition.svg │ │ │ │ │ │ ├── md-open.svg │ │ │ │ │ │ ├── md-options.svg │ │ │ │ │ │ ├── md-outlet.svg │ │ │ │ │ │ ├── md-paper-plane.svg │ │ │ │ │ │ ├── md-paper.svg │ │ │ │ │ │ ├── md-partly-sunny.svg │ │ │ │ │ │ ├── md-pause.svg │ │ │ │ │ │ ├── md-paw.svg │ │ │ │ │ │ ├── md-people.svg │ │ │ │ │ │ ├── md-person-add.svg │ │ │ │ │ │ ├── md-person.svg │ │ │ │ │ │ ├── md-phone-landscape.svg │ │ │ │ │ │ ├── md-phone-portrait.svg │ │ │ │ │ │ ├── md-photos.svg │ │ │ │ │ │ ├── md-pie.svg │ │ │ │ │ │ ├── md-pin.svg │ │ │ │ │ │ ├── md-pint.svg │ │ │ │ │ │ ├── md-pizza.svg │ │ │ │ │ │ ├── md-planet.svg │ │ │ │ │ │ ├── md-play-circle.svg │ │ │ │ │ │ ├── md-play.svg │ │ │ │ │ │ ├── md-podium.svg │ │ │ │ │ │ ├── md-power.svg │ │ │ │ │ │ ├── md-pricetag.svg │ │ │ │ │ │ ├── md-pricetags.svg │ │ │ │ │ │ ├── md-print.svg │ │ │ │ │ │ ├── md-pulse.svg │ │ │ │ │ │ ├── md-qr-scanner.svg │ │ │ │ │ │ ├── md-quote.svg │ │ │ │ │ │ ├── md-radio-button-off.svg │ │ │ │ │ │ ├── md-radio-button-on.svg │ │ │ │ │ │ ├── md-radio.svg │ │ │ │ │ │ ├── md-rainy.svg │ │ │ │ │ │ ├── md-recording.svg │ │ │ │ │ │ ├── md-redo.svg │ │ │ │ │ │ ├── md-refresh-circle.svg │ │ │ │ │ │ ├── md-refresh.svg │ │ │ │ │ │ ├── md-remove-circle-outline.svg │ │ │ │ │ │ ├── md-remove-circle.svg │ │ │ │ │ │ ├── md-remove.svg │ │ │ │ │ │ ├── md-reorder.svg │ │ │ │ │ │ ├── md-repeat.svg │ │ │ │ │ │ ├── md-resize.svg │ │ │ │ │ │ ├── md-restaurant.svg │ │ │ │ │ │ ├── md-return-left.svg │ │ │ │ │ │ ├── md-return-right.svg │ │ │ │ │ │ ├── md-reverse-camera.svg │ │ │ │ │ │ ├── md-rewind.svg │ │ │ │ │ │ ├── md-ribbon.svg │ │ │ │ │ │ ├── md-rocket.svg │ │ │ │ │ │ ├── md-rose.svg │ │ │ │ │ │ ├── md-sad.svg │ │ │ │ │ │ ├── md-save.svg │ │ │ │ │ │ ├── md-school.svg │ │ │ │ │ │ ├── md-search.svg │ │ │ │ │ │ ├── md-send.svg │ │ │ │ │ │ ├── md-settings.svg │ │ │ │ │ │ ├── md-share-alt.svg │ │ │ │ │ │ ├── md-share.svg │ │ │ │ │ │ ├── md-shirt.svg │ │ │ │ │ │ ├── md-shuffle.svg │ │ │ │ │ │ ├── md-skip-backward.svg │ │ │ │ │ │ ├── md-skip-forward.svg │ │ │ │ │ │ ├── md-snow.svg │ │ │ │ │ │ ├── md-speedometer.svg │ │ │ │ │ │ ├── md-square-outline.svg │ │ │ │ │ │ ├── md-square.svg │ │ │ │ │ │ ├── md-star-half.svg │ │ │ │ │ │ ├── md-star-outline.svg │ │ │ │ │ │ ├── md-star.svg │ │ │ │ │ │ ├── md-stats.svg │ │ │ │ │ │ ├── md-stopwatch.svg │ │ │ │ │ │ ├── md-subway.svg │ │ │ │ │ │ ├── md-sunny.svg │ │ │ │ │ │ ├── md-swap.svg │ │ │ │ │ │ ├── md-switch.svg │ │ │ │ │ │ ├── md-sync.svg │ │ │ │ │ │ ├── md-tablet-landscape.svg │ │ │ │ │ │ ├── md-tablet-portrait.svg │ │ │ │ │ │ ├── md-tennisball.svg │ │ │ │ │ │ ├── md-text.svg │ │ │ │ │ │ ├── md-thermometer.svg │ │ │ │ │ │ ├── md-thumbs-down.svg │ │ │ │ │ │ ├── md-thumbs-up.svg │ │ │ │ │ │ ├── md-thunderstorm.svg │ │ │ │ │ │ ├── md-time.svg │ │ │ │ │ │ ├── md-timer.svg │ │ │ │ │ │ ├── md-today.svg │ │ │ │ │ │ ├── md-train.svg │ │ │ │ │ │ ├── md-transgender.svg │ │ │ │ │ │ ├── md-trash.svg │ │ │ │ │ │ ├── md-trending-down.svg │ │ │ │ │ │ ├── md-trending-up.svg │ │ │ │ │ │ ├── md-trophy.svg │ │ │ │ │ │ ├── md-tv.svg │ │ │ │ │ │ ├── md-umbrella.svg │ │ │ │ │ │ ├── md-undo.svg │ │ │ │ │ │ ├── md-unlock.svg │ │ │ │ │ │ ├── md-videocam.svg │ │ │ │ │ │ ├── md-volume-high.svg │ │ │ │ │ │ ├── md-volume-low.svg │ │ │ │ │ │ ├── md-volume-mute.svg │ │ │ │ │ │ ├── md-volume-off.svg │ │ │ │ │ │ ├── md-walk.svg │ │ │ │ │ │ ├── md-wallet.svg │ │ │ │ │ │ ├── md-warning.svg │ │ │ │ │ │ ├── md-watch.svg │ │ │ │ │ │ ├── md-water.svg │ │ │ │ │ │ ├── md-wifi.svg │ │ │ │ │ │ ├── md-wine.svg │ │ │ │ │ │ └── md-woman.svg │ │ │ │ │ └── utils.js │ │ │ │ ├── index.js │ │ │ │ └── interface.js │ │ │ ├── css │ │ │ │ ├── ionicons-core.css │ │ │ │ ├── ionicons-core.min.css │ │ │ │ ├── ionicons.css │ │ │ │ └── ionicons.min.css │ │ │ ├── esm │ │ │ │ ├── es2017 │ │ │ │ │ ├── build │ │ │ │ │ │ ├── chunk-1ca7e569.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── uqr5vpdq.entry.js │ │ │ │ │ │ └── uqr5vpdq.sc.entry.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── ionicons.components.js │ │ │ │ │ ├── ionicons.core.js │ │ │ │ │ └── ionicons.define.js │ │ │ │ ├── es5 │ │ │ │ │ ├── build │ │ │ │ │ │ ├── chunk-1ca7e569.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── uqr5vpdq.entry.js │ │ │ │ │ │ └── uqr5vpdq.sc.entry.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── ionicons.components.js │ │ │ │ │ ├── ionicons.core.js │ │ │ │ │ ├── ionicons.define.js │ │ │ │ │ └── polyfills │ │ │ │ │ │ ├── array.js │ │ │ │ │ │ ├── css-shim.js │ │ │ │ │ │ ├── dom.js │ │ │ │ │ │ ├── fetch.js │ │ │ │ │ │ ├── map.js │ │ │ │ │ │ ├── object.js │ │ │ │ │ │ ├── promise.js │ │ │ │ │ │ ├── string.js │ │ │ │ │ │ ├── tslib.js │ │ │ │ │ │ └── url.js │ │ │ │ └── index.js │ │ │ ├── fonts │ │ │ │ ├── ionicons.eot │ │ │ │ ├── ionicons.svg │ │ │ │ ├── ionicons.ttf │ │ │ │ ├── ionicons.woff │ │ │ │ └── ionicons.woff2 │ │ │ ├── index.js │ │ │ ├── ionicons.js │ │ │ ├── ionicons │ │ │ │ ├── chunk-033a0284.es5.js │ │ │ │ ├── chunk-1ca7e569.js │ │ │ │ ├── data.json │ │ │ │ ├── index.es5.js │ │ │ │ ├── index.js │ │ │ │ ├── ionicons.dkb1z4hj.js │ │ │ │ ├── ionicons.dy5iahpg.js │ │ │ │ ├── svg │ │ │ │ │ ├── index.esm.d.ts │ │ │ │ │ ├── index.esm.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── ios-add-circle-outline.svg │ │ │ │ │ ├── ios-add-circle.svg │ │ │ │ │ ├── ios-add.svg │ │ │ │ │ ├── ios-airplane.svg │ │ │ │ │ ├── ios-alarm.svg │ │ │ │ │ ├── ios-albums.svg │ │ │ │ │ ├── ios-alert.svg │ │ │ │ │ ├── ios-american-football.svg │ │ │ │ │ ├── ios-analytics.svg │ │ │ │ │ ├── ios-aperture.svg │ │ │ │ │ ├── ios-apps.svg │ │ │ │ │ ├── ios-appstore.svg │ │ │ │ │ ├── ios-archive.svg │ │ │ │ │ ├── ios-arrow-back.svg │ │ │ │ │ ├── ios-arrow-down.svg │ │ │ │ │ ├── ios-arrow-dropdown-circle.svg │ │ │ │ │ ├── ios-arrow-dropdown.svg │ │ │ │ │ ├── ios-arrow-dropleft-circle.svg │ │ │ │ │ ├── ios-arrow-dropleft.svg │ │ │ │ │ ├── ios-arrow-dropright-circle.svg │ │ │ │ │ ├── ios-arrow-dropright.svg │ │ │ │ │ ├── ios-arrow-dropup-circle.svg │ │ │ │ │ ├── ios-arrow-dropup.svg │ │ │ │ │ ├── ios-arrow-forward.svg │ │ │ │ │ ├── ios-arrow-round-back.svg │ │ │ │ │ ├── ios-arrow-round-down.svg │ │ │ │ │ ├── ios-arrow-round-forward.svg │ │ │ │ │ ├── ios-arrow-round-up.svg │ │ │ │ │ ├── ios-arrow-up.svg │ │ │ │ │ ├── ios-at.svg │ │ │ │ │ ├── ios-attach.svg │ │ │ │ │ ├── ios-backspace.svg │ │ │ │ │ ├── ios-barcode.svg │ │ │ │ │ ├── ios-baseball.svg │ │ │ │ │ ├── ios-basket.svg │ │ │ │ │ ├── ios-basketball.svg │ │ │ │ │ ├── ios-battery-charging.svg │ │ │ │ │ ├── ios-battery-dead.svg │ │ │ │ │ ├── ios-battery-full.svg │ │ │ │ │ ├── ios-beaker.svg │ │ │ │ │ ├── ios-bed.svg │ │ │ │ │ ├── ios-beer.svg │ │ │ │ │ ├── ios-bicycle.svg │ │ │ │ │ ├── ios-bluetooth.svg │ │ │ │ │ ├── ios-boat.svg │ │ │ │ │ ├── ios-body.svg │ │ │ │ │ ├── ios-bonfire.svg │ │ │ │ │ ├── ios-book.svg │ │ │ │ │ ├── ios-bookmark.svg │ │ │ │ │ ├── ios-bookmarks.svg │ │ │ │ │ ├── ios-bowtie.svg │ │ │ │ │ ├── ios-briefcase.svg │ │ │ │ │ ├── ios-browsers.svg │ │ │ │ │ ├── ios-brush.svg │ │ │ │ │ ├── ios-bug.svg │ │ │ │ │ ├── ios-build.svg │ │ │ │ │ ├── ios-bulb.svg │ │ │ │ │ ├── ios-bus.svg │ │ │ │ │ ├── ios-business.svg │ │ │ │ │ ├── ios-cafe.svg │ │ │ │ │ ├── ios-calculator.svg │ │ │ │ │ ├── ios-calendar.svg │ │ │ │ │ ├── ios-call.svg │ │ │ │ │ ├── ios-camera.svg │ │ │ │ │ ├── ios-car.svg │ │ │ │ │ ├── ios-card.svg │ │ │ │ │ ├── ios-cart.svg │ │ │ │ │ ├── ios-cash.svg │ │ │ │ │ ├── ios-cellular.svg │ │ │ │ │ ├── ios-chatboxes.svg │ │ │ │ │ ├── ios-chatbubbles.svg │ │ │ │ │ ├── ios-checkbox-outline.svg │ │ │ │ │ ├── ios-checkbox.svg │ │ │ │ │ ├── ios-checkmark-circle-outline.svg │ │ │ │ │ ├── ios-checkmark-circle.svg │ │ │ │ │ ├── ios-checkmark.svg │ │ │ │ │ ├── ios-clipboard.svg │ │ │ │ │ ├── ios-clock.svg │ │ │ │ │ ├── ios-close-circle-outline.svg │ │ │ │ │ ├── ios-close-circle.svg │ │ │ │ │ ├── ios-close.svg │ │ │ │ │ ├── ios-cloud-circle.svg │ │ │ │ │ ├── ios-cloud-done.svg │ │ │ │ │ ├── ios-cloud-download.svg │ │ │ │ │ ├── ios-cloud-outline.svg │ │ │ │ │ ├── ios-cloud-upload.svg │ │ │ │ │ ├── ios-cloud.svg │ │ │ │ │ ├── ios-cloudy-night.svg │ │ │ │ │ ├── ios-cloudy.svg │ │ │ │ │ ├── ios-code-download.svg │ │ │ │ │ ├── ios-code-working.svg │ │ │ │ │ ├── ios-code.svg │ │ │ │ │ ├── ios-cog.svg │ │ │ │ │ ├── ios-color-fill.svg │ │ │ │ │ ├── ios-color-filter.svg │ │ │ │ │ ├── ios-color-palette.svg │ │ │ │ │ ├── ios-color-wand.svg │ │ │ │ │ ├── ios-compass.svg │ │ │ │ │ ├── ios-construct.svg │ │ │ │ │ ├── ios-contact.svg │ │ │ │ │ ├── ios-contacts.svg │ │ │ │ │ ├── ios-contract.svg │ │ │ │ │ ├── ios-contrast.svg │ │ │ │ │ ├── ios-copy.svg │ │ │ │ │ ├── ios-create.svg │ │ │ │ │ ├── ios-crop.svg │ │ │ │ │ ├── ios-cube.svg │ │ │ │ │ ├── ios-cut.svg │ │ │ │ │ ├── ios-desktop.svg │ │ │ │ │ ├── ios-disc.svg │ │ │ │ │ ├── ios-document.svg │ │ │ │ │ ├── ios-done-all.svg │ │ │ │ │ ├── ios-download.svg │ │ │ │ │ ├── ios-easel.svg │ │ │ │ │ ├── ios-egg.svg │ │ │ │ │ ├── ios-exit.svg │ │ │ │ │ ├── ios-expand.svg │ │ │ │ │ ├── ios-eye-off.svg │ │ │ │ │ ├── ios-eye.svg │ │ │ │ │ ├── ios-fastforward.svg │ │ │ │ │ ├── ios-female.svg │ │ │ │ │ ├── ios-filing.svg │ │ │ │ │ ├── ios-film.svg │ │ │ │ │ ├── ios-finger-print.svg │ │ │ │ │ ├── ios-fitness.svg │ │ │ │ │ ├── ios-flag.svg │ │ │ │ │ ├── ios-flame.svg │ │ │ │ │ ├── ios-flash-off.svg │ │ │ │ │ ├── ios-flash.svg │ │ │ │ │ ├── ios-flashlight.svg │ │ │ │ │ ├── ios-flask.svg │ │ │ │ │ ├── ios-flower.svg │ │ │ │ │ ├── ios-folder-open.svg │ │ │ │ │ ├── ios-folder.svg │ │ │ │ │ ├── ios-football.svg │ │ │ │ │ ├── ios-funnel.svg │ │ │ │ │ ├── ios-gift.svg │ │ │ │ │ ├── ios-git-branch.svg │ │ │ │ │ ├── ios-git-commit.svg │ │ │ │ │ ├── ios-git-compare.svg │ │ │ │ │ ├── ios-git-merge.svg │ │ │ │ │ ├── ios-git-network.svg │ │ │ │ │ ├── ios-git-pull-request.svg │ │ │ │ │ ├── ios-glasses.svg │ │ │ │ │ ├── ios-globe.svg │ │ │ │ │ ├── ios-grid.svg │ │ │ │ │ ├── ios-hammer.svg │ │ │ │ │ ├── ios-hand.svg │ │ │ │ │ ├── ios-happy.svg │ │ │ │ │ ├── ios-headset.svg │ │ │ │ │ ├── ios-heart-dislike.svg │ │ │ │ │ ├── ios-heart-empty.svg │ │ │ │ │ ├── ios-heart-half.svg │ │ │ │ │ ├── ios-heart.svg │ │ │ │ │ ├── ios-help-buoy.svg │ │ │ │ │ ├── ios-help-circle-outline.svg │ │ │ │ │ ├── ios-help-circle.svg │ │ │ │ │ ├── ios-help.svg │ │ │ │ │ ├── ios-home.svg │ │ │ │ │ ├── ios-hourglass.svg │ │ │ │ │ ├── ios-ice-cream.svg │ │ │ │ │ ├── ios-image.svg │ │ │ │ │ ├── ios-images.svg │ │ │ │ │ ├── ios-infinite.svg │ │ │ │ │ ├── ios-information-circle-outline.svg │ │ │ │ │ ├── ios-information-circle.svg │ │ │ │ │ ├── ios-information.svg │ │ │ │ │ ├── ios-jet.svg │ │ │ │ │ ├── ios-journal.svg │ │ │ │ │ ├── ios-key.svg │ │ │ │ │ ├── ios-keypad.svg │ │ │ │ │ ├── ios-laptop.svg │ │ │ │ │ ├── ios-leaf.svg │ │ │ │ │ ├── ios-link.svg │ │ │ │ │ ├── ios-list-box.svg │ │ │ │ │ ├── ios-list.svg │ │ │ │ │ ├── ios-locate.svg │ │ │ │ │ ├── ios-lock.svg │ │ │ │ │ ├── ios-log-in.svg │ │ │ │ │ ├── ios-log-out.svg │ │ │ │ │ ├── ios-magnet.svg │ │ │ │ │ ├── ios-mail-open.svg │ │ │ │ │ ├── ios-mail-unread.svg │ │ │ │ │ ├── ios-mail.svg │ │ │ │ │ ├── ios-male.svg │ │ │ │ │ ├── ios-man.svg │ │ │ │ │ ├── ios-map.svg │ │ │ │ │ ├── ios-medal.svg │ │ │ │ │ ├── ios-medical.svg │ │ │ │ │ ├── ios-medkit.svg │ │ │ │ │ ├── ios-megaphone.svg │ │ │ │ │ ├── ios-menu.svg │ │ │ │ │ ├── ios-mic-off.svg │ │ │ │ │ ├── ios-mic.svg │ │ │ │ │ ├── ios-microphone.svg │ │ │ │ │ ├── ios-moon.svg │ │ │ │ │ ├── ios-more.svg │ │ │ │ │ ├── ios-move.svg │ │ │ │ │ ├── ios-musical-note.svg │ │ │ │ │ ├── ios-musical-notes.svg │ │ │ │ │ ├── ios-navigate.svg │ │ │ │ │ ├── ios-notifications-off.svg │ │ │ │ │ ├── ios-notifications-outline.svg │ │ │ │ │ ├── ios-notifications.svg │ │ │ │ │ ├── ios-nuclear.svg │ │ │ │ │ ├── ios-nutrition.svg │ │ │ │ │ ├── ios-open.svg │ │ │ │ │ ├── ios-options.svg │ │ │ │ │ ├── ios-outlet.svg │ │ │ │ │ ├── ios-paper-plane.svg │ │ │ │ │ ├── ios-paper.svg │ │ │ │ │ ├── ios-partly-sunny.svg │ │ │ │ │ ├── ios-pause.svg │ │ │ │ │ ├── ios-paw.svg │ │ │ │ │ ├── ios-people.svg │ │ │ │ │ ├── ios-person-add.svg │ │ │ │ │ ├── ios-person.svg │ │ │ │ │ ├── ios-phone-landscape.svg │ │ │ │ │ ├── ios-phone-portrait.svg │ │ │ │ │ ├── ios-photos.svg │ │ │ │ │ ├── ios-pie.svg │ │ │ │ │ ├── ios-pin.svg │ │ │ │ │ ├── ios-pint.svg │ │ │ │ │ ├── ios-pizza.svg │ │ │ │ │ ├── ios-planet.svg │ │ │ │ │ ├── ios-play-circle.svg │ │ │ │ │ ├── ios-play.svg │ │ │ │ │ ├── ios-podium.svg │ │ │ │ │ ├── ios-power.svg │ │ │ │ │ ├── ios-pricetag.svg │ │ │ │ │ ├── ios-pricetags.svg │ │ │ │ │ ├── ios-print.svg │ │ │ │ │ ├── ios-pulse.svg │ │ │ │ │ ├── ios-qr-scanner.svg │ │ │ │ │ ├── ios-quote.svg │ │ │ │ │ ├── ios-radio-button-off.svg │ │ │ │ │ ├── ios-radio-button-on.svg │ │ │ │ │ ├── ios-radio.svg │ │ │ │ │ ├── ios-rainy.svg │ │ │ │ │ ├── ios-recording.svg │ │ │ │ │ ├── ios-redo.svg │ │ │ │ │ ├── ios-refresh-circle.svg │ │ │ │ │ ├── ios-refresh.svg │ │ │ │ │ ├── ios-remove-circle-outline.svg │ │ │ │ │ ├── ios-remove-circle.svg │ │ │ │ │ ├── ios-remove.svg │ │ │ │ │ ├── ios-reorder.svg │ │ │ │ │ ├── ios-repeat.svg │ │ │ │ │ ├── ios-resize.svg │ │ │ │ │ ├── ios-restaurant.svg │ │ │ │ │ ├── ios-return-left.svg │ │ │ │ │ ├── ios-return-right.svg │ │ │ │ │ ├── ios-reverse-camera.svg │ │ │ │ │ ├── ios-rewind.svg │ │ │ │ │ ├── ios-ribbon.svg │ │ │ │ │ ├── ios-rocket.svg │ │ │ │ │ ├── ios-rose.svg │ │ │ │ │ ├── ios-sad.svg │ │ │ │ │ ├── ios-save.svg │ │ │ │ │ ├── ios-school.svg │ │ │ │ │ ├── ios-search.svg │ │ │ │ │ ├── ios-send.svg │ │ │ │ │ ├── ios-settings.svg │ │ │ │ │ ├── ios-share-alt.svg │ │ │ │ │ ├── ios-share.svg │ │ │ │ │ ├── ios-shirt.svg │ │ │ │ │ ├── ios-shuffle.svg │ │ │ │ │ ├── ios-skip-backward.svg │ │ │ │ │ ├── ios-skip-forward.svg │ │ │ │ │ ├── ios-snow.svg │ │ │ │ │ ├── ios-speedometer.svg │ │ │ │ │ ├── ios-square-outline.svg │ │ │ │ │ ├── ios-square.svg │ │ │ │ │ ├── ios-star-half.svg │ │ │ │ │ ├── ios-star-outline.svg │ │ │ │ │ ├── ios-star.svg │ │ │ │ │ ├── ios-stats.svg │ │ │ │ │ ├── ios-stopwatch.svg │ │ │ │ │ ├── ios-subway.svg │ │ │ │ │ ├── ios-sunny.svg │ │ │ │ │ ├── ios-swap.svg │ │ │ │ │ ├── ios-switch.svg │ │ │ │ │ ├── ios-sync.svg │ │ │ │ │ ├── ios-tablet-landscape.svg │ │ │ │ │ ├── ios-tablet-portrait.svg │ │ │ │ │ ├── ios-tennisball.svg │ │ │ │ │ ├── ios-text.svg │ │ │ │ │ ├── ios-thermometer.svg │ │ │ │ │ ├── ios-thumbs-down.svg │ │ │ │ │ ├── ios-thumbs-up.svg │ │ │ │ │ ├── ios-thunderstorm.svg │ │ │ │ │ ├── ios-time.svg │ │ │ │ │ ├── ios-timer.svg │ │ │ │ │ ├── ios-today.svg │ │ │ │ │ ├── ios-train.svg │ │ │ │ │ ├── ios-transgender.svg │ │ │ │ │ ├── ios-trash.svg │ │ │ │ │ ├── ios-trending-down.svg │ │ │ │ │ ├── ios-trending-up.svg │ │ │ │ │ ├── ios-trophy.svg │ │ │ │ │ ├── ios-tv.svg │ │ │ │ │ ├── ios-umbrella.svg │ │ │ │ │ ├── ios-undo.svg │ │ │ │ │ ├── ios-unlock.svg │ │ │ │ │ ├── ios-videocam.svg │ │ │ │ │ ├── ios-volume-high.svg │ │ │ │ │ ├── ios-volume-low.svg │ │ │ │ │ ├── ios-volume-mute.svg │ │ │ │ │ ├── ios-volume-off.svg │ │ │ │ │ ├── ios-walk.svg │ │ │ │ │ ├── ios-wallet.svg │ │ │ │ │ ├── ios-warning.svg │ │ │ │ │ ├── ios-watch.svg │ │ │ │ │ ├── ios-water.svg │ │ │ │ │ ├── ios-wifi.svg │ │ │ │ │ ├── ios-wine.svg │ │ │ │ │ ├── ios-woman.svg │ │ │ │ │ ├── logo-android.svg │ │ │ │ │ ├── logo-angular.svg │ │ │ │ │ ├── logo-apple.svg │ │ │ │ │ ├── logo-bitbucket.svg │ │ │ │ │ ├── logo-bitcoin.svg │ │ │ │ │ ├── logo-buffer.svg │ │ │ │ │ ├── logo-chrome.svg │ │ │ │ │ ├── logo-closed-captioning.svg │ │ │ │ │ ├── logo-codepen.svg │ │ │ │ │ ├── logo-css3.svg │ │ │ │ │ ├── logo-designernews.svg │ │ │ │ │ ├── logo-dribbble.svg │ │ │ │ │ ├── logo-dropbox.svg │ │ │ │ │ ├── logo-euro.svg │ │ │ │ │ ├── logo-facebook.svg │ │ │ │ │ ├── logo-flickr.svg │ │ │ │ │ ├── logo-foursquare.svg │ │ │ │ │ ├── logo-freebsd-devil.svg │ │ │ │ │ ├── logo-game-controller-a.svg │ │ │ │ │ ├── logo-game-controller-b.svg │ │ │ │ │ ├── logo-github.svg │ │ │ │ │ ├── logo-google.svg │ │ │ │ │ ├── logo-googleplus.svg │ │ │ │ │ ├── logo-hackernews.svg │ │ │ │ │ ├── logo-html5.svg │ │ │ │ │ ├── logo-instagram.svg │ │ │ │ │ ├── logo-ionic.svg │ │ │ │ │ ├── logo-ionitron.svg │ │ │ │ │ ├── logo-javascript.svg │ │ │ │ │ ├── logo-linkedin.svg │ │ │ │ │ ├── logo-markdown.svg │ │ │ │ │ ├── logo-model-s.svg │ │ │ │ │ ├── logo-no-smoking.svg │ │ │ │ │ ├── logo-nodejs.svg │ │ │ │ │ ├── logo-npm.svg │ │ │ │ │ ├── logo-octocat.svg │ │ │ │ │ ├── logo-pinterest.svg │ │ │ │ │ ├── logo-playstation.svg │ │ │ │ │ ├── logo-polymer.svg │ │ │ │ │ ├── logo-python.svg │ │ │ │ │ ├── logo-reddit.svg │ │ │ │ │ ├── logo-rss.svg │ │ │ │ │ ├── logo-sass.svg │ │ │ │ │ ├── logo-skype.svg │ │ │ │ │ ├── logo-slack.svg │ │ │ │ │ ├── logo-snapchat.svg │ │ │ │ │ ├── logo-steam.svg │ │ │ │ │ ├── logo-tumblr.svg │ │ │ │ │ ├── logo-tux.svg │ │ │ │ │ ├── logo-twitch.svg │ │ │ │ │ ├── logo-twitter.svg │ │ │ │ │ ├── logo-usd.svg │ │ │ │ │ ├── logo-vimeo.svg │ │ │ │ │ ├── logo-vk.svg │ │ │ │ │ ├── logo-whatsapp.svg │ │ │ │ │ ├── logo-windows.svg │ │ │ │ │ ├── logo-wordpress.svg │ │ │ │ │ ├── logo-xbox.svg │ │ │ │ │ ├── logo-xing.svg │ │ │ │ │ ├── logo-yahoo.svg │ │ │ │ │ ├── logo-yen.svg │ │ │ │ │ ├── logo-youtube.svg │ │ │ │ │ ├── md-add-circle-outline.svg │ │ │ │ │ ├── md-add-circle.svg │ │ │ │ │ ├── md-add.svg │ │ │ │ │ ├── md-airplane.svg │ │ │ │ │ ├── md-alarm.svg │ │ │ │ │ ├── md-albums.svg │ │ │ │ │ ├── md-alert.svg │ │ │ │ │ ├── md-american-football.svg │ │ │ │ │ ├── md-analytics.svg │ │ │ │ │ ├── md-aperture.svg │ │ │ │ │ ├── md-apps.svg │ │ │ │ │ ├── md-appstore.svg │ │ │ │ │ ├── md-archive.svg │ │ │ │ │ ├── md-arrow-back.svg │ │ │ │ │ ├── md-arrow-down.svg │ │ │ │ │ ├── md-arrow-dropdown-circle.svg │ │ │ │ │ ├── md-arrow-dropdown.svg │ │ │ │ │ ├── md-arrow-dropleft-circle.svg │ │ │ │ │ ├── md-arrow-dropleft.svg │ │ │ │ │ ├── md-arrow-dropright-circle.svg │ │ │ │ │ ├── md-arrow-dropright.svg │ │ │ │ │ ├── md-arrow-dropup-circle.svg │ │ │ │ │ ├── md-arrow-dropup.svg │ │ │ │ │ ├── md-arrow-forward.svg │ │ │ │ │ ├── md-arrow-round-back.svg │ │ │ │ │ ├── md-arrow-round-down.svg │ │ │ │ │ ├── md-arrow-round-forward.svg │ │ │ │ │ ├── md-arrow-round-up.svg │ │ │ │ │ ├── md-arrow-up.svg │ │ │ │ │ ├── md-at.svg │ │ │ │ │ ├── md-attach.svg │ │ │ │ │ ├── md-backspace.svg │ │ │ │ │ ├── md-barcode.svg │ │ │ │ │ ├── md-baseball.svg │ │ │ │ │ ├── md-basket.svg │ │ │ │ │ ├── md-basketball.svg │ │ │ │ │ ├── md-battery-charging.svg │ │ │ │ │ ├── md-battery-dead.svg │ │ │ │ │ ├── md-battery-full.svg │ │ │ │ │ ├── md-beaker.svg │ │ │ │ │ ├── md-bed.svg │ │ │ │ │ ├── md-beer.svg │ │ │ │ │ ├── md-bicycle.svg │ │ │ │ │ ├── md-bluetooth.svg │ │ │ │ │ ├── md-boat.svg │ │ │ │ │ ├── md-body.svg │ │ │ │ │ ├── md-bonfire.svg │ │ │ │ │ ├── md-book.svg │ │ │ │ │ ├── md-bookmark.svg │ │ │ │ │ ├── md-bookmarks.svg │ │ │ │ │ ├── md-bowtie.svg │ │ │ │ │ ├── md-briefcase.svg │ │ │ │ │ ├── md-browsers.svg │ │ │ │ │ ├── md-brush.svg │ │ │ │ │ ├── md-bug.svg │ │ │ │ │ ├── md-build.svg │ │ │ │ │ ├── md-bulb.svg │ │ │ │ │ ├── md-bus.svg │ │ │ │ │ ├── md-business.svg │ │ │ │ │ ├── md-cafe.svg │ │ │ │ │ ├── md-calculator.svg │ │ │ │ │ ├── md-calendar.svg │ │ │ │ │ ├── md-call.svg │ │ │ │ │ ├── md-camera.svg │ │ │ │ │ ├── md-car.svg │ │ │ │ │ ├── md-card.svg │ │ │ │ │ ├── md-cart.svg │ │ │ │ │ ├── md-cash.svg │ │ │ │ │ ├── md-cellular.svg │ │ │ │ │ ├── md-chatboxes.svg │ │ │ │ │ ├── md-chatbubbles.svg │ │ │ │ │ ├── md-checkbox-outline.svg │ │ │ │ │ ├── md-checkbox.svg │ │ │ │ │ ├── md-checkmark-circle-outline.svg │ │ │ │ │ ├── md-checkmark-circle.svg │ │ │ │ │ ├── md-checkmark.svg │ │ │ │ │ ├── md-clipboard.svg │ │ │ │ │ ├── md-clock.svg │ │ │ │ │ ├── md-close-circle-outline.svg │ │ │ │ │ ├── md-close-circle.svg │ │ │ │ │ ├── md-close.svg │ │ │ │ │ ├── md-cloud-circle.svg │ │ │ │ │ ├── md-cloud-done.svg │ │ │ │ │ ├── md-cloud-download.svg │ │ │ │ │ ├── md-cloud-outline.svg │ │ │ │ │ ├── md-cloud-upload.svg │ │ │ │ │ ├── md-cloud.svg │ │ │ │ │ ├── md-cloudy-night.svg │ │ │ │ │ ├── md-cloudy.svg │ │ │ │ │ ├── md-code-download.svg │ │ │ │ │ ├── md-code-working.svg │ │ │ │ │ ├── md-code.svg │ │ │ │ │ ├── md-cog.svg │ │ │ │ │ ├── md-color-fill.svg │ │ │ │ │ ├── md-color-filter.svg │ │ │ │ │ ├── md-color-palette.svg │ │ │ │ │ ├── md-color-wand.svg │ │ │ │ │ ├── md-compass.svg │ │ │ │ │ ├── md-construct.svg │ │ │ │ │ ├── md-contact.svg │ │ │ │ │ ├── md-contacts.svg │ │ │ │ │ ├── md-contract.svg │ │ │ │ │ ├── md-contrast.svg │ │ │ │ │ ├── md-copy.svg │ │ │ │ │ ├── md-create.svg │ │ │ │ │ ├── md-crop.svg │ │ │ │ │ ├── md-cube.svg │ │ │ │ │ ├── md-cut.svg │ │ │ │ │ ├── md-desktop.svg │ │ │ │ │ ├── md-disc.svg │ │ │ │ │ ├── md-document.svg │ │ │ │ │ ├── md-done-all.svg │ │ │ │ │ ├── md-download.svg │ │ │ │ │ ├── md-easel.svg │ │ │ │ │ ├── md-egg.svg │ │ │ │ │ ├── md-exit.svg │ │ │ │ │ ├── md-expand.svg │ │ │ │ │ ├── md-eye-off.svg │ │ │ │ │ ├── md-eye.svg │ │ │ │ │ ├── md-fastforward.svg │ │ │ │ │ ├── md-female.svg │ │ │ │ │ ├── md-filing.svg │ │ │ │ │ ├── md-film.svg │ │ │ │ │ ├── md-finger-print.svg │ │ │ │ │ ├── md-fitness.svg │ │ │ │ │ ├── md-flag.svg │ │ │ │ │ ├── md-flame.svg │ │ │ │ │ ├── md-flash-off.svg │ │ │ │ │ ├── md-flash.svg │ │ │ │ │ ├── md-flashlight.svg │ │ │ │ │ ├── md-flask.svg │ │ │ │ │ ├── md-flower.svg │ │ │ │ │ ├── md-folder-open.svg │ │ │ │ │ ├── md-folder.svg │ │ │ │ │ ├── md-football.svg │ │ │ │ │ ├── md-funnel.svg │ │ │ │ │ ├── md-gift.svg │ │ │ │ │ ├── md-git-branch.svg │ │ │ │ │ ├── md-git-commit.svg │ │ │ │ │ ├── md-git-compare.svg │ │ │ │ │ ├── md-git-merge.svg │ │ │ │ │ ├── md-git-network.svg │ │ │ │ │ ├── md-git-pull-request.svg │ │ │ │ │ ├── md-glasses.svg │ │ │ │ │ ├── md-globe.svg │ │ │ │ │ ├── md-grid.svg │ │ │ │ │ ├── md-hammer.svg │ │ │ │ │ ├── md-hand.svg │ │ │ │ │ ├── md-happy.svg │ │ │ │ │ ├── md-headset.svg │ │ │ │ │ ├── md-heart-dislike.svg │ │ │ │ │ ├── md-heart-empty.svg │ │ │ │ │ ├── md-heart-half.svg │ │ │ │ │ ├── md-heart.svg │ │ │ │ │ ├── md-help-buoy.svg │ │ │ │ │ ├── md-help-circle-outline.svg │ │ │ │ │ ├── md-help-circle.svg │ │ │ │ │ ├── md-help.svg │ │ │ │ │ ├── md-home.svg │ │ │ │ │ ├── md-hourglass.svg │ │ │ │ │ ├── md-ice-cream.svg │ │ │ │ │ ├── md-image.svg │ │ │ │ │ ├── md-images.svg │ │ │ │ │ ├── md-infinite.svg │ │ │ │ │ ├── md-information-circle-outline.svg │ │ │ │ │ ├── md-information-circle.svg │ │ │ │ │ ├── md-information.svg │ │ │ │ │ ├── md-jet.svg │ │ │ │ │ ├── md-journal.svg │ │ │ │ │ ├── md-key.svg │ │ │ │ │ ├── md-keypad.svg │ │ │ │ │ ├── md-laptop.svg │ │ │ │ │ ├── md-leaf.svg │ │ │ │ │ ├── md-link.svg │ │ │ │ │ ├── md-list-box.svg │ │ │ │ │ ├── md-list.svg │ │ │ │ │ ├── md-locate.svg │ │ │ │ │ ├── md-lock.svg │ │ │ │ │ ├── md-log-in.svg │ │ │ │ │ ├── md-log-out.svg │ │ │ │ │ ├── md-magnet.svg │ │ │ │ │ ├── md-mail-open.svg │ │ │ │ │ ├── md-mail-unread.svg │ │ │ │ │ ├── md-mail.svg │ │ │ │ │ ├── md-male.svg │ │ │ │ │ ├── md-man.svg │ │ │ │ │ ├── md-map.svg │ │ │ │ │ ├── md-medal.svg │ │ │ │ │ ├── md-medical.svg │ │ │ │ │ ├── md-medkit.svg │ │ │ │ │ ├── md-megaphone.svg │ │ │ │ │ ├── md-menu.svg │ │ │ │ │ ├── md-mic-off.svg │ │ │ │ │ ├── md-mic.svg │ │ │ │ │ ├── md-microphone.svg │ │ │ │ │ ├── md-moon.svg │ │ │ │ │ ├── md-more.svg │ │ │ │ │ ├── md-move.svg │ │ │ │ │ ├── md-musical-note.svg │ │ │ │ │ ├── md-musical-notes.svg │ │ │ │ │ ├── md-navigate.svg │ │ │ │ │ ├── md-notifications-off.svg │ │ │ │ │ ├── md-notifications-outline.svg │ │ │ │ │ ├── md-notifications.svg │ │ │ │ │ ├── md-nuclear.svg │ │ │ │ │ ├── md-nutrition.svg │ │ │ │ │ ├── md-open.svg │ │ │ │ │ ├── md-options.svg │ │ │ │ │ ├── md-outlet.svg │ │ │ │ │ ├── md-paper-plane.svg │ │ │ │ │ ├── md-paper.svg │ │ │ │ │ ├── md-partly-sunny.svg │ │ │ │ │ ├── md-pause.svg │ │ │ │ │ ├── md-paw.svg │ │ │ │ │ ├── md-people.svg │ │ │ │ │ ├── md-person-add.svg │ │ │ │ │ ├── md-person.svg │ │ │ │ │ ├── md-phone-landscape.svg │ │ │ │ │ ├── md-phone-portrait.svg │ │ │ │ │ ├── md-photos.svg │ │ │ │ │ ├── md-pie.svg │ │ │ │ │ ├── md-pin.svg │ │ │ │ │ ├── md-pint.svg │ │ │ │ │ ├── md-pizza.svg │ │ │ │ │ ├── md-planet.svg │ │ │ │ │ ├── md-play-circle.svg │ │ │ │ │ ├── md-play.svg │ │ │ │ │ ├── md-podium.svg │ │ │ │ │ ├── md-power.svg │ │ │ │ │ ├── md-pricetag.svg │ │ │ │ │ ├── md-pricetags.svg │ │ │ │ │ ├── md-print.svg │ │ │ │ │ ├── md-pulse.svg │ │ │ │ │ ├── md-qr-scanner.svg │ │ │ │ │ ├── md-quote.svg │ │ │ │ │ ├── md-radio-button-off.svg │ │ │ │ │ ├── md-radio-button-on.svg │ │ │ │ │ ├── md-radio.svg │ │ │ │ │ ├── md-rainy.svg │ │ │ │ │ ├── md-recording.svg │ │ │ │ │ ├── md-redo.svg │ │ │ │ │ ├── md-refresh-circle.svg │ │ │ │ │ ├── md-refresh.svg │ │ │ │ │ ├── md-remove-circle-outline.svg │ │ │ │ │ ├── md-remove-circle.svg │ │ │ │ │ ├── md-remove.svg │ │ │ │ │ ├── md-reorder.svg │ │ │ │ │ ├── md-repeat.svg │ │ │ │ │ ├── md-resize.svg │ │ │ │ │ ├── md-restaurant.svg │ │ │ │ │ ├── md-return-left.svg │ │ │ │ │ ├── md-return-right.svg │ │ │ │ │ ├── md-reverse-camera.svg │ │ │ │ │ ├── md-rewind.svg │ │ │ │ │ ├── md-ribbon.svg │ │ │ │ │ ├── md-rocket.svg │ │ │ │ │ ├── md-rose.svg │ │ │ │ │ ├── md-sad.svg │ │ │ │ │ ├── md-save.svg │ │ │ │ │ ├── md-school.svg │ │ │ │ │ ├── md-search.svg │ │ │ │ │ ├── md-send.svg │ │ │ │ │ ├── md-settings.svg │ │ │ │ │ ├── md-share-alt.svg │ │ │ │ │ ├── md-share.svg │ │ │ │ │ ├── md-shirt.svg │ │ │ │ │ ├── md-shuffle.svg │ │ │ │ │ ├── md-skip-backward.svg │ │ │ │ │ ├── md-skip-forward.svg │ │ │ │ │ ├── md-snow.svg │ │ │ │ │ ├── md-speedometer.svg │ │ │ │ │ ├── md-square-outline.svg │ │ │ │ │ ├── md-square.svg │ │ │ │ │ ├── md-star-half.svg │ │ │ │ │ ├── md-star-outline.svg │ │ │ │ │ ├── md-star.svg │ │ │ │ │ ├── md-stats.svg │ │ │ │ │ ├── md-stopwatch.svg │ │ │ │ │ ├── md-subway.svg │ │ │ │ │ ├── md-sunny.svg │ │ │ │ │ ├── md-swap.svg │ │ │ │ │ ├── md-switch.svg │ │ │ │ │ ├── md-sync.svg │ │ │ │ │ ├── md-tablet-landscape.svg │ │ │ │ │ ├── md-tablet-portrait.svg │ │ │ │ │ ├── md-tennisball.svg │ │ │ │ │ ├── md-text.svg │ │ │ │ │ ├── md-thermometer.svg │ │ │ │ │ ├── md-thumbs-down.svg │ │ │ │ │ ├── md-thumbs-up.svg │ │ │ │ │ ├── md-thunderstorm.svg │ │ │ │ │ ├── md-time.svg │ │ │ │ │ ├── md-timer.svg │ │ │ │ │ ├── md-today.svg │ │ │ │ │ ├── md-train.svg │ │ │ │ │ ├── md-transgender.svg │ │ │ │ │ ├── md-trash.svg │ │ │ │ │ ├── md-trending-down.svg │ │ │ │ │ ├── md-trending-up.svg │ │ │ │ │ ├── md-trophy.svg │ │ │ │ │ ├── md-tv.svg │ │ │ │ │ ├── md-umbrella.svg │ │ │ │ │ ├── md-undo.svg │ │ │ │ │ ├── md-unlock.svg │ │ │ │ │ ├── md-videocam.svg │ │ │ │ │ ├── md-volume-high.svg │ │ │ │ │ ├── md-volume-low.svg │ │ │ │ │ ├── md-volume-mute.svg │ │ │ │ │ ├── md-volume-off.svg │ │ │ │ │ ├── md-walk.svg │ │ │ │ │ ├── md-wallet.svg │ │ │ │ │ ├── md-warning.svg │ │ │ │ │ ├── md-watch.svg │ │ │ │ │ ├── md-water.svg │ │ │ │ │ ├── md-wifi.svg │ │ │ │ │ ├── md-wine.svg │ │ │ │ │ └── md-woman.svg │ │ │ │ ├── uqr5vpdq.entry.js │ │ │ │ ├── uqr5vpdq.es5.entry.js │ │ │ │ ├── uqr5vpdq.sc.entry.js │ │ │ │ └── uqr5vpdq.sc.es5.entry.js │ │ │ ├── loader │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.es2017.js │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── scss │ │ │ │ ├── ionicons-common.scss │ │ │ │ ├── ionicons-core.scss │ │ │ │ ├── ionicons-icons.scss │ │ │ │ ├── ionicons-variables.scss │ │ │ │ └── ionicons.scss │ │ │ ├── types │ │ │ │ ├── components.d.ts │ │ │ │ ├── icon │ │ │ │ │ ├── icon.d.ts │ │ │ │ │ └── utils.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── stencil.core.d.ts │ │ │ └── web-components.json │ │ ├── mdi │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ │ ├── materialdesignicons.css │ │ │ │ ├── materialdesignicons.css.map │ │ │ │ ├── materialdesignicons.min.css │ │ │ │ └── materialdesignicons.min.css.map │ │ │ ├── fonts │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ ├── materialdesignicons-webfont.svg │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ ├── preview.html │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _extras.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── materialdesignicons.scss │ │ ├── puse-icons-feather │ │ │ ├── README.md │ │ │ ├── feather.css │ │ │ ├── fonts │ │ │ │ ├── feather-webfont.eot │ │ │ │ ├── feather-webfont.svg │ │ │ │ ├── feather-webfont.ttf │ │ │ │ └── feather-webfont.woff │ │ │ └── package.json │ │ ├── simple-line-icon │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── History.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ │ └── simple-line-icons.css │ │ │ ├── fonts │ │ │ │ ├── Simple-Line-Icons.eot │ │ │ │ ├── Simple-Line-Icons.svg │ │ │ │ ├── Simple-Line-Icons.ttf │ │ │ │ ├── Simple-Line-Icons.woff │ │ │ │ └── Simple-Line-Icons.woff2 │ │ │ ├── less │ │ │ │ └── simple-line-icons.less │ │ │ ├── package.json │ │ │ └── scss │ │ │ │ └── simple-line-icons.scss │ │ ├── ti-icons │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SVG │ │ │ │ ├── Italic.svg │ │ │ │ ├── agenda.svg │ │ │ │ ├── alarm-clock.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angle-double-down.svg │ │ │ │ ├── angle-double-left.svg │ │ │ │ ├── angle-double-right.svg │ │ │ │ ├── angle-double-up.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── announcement.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-top-left.svg │ │ │ │ ├── arrow-top-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrow.svg │ │ │ │ ├── arrows-corner.svg │ │ │ │ ├── arrows-horizontal.svg │ │ │ │ ├── arrows-vertical.svg │ │ │ │ ├── back-left.svg │ │ │ │ ├── back-right.svg │ │ │ │ ├── bag.svg │ │ │ │ ├── bar-chart-alt.svg │ │ │ │ ├── bar-chart.svg │ │ │ │ ├── basketball.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── blackboard.svg │ │ │ │ ├── bolt-alt.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark-alt.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── brush-alt.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── car.svg │ │ │ │ ├── check-box.svg │ │ │ │ ├── check.svg │ │ │ │ ├── clip.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── close.svg │ │ │ │ ├── cloud-down.svg │ │ │ │ ├── cloud-up.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-smiley.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── control-backward.svg │ │ │ │ ├── control-eject.svg │ │ │ │ ├── control-forward.svg │ │ │ │ ├── control-pause.svg │ │ │ │ ├── control-play.svg │ │ │ │ ├── control-record.svg │ │ │ │ ├── control-shuffle.svg │ │ │ │ ├── control-skip-backward.svg │ │ │ │ ├── control-skip-forward.svg │ │ │ │ ├── control-stop.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cup.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── dashboard.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── direction-alt.svg │ │ │ │ ├── direction.svg │ │ │ │ ├── download.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox-alt.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── email.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── exchange-vertical.svg │ │ │ │ ├── export.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── face-sad.svg │ │ │ │ ├── face-smile.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── file.svg │ │ │ │ ├── files.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── flag-alt-2.svg │ │ │ │ ├── flag-alt.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flickr-alt.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── fullscreen.svg │ │ │ │ ├── gallery.svg │ │ │ │ ├── game.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── github.svg │ │ │ │ ├── google.svg │ │ │ │ ├── hand-drag.svg │ │ │ │ ├── hand-open.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-stop.svg │ │ │ │ ├── harddrive.svg │ │ │ │ ├── harddrives.svg │ │ │ │ ├── headphone-alt.svg │ │ │ │ ├── headphone.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── help-alt.svg │ │ │ │ ├── help.svg │ │ │ │ ├── home.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hummer.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── image.svg │ │ │ │ ├── import.svg │ │ │ │ ├── infinite.svg │ │ │ │ ├── info-alt.svg │ │ │ │ ├── info.svg │ │ │ │ ├── ink-pen.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── key.svg │ │ │ │ ├── layers-alt.svg │ │ │ │ ├── layers.svg │ │ │ │ ├── layout-accordion-list.svg │ │ │ │ ├── layout-accordion-merged.svg │ │ │ │ ├── layout-accordion-separated.svg │ │ │ │ ├── layout-column2-alt.svg │ │ │ │ ├── layout-column2.svg │ │ │ │ ├── layout-column3-alt.svg │ │ │ │ ├── layout-column3.svg │ │ │ │ ├── layout-column4-alt.svg │ │ │ │ ├── layout-column4.svg │ │ │ │ ├── layout-cta-btn-left.svg │ │ │ │ ├── layout-cta-btn-right.svg │ │ │ │ ├── layout-cta-center.svg │ │ │ │ ├── layout-cta-left.svg │ │ │ │ ├── layout-cta-right.svg │ │ │ │ ├── layout-grid2-alt.svg │ │ │ │ ├── layout-grid2-thumb.svg │ │ │ │ ├── layout-grid2.svg │ │ │ │ ├── layout-grid3-alt.svg │ │ │ │ ├── layout-grid3.svg │ │ │ │ ├── layout-grid4-alt.svg │ │ │ │ ├── layout-grid4.svg │ │ │ │ ├── layout-line-solid.svg │ │ │ │ ├── layout-list-large-image.svg │ │ │ │ ├── layout-list-post.svg │ │ │ │ ├── layout-list-thumb-alt.svg │ │ │ │ ├── layout-list-thumb.svg │ │ │ │ ├── layout-media-center-alt.svg │ │ │ │ ├── layout-media-center.svg │ │ │ │ ├── layout-media-left-alt.svg │ │ │ │ ├── layout-media-left.svg │ │ │ │ ├── layout-media-overlay-alt-2.svg │ │ │ │ ├── layout-media-overlay-alt.svg │ │ │ │ ├── layout-media-overlay.svg │ │ │ │ ├── layout-media-right-alt.svg │ │ │ │ ├── layout-media-right.svg │ │ │ │ ├── layout-menu-full.svg │ │ │ │ ├── layout-menu-separated.svg │ │ │ │ ├── layout-menu-v.svg │ │ │ │ ├── layout-menu.svg │ │ │ │ ├── layout-placeholder.svg │ │ │ │ ├── layout-sidebar-2.svg │ │ │ │ ├── layout-sidebar-left.svg │ │ │ │ ├── layout-sidebar-none.svg │ │ │ │ ├── layout-sidebar-right.svg │ │ │ │ ├── layout-slider-alt.svg │ │ │ │ ├── layout-slider.svg │ │ │ │ ├── layout-tab-min.svg │ │ │ │ ├── layout-tab-v.svg │ │ │ │ ├── layout-tab-window.svg │ │ │ │ ├── layout-tab.svg │ │ │ │ ├── layout-width-default-alt.svg │ │ │ │ ├── layout-width-default.svg │ │ │ │ ├── layout-width-full.svg │ │ │ │ ├── layout.svg │ │ │ │ ├── light-bulb.svg │ │ │ │ ├── line-dashed.svg │ │ │ │ ├── line-dotted.svg │ │ │ │ ├── line-double.svg │ │ │ │ ├── link.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── location-pin.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── loop.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── map-alt.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker-alt.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── medall-alt.svg │ │ │ │ ├── medall.svg │ │ │ │ ├── menu-alt.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── microphone-alt.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microsoft-alt.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money.svg │ │ │ │ ├── more-alt.svg │ │ │ │ ├── more.svg │ │ │ │ ├── mouse-alt.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── music-alt.svg │ │ │ │ ├── music.svg │ │ │ │ ├── na.svg │ │ │ │ ├── new-window.svg │ │ │ │ ├── notepad.svg │ │ │ │ ├── package.svg │ │ │ │ ├── paint-bucket.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── panel.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── pencil-alt.svg │ │ │ │ ├── pencil-alt2.svg │ │ │ │ ├── pencil.svg │ │ │ │ ├── pie-chart.svg │ │ │ │ ├── pin-alt.svg │ │ │ │ ├── pin.svg │ │ │ │ ├── pin2.svg │ │ │ │ ├── pinterest-alt.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── printer.svg │ │ │ │ ├── pulse.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── reload.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── rss-alt.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruler-alt-2.svg │ │ │ │ ├── ruler-alt.svg │ │ │ │ ├── ruler-pencil.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── save-alt.svg │ │ │ │ ├── save.svg │ │ │ │ ├── search.svg │ │ │ │ ├── server.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── share-alt.svg │ │ │ │ ├── share.svg │ │ │ │ ├── sharethis-alt.svg │ │ │ │ ├── sharethis.svg │ │ │ │ ├── shield.svg │ │ │ │ ├── shift-left-alt.svg │ │ │ │ ├── shift-left.svg │ │ │ │ ├── shift-right-alt.svg │ │ │ │ ├── shift-right.svg │ │ │ │ ├── shine.svg │ │ │ │ ├── shopping-cart-full.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shortcode.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slice.svg │ │ │ │ ├── smallcap.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── split-h.svg │ │ │ │ ├── split-v-alt.svg │ │ │ │ ├── split-v.svg │ │ │ │ ├── spray.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── star.svg │ │ │ │ ├── stats-down.svg │ │ │ │ ├── stats-up.svg │ │ │ │ ├── support.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── target.svg │ │ │ │ ├── text.svg │ │ │ │ ├── themify-favicon-alt.svg │ │ │ │ ├── themify-favicon.svg │ │ │ │ ├── themify-logo.svg │ │ │ │ ├── thought.svg │ │ │ │ ├── thumb-down.svg │ │ │ │ ├── thumb-up.svg │ │ │ │ ├── ticket.svg │ │ │ │ ├── time.svg │ │ │ │ ├── timer.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tumblr-alt.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitter-alt.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── unlink.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── uppercase.svg │ │ │ │ ├── user.svg │ │ │ │ ├── vector.svg │ │ │ │ ├── video-camera.svg │ │ │ │ ├── video-clapper.svg │ │ │ │ ├── view-grid.svg │ │ │ │ ├── view-list-alt.svg │ │ │ │ ├── view-list.svg │ │ │ │ ├── vimeo-alt.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── volume.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── wand.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── widget-alt.svg │ │ │ │ ├── widget.svg │ │ │ │ ├── widgetized.svg │ │ │ │ ├── window.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── world.svg │ │ │ │ ├── write.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── youtube.svg │ │ │ │ ├── zip.svg │ │ │ │ ├── zoom-in.svg │ │ │ │ └── zoom-out.svg │ │ │ ├── Themify IconFonts 5-23-2014.json │ │ │ ├── bower.json │ │ │ ├── css │ │ │ │ └── themify-icons.css │ │ │ ├── demo-files │ │ │ │ └── demo.css │ │ │ ├── fonts │ │ │ │ ├── themify.eot │ │ │ │ ├── themify.svg │ │ │ │ ├── themify.ttf │ │ │ │ └── themify.woff │ │ │ ├── ie7 │ │ │ │ ├── ie7.css │ │ │ │ └── ie7.js │ │ │ ├── index.html │ │ │ └── package.json │ │ └── typicons │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── font │ │ │ ├── LICENCE.md │ │ │ ├── typicons.css │ │ │ ├── typicons.eot │ │ │ ├── typicons.svg │ │ │ ├── typicons.ttf │ │ │ └── typicons.woff │ │ │ └── svg │ │ │ ├── adjust-brightness.svg │ │ │ ├── adjust-contrast.svg │ │ │ ├── anchor-outline.svg │ │ │ ├── anchor.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-back-outline.svg │ │ │ ├── arrow-back.svg │ │ │ ├── arrow-down-outline.svg │ │ │ ├── arrow-down-thick.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-forward-outline.svg │ │ │ ├── arrow-forward.svg │ │ │ ├── arrow-left-outline.svg │ │ │ ├── arrow-left-thick.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-loop-outline.svg │ │ │ ├── arrow-loop.svg │ │ │ ├── arrow-maximise-outline.svg │ │ │ ├── arrow-maximise.svg │ │ │ ├── arrow-minimise-outline.svg │ │ │ ├── arrow-minimise.svg │ │ │ ├── arrow-move-outline.svg │ │ │ ├── arrow-move.svg │ │ │ ├── arrow-repeat-outline.svg │ │ │ ├── arrow-repeat.svg │ │ │ ├── arrow-right-outline.svg │ │ │ ├── arrow-right-thick.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-shuffle.svg │ │ │ ├── arrow-sorted-down.svg │ │ │ ├── arrow-sorted-up.svg │ │ │ ├── arrow-sync-outline.svg │ │ │ ├── arrow-sync.svg │ │ │ ├── arrow-unsorted.svg │ │ │ ├── arrow-up-outline.svg │ │ │ ├── arrow-up-thick.svg │ │ │ ├── arrow-up.svg │ │ │ ├── at.svg │ │ │ ├── attachment-outline.svg │ │ │ ├── attachment.svg │ │ │ ├── backspace-outline.svg │ │ │ ├── backspace.svg │ │ │ ├── battery-charge.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-high.svg │ │ │ ├── battery-low.svg │ │ │ ├── battery-mid.svg │ │ │ ├── beaker.svg │ │ │ ├── beer.svg │ │ │ ├── bell.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── briefcase.svg │ │ │ ├── brush.svg │ │ │ ├── business-card.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-outline.svg │ │ │ ├── calendar.svg │ │ │ ├── camera-outline.svg │ │ │ ├── camera.svg │ │ │ ├── cancel-outline.svg │ │ │ ├── cancel.svg │ │ │ ├── chart-area-outline.svg │ │ │ ├── chart-area.svg │ │ │ ├── chart-bar-outline.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-line-outline.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-pie-outline.svg │ │ │ ├── chart-pie.svg │ │ │ ├── chevron-left-outline.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right-outline.svg │ │ │ ├── chevron-right.svg │ │ │ ├── clipboard.svg │ │ │ ├── cloud-storage-outline.svg │ │ │ ├── cloud-storage.svg │ │ │ ├── code-outline.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── cog-outline.svg │ │ │ ├── cog.svg │ │ │ ├── compass.svg │ │ │ ├── contacts.svg │ │ │ ├── credit-card.svg │ │ │ ├── css3.svg │ │ │ ├── database.svg │ │ │ ├── delete-outline.svg │ │ │ ├── delete.svg │ │ │ ├── device-desktop.svg │ │ │ ├── device-laptop.svg │ │ │ ├── device-phone.svg │ │ │ ├── device-tablet.svg │ │ │ ├── directions.svg │ │ │ ├── divide-outline.svg │ │ │ ├── divide.svg │ │ │ ├── document-add.svg │ │ │ ├── document-delete.svg │ │ │ ├── document-text.svg │ │ │ ├── document.svg │ │ │ ├── download-outline.svg │ │ │ ├── download.svg │ │ │ ├── dropbox.svg │ │ │ ├── edit.svg │ │ │ ├── eject-outline.svg │ │ │ ├── eject.svg │ │ │ ├── equals-outline.svg │ │ │ ├── equals.svg │ │ │ ├── export-outline.svg │ │ │ ├── export.svg │ │ │ ├── eye-outline.svg │ │ │ ├── eye.svg │ │ │ ├── feather.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── flag-outline.svg │ │ │ ├── flag.svg │ │ │ ├── flash-outline.svg │ │ │ ├── flash.svg │ │ │ ├── flow-children.svg │ │ │ ├── flow-merge.svg │ │ │ ├── flow-parallel.svg │ │ │ ├── flow-switch.svg │ │ │ ├── folder-add.svg │ │ │ ├── folder-delete.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── gift.svg │ │ │ ├── globe-outline.svg │ │ │ ├── globe.svg │ │ │ ├── group-outline.svg │ │ │ ├── group.svg │ │ │ ├── headphones.svg │ │ │ ├── heart-full-outline.svg │ │ │ ├── heart-half-outline.svg │ │ │ ├── heart-outline.svg │ │ │ ├── heart.svg │ │ │ ├── home-outline.svg │ │ │ ├── home.svg │ │ │ ├── html5.svg │ │ │ ├── image-outline.svg │ │ │ ├── image.svg │ │ │ ├── infinity-outline.svg │ │ │ ├── infinity.svg │ │ │ ├── info-large-outline.svg │ │ │ ├── info-large.svg │ │ │ ├── info-outline.svg │ │ │ ├── info.svg │ │ │ ├── input-checked-outline.svg │ │ │ ├── input-checked.svg │ │ │ ├── key-outline.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── leaf.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link-outline.svg │ │ │ ├── link.svg │ │ │ ├── location-arrow-outline.svg │ │ │ ├── location-arrow.svg │ │ │ ├── location-outline.svg │ │ │ ├── location.svg │ │ │ ├── lock-closed-outline.svg │ │ │ ├── lock-closed.svg │ │ │ ├── lock-open-outline.svg │ │ │ ├── lock-open.svg │ │ │ ├── mail.svg │ │ │ ├── map.svg │ │ │ ├── media-eject-outline.svg │ │ │ ├── media-eject.svg │ │ │ ├── media-fast-forward-outline.svg │ │ │ ├── media-fast-forward.svg │ │ │ ├── media-pause-outline.svg │ │ │ ├── media-pause.svg │ │ │ ├── media-play-outline.svg │ │ │ ├── media-play-reverse-outline.svg │ │ │ ├── media-play-reverse.svg │ │ │ ├── media-play.svg │ │ │ ├── media-record-outline.svg │ │ │ ├── media-record.svg │ │ │ ├── media-rewind-outline.svg │ │ │ ├── media-rewind.svg │ │ │ ├── media-stop-outline.svg │ │ │ ├── media-stop.svg │ │ │ ├── message-typing.svg │ │ │ ├── message.svg │ │ │ ├── messages.svg │ │ │ ├── microphone-outline.svg │ │ │ ├── microphone.svg │ │ │ ├── minus-outline.svg │ │ │ ├── minus.svg │ │ │ ├── mortar-board.svg │ │ │ ├── news.svg │ │ │ ├── notes-outline.svg │ │ │ ├── notes.svg │ │ │ ├── pen.svg │ │ │ ├── pencil.svg │ │ │ ├── phone-outline.svg │ │ │ ├── phone.svg │ │ │ ├── pi-outline.svg │ │ │ ├── pi.svg │ │ │ ├── pin-outline.svg │ │ │ ├── pin.svg │ │ │ ├── pipette.svg │ │ │ ├── plane-outline.svg │ │ │ ├── plane.svg │ │ │ ├── plug.svg │ │ │ ├── plus-outline.svg │ │ │ ├── plus.svg │ │ │ ├── point-of-interest-outline.svg │ │ │ ├── point-of-interest.svg │ │ │ ├── power-outline.svg │ │ │ ├── power.svg │ │ │ ├── printer.svg │ │ │ ├── puzzle-outline.svg │ │ │ ├── puzzle.svg │ │ │ ├── radar-outline.svg │ │ │ ├── radar.svg │ │ │ ├── refresh-outline.svg │ │ │ ├── refresh.svg │ │ │ ├── rss-outline.svg │ │ │ ├── rss.svg │ │ │ ├── scissors-outline.svg │ │ │ ├── scissors.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── social-at-circular.svg │ │ │ ├── social-dribbble-circular.svg │ │ │ ├── social-dribbble.svg │ │ │ ├── social-facebook-circular.svg │ │ │ ├── social-facebook.svg │ │ │ ├── social-flickr-circular.svg │ │ │ ├── social-flickr.svg │ │ │ ├── social-github-circular.svg │ │ │ ├── social-github.svg │ │ │ ├── social-google-plus-circular.svg │ │ │ ├── social-google-plus.svg │ │ │ ├── social-instagram-circular.svg │ │ │ ├── social-instagram.svg │ │ │ ├── social-last-fm-circular.svg │ │ │ ├── social-last-fm.svg │ │ │ ├── social-linkedin-circular.svg │ │ │ ├── social-linkedin.svg │ │ │ ├── social-pinterest-circular.svg │ │ │ ├── social-pinterest.svg │ │ │ ├── social-skype-outline.svg │ │ │ ├── social-skype.svg │ │ │ ├── social-tumbler-circular.svg │ │ │ ├── social-tumbler.svg │ │ │ ├── social-twitter-circular.svg │ │ │ ├── social-twitter.svg │ │ │ ├── social-vimeo-circular.svg │ │ │ ├── social-vimeo.svg │ │ │ ├── social-youtube-circular.svg │ │ │ ├── social-youtube.svg │ │ │ ├── sort-alphabetically-outline.svg │ │ │ ├── sort-alphabetically.svg │ │ │ ├── sort-numerically-outline.svg │ │ │ ├── sort-numerically.svg │ │ │ ├── spanner-outline.svg │ │ │ ├── spanner.svg │ │ │ ├── spiral.svg │ │ │ ├── star-full-outline.svg │ │ │ ├── star-half-outline.svg │ │ │ ├── star-half.svg │ │ │ ├── star-outline.svg │ │ │ ├── star.svg │ │ │ ├── starburst-outline.svg │ │ │ ├── starburst.svg │ │ │ ├── stopwatch.svg │ │ │ ├── support.svg │ │ │ ├── tabs-outline.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── th-large-outline.svg │ │ │ ├── th-large.svg │ │ │ ├── th-list-outline.svg │ │ │ ├── th-list.svg │ │ │ ├── th-menu-outline.svg │ │ │ ├── th-menu.svg │ │ │ ├── th-small-outline.svg │ │ │ ├── th-small.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-ok.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── tick-outline.svg │ │ │ ├── tick.svg │ │ │ ├── ticket.svg │ │ │ ├── time.svg │ │ │ ├── times-outline.svg │ │ │ ├── times.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── upload-outline.svg │ │ │ ├── upload.svg │ │ │ ├── user-add-outline.svg │ │ │ ├── user-add.svg │ │ │ ├── user-delete-outline.svg │ │ │ ├── user-delete.svg │ │ │ ├── user-outline.svg │ │ │ ├── user.svg │ │ │ ├── vendor-android.svg │ │ │ ├── vendor-apple.svg │ │ │ ├── vendor-microsoft.svg │ │ │ ├── video-outline.svg │ │ │ ├── video.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-up.svg │ │ │ ├── volume.svg │ │ │ ├── warning-outline.svg │ │ │ ├── warning.svg │ │ │ ├── watch.svg │ │ │ ├── waves-outline.svg │ │ │ ├── waves.svg │ │ │ ├── weather-cloudy.svg │ │ │ ├── weather-downpour.svg │ │ │ ├── weather-night.svg │ │ │ ├── weather-partly-sunny.svg │ │ │ ├── weather-shower.svg │ │ │ ├── weather-snow.svg │ │ │ ├── weather-stormy.svg │ │ │ ├── weather-sunny.svg │ │ │ ├── weather-windy-cloudy.svg │ │ │ ├── weather-windy.svg │ │ │ ├── wi-fi-outline.svg │ │ │ ├── wi-fi.svg │ │ │ ├── wine.svg │ │ │ ├── world-outline.svg │ │ │ ├── world.svg │ │ │ ├── zoom-in-outline.svg │ │ │ ├── zoom-in.svg │ │ │ ├── zoom-out-outline.svg │ │ │ ├── zoom-out.svg │ │ │ ├── zoom-outline.svg │ │ │ └── zoom.svg │ │ ├── images │ │ ├── alpha.png │ │ ├── hue.png │ │ ├── saturation.png │ │ └── transparent.png │ │ ├── img │ │ ├── sprite-skin-flat.png │ │ ├── sprite-skin-modern.png │ │ ├── sprite-skin-nice.png │ │ └── sprite-skin-simple.png │ │ ├── jquery │ │ └── easing │ │ │ └── jquery.easing.min.js │ │ ├── js │ │ ├── vendor.bundle.addons.js │ │ └── vendor.bundle.base.js │ │ ├── jstree │ │ ├── jstree.js │ │ ├── jstree.min.js │ │ └── themes │ │ │ ├── default-dark │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ │ │ └── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ │ ├── lightgallery │ │ ├── css │ │ │ ├── lg-fb-comment-box.css │ │ │ ├── lg-fb-comment-box.min.css │ │ │ ├── lg-transitions.css │ │ │ ├── lg-transitions.min.css │ │ │ ├── lightgallery.css │ │ │ └── lightgallery.min.css │ │ ├── fonts │ │ │ ├── lg.eot │ │ │ ├── lg.svg │ │ │ ├── lg.ttf │ │ │ └── lg.woff │ │ ├── img │ │ │ ├── loading.gif │ │ │ ├── video-play.png │ │ │ ├── vimeo-play.png │ │ │ └── youtube-play.png │ │ └── js │ │ │ ├── lightgallery-all.js │ │ │ ├── lightgallery-all.min.js │ │ │ ├── lightgallery.js │ │ │ └── lightgallery.min.js │ │ ├── summernote │ │ └── dist │ │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ │ │ ├── lang │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-ar-AR.min.js │ │ │ ├── summernote-bg-BG.js │ │ │ ├── summernote-bg-BG.min.js │ │ │ ├── summernote-ca-ES.js │ │ │ ├── summernote-ca-ES.min.js │ │ │ ├── summernote-cs-CZ.js │ │ │ ├── summernote-cs-CZ.min.js │ │ │ ├── summernote-da-DK.js │ │ │ ├── summernote-da-DK.min.js │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-de-DE.min.js │ │ │ ├── summernote-el-GR.js │ │ │ ├── summernote-el-GR.min.js │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-ES.min.js │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-es-EU.min.js │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fa-IR.min.js │ │ │ ├── summernote-fi-FI.js │ │ │ ├── summernote-fi-FI.min.js │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-fr-FR.min.js │ │ │ ├── summernote-gl-ES.js │ │ │ ├── summernote-gl-ES.min.js │ │ │ ├── summernote-he-IL.js │ │ │ ├── summernote-he-IL.min.js │ │ │ ├── summernote-hr-HR.js │ │ │ ├── summernote-hr-HR.min.js │ │ │ ├── summernote-hu-HU.js │ │ │ ├── summernote-hu-HU.min.js │ │ │ ├── summernote-id-ID.js │ │ │ ├── summernote-id-ID.min.js │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-it-IT.min.js │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-ja-JP.min.js │ │ │ ├── summernote-ko-KR.js │ │ │ ├── summernote-ko-KR.min.js │ │ │ ├── summernote-lt-LT.js │ │ │ ├── summernote-lt-LT.min.js │ │ │ ├── summernote-lt-LV.js │ │ │ ├── summernote-lt-LV.min.js │ │ │ ├── summernote-mn-MN.js │ │ │ ├── summernote-mn-MN.min.js │ │ │ ├── summernote-nb-NO.js │ │ │ ├── summernote-nb-NO.min.js │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-nl-NL.min.js │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pl-PL.min.js │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-BR.min.js │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-pt-PT.min.js │ │ │ ├── summernote-ro-RO.js │ │ │ ├── summernote-ro-RO.min.js │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-ru-RU.min.js │ │ │ ├── summernote-sk-SK.js │ │ │ ├── summernote-sk-SK.min.js │ │ │ ├── summernote-sl-SI.js │ │ │ ├── summernote-sl-SI.min.js │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ ├── summernote-sr-RS.js │ │ │ ├── summernote-sr-RS.min.js │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-sv-SE.min.js │ │ │ ├── summernote-ta-IN.js │ │ │ ├── summernote-ta-IN.min.js │ │ │ ├── summernote-th-TH.js │ │ │ ├── summernote-th-TH.min.js │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-tr-TR.min.js │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-uk-UA.min.js │ │ │ ├── summernote-vi-VN.js │ │ │ ├── summernote-vi-VN.min.js │ │ │ ├── summernote-zh-CN.js │ │ │ ├── summernote-zh-CN.min.js │ │ │ ├── summernote-zh-TW.js │ │ │ └── summernote-zh-TW.min.js │ │ │ ├── summernote-0.8.8-dist.zip │ │ │ ├── summernote-bs4.css │ │ │ ├── summernote-bs4.js │ │ │ ├── summernote-bs4.min.js │ │ │ ├── summernote-lite.css │ │ │ ├── summernote-lite.js │ │ │ ├── summernote.css │ │ │ ├── summernote.js │ │ │ └── summernote.min.js │ │ └── tinymce │ │ ├── bower.json │ │ ├── changelog.txt │ │ ├── composer.json │ │ ├── jquery.tinymce.js │ │ ├── jquery.tinymce.min.js │ │ ├── license.txt │ │ ├── package.json │ │ ├── plugins │ │ ├── advlist │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── code │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ ├── css │ │ │ │ └── prism.css │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── colorpicker │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── contextmenu │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── help │ │ │ ├── img │ │ │ │ └── logo.png │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── image │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── imagetools │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── link │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── print │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── save │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── table │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── template │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textpattern │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── toc │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ └── visualblocks.css │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── readme.md │ │ ├── skins │ │ └── lightgray │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── fonts │ │ │ ├── tinymce-small.eot │ │ │ ├── tinymce-small.svg │ │ │ ├── tinymce-small.ttf │ │ │ ├── tinymce-small.woff │ │ │ ├── tinymce.eot │ │ │ ├── tinymce.svg │ │ │ ├── tinymce.ttf │ │ │ └── tinymce.woff │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── loader.gif │ │ │ ├── object.gif │ │ │ └── trans.gif │ │ │ └── skin.min.css │ │ ├── themes │ │ ├── inlite │ │ │ ├── index.js │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ └── modern │ │ │ ├── index.js │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ ├── tinymce.jquery.js │ │ ├── tinymce.jquery.min.js │ │ ├── tinymce.js │ │ └── tinymce.min.js ├── css │ ├── dashboard │ │ └── style.css │ ├── login │ │ └── style.css │ ├── main │ │ └── style.css │ ├── manage_account │ │ ├── access │ │ │ └── style.css │ │ ├── account │ │ │ └── style.css │ │ └── new_account │ │ │ └── style.css │ ├── manage_product │ │ ├── new_product │ │ │ └── style.css │ │ ├── product │ │ │ └── style.css │ │ └── supply_product │ │ │ ├── new_supply │ │ │ └── style.css │ │ │ ├── statistics_supply │ │ │ └── style.css │ │ │ └── supply │ │ │ └── style.css │ ├── profile │ │ └── style.css │ ├── report │ │ ├── detail_report_worker │ │ │ └── style.css │ │ ├── report_transaction │ │ │ └── style.css │ │ └── report_worker │ │ │ └── style.css │ └── transaction │ │ └── style.css ├── excel_file │ ├── 1031983364Data Barang.xlsx │ ├── 1081321129Data Barang.xlsx │ ├── 1081793665Data Barang.xlsx │ ├── 1118304688Data Barang.xlsx │ ├── 1139608548Data Suplai.xlsx │ ├── 1197979621Data Suplai2.xlsx │ ├── 1206189797Data Barang.xlsx │ ├── 1218695432Data Barang.xlsx │ ├── 1252539867Data Barang.xlsx │ ├── 1258094887Data Barang.xlsx │ ├── 1260541022Data Suplai.xlsx │ ├── 1311100147Data Barang.xlsx │ ├── 1319018044Data Barang.xlsx │ ├── 1334084504Data Barang.xlsx │ ├── 1377216313Data Suplai.xlsx │ ├── 1384324719Data Barang.xlsx │ ├── 1388754821Data Barang.xlsx │ ├── 1391673708Data Suplai3.xlsx │ ├── 1400094571Data Suplai2.xlsx │ ├── 1401150432Data Barang.xlsx │ ├── 1415222683Data Barang.xlsx │ ├── 1423653072Data Barang.xlsx │ ├── 1521932333Data Suplai2.xlsx │ ├── 160659052Data Suplai.xlsx │ ├── 1615614243Data Barang.xlsx │ ├── 177189793Data Barang.xlsx │ ├── 1786846696Data Suplai.xlsx │ ├── 1871597186Data Suplai3.xlsx │ ├── 1887957966Data Barang.xlsx │ ├── 1963908302Data Barang.xlsx │ ├── 1964327533Data Suplai.xlsx │ ├── 1998145411Data Barang.xlsx │ ├── 2010951396Data Barang.xlsx │ ├── 2076089281Data Suplai2.xlsx │ ├── 2081365639Data Barang.xlsx │ ├── 2106272903Data Barang.xlsx │ ├── 2120683734Data Barang.xlsx │ ├── 224429906Data Barang.xlsx │ ├── 296711215Data Suplai.xlsx │ ├── 318556001Data Barang.xlsx │ ├── 413492575Data Barang.xlsx │ ├── 433635469Data Barang.xlsx │ ├── 47800019Data Barang.xlsx │ ├── 493268662Data Suplai.xlsx │ ├── 497014013Data Suplai.xlsx │ ├── 504016845Data Suplai2.xlsx │ ├── 546334974Data Suplai3.xlsx │ ├── 572545430Data Suplai3.xlsx │ ├── 626993102Data Suplai.xlsx │ ├── 676595027Data Barang.xlsx │ ├── 695280987Data Barang.xlsx │ ├── 702752995Data Suplai.xlsx │ ├── 798113950Data Suplai2.xlsx │ ├── 818538135Data Suplai.xlsx │ ├── 843208148Data Barang.xlsx │ ├── 848645530Data Suplai.xlsx │ ├── 861130308Data Suplai.xlsx │ ├── 868182252Data Barang.xlsx │ ├── 868322067Data Barang.xlsx │ ├── 868682462Data Barang.xlsx │ └── 942905475Data Suplai3.xlsx ├── favicon.ico ├── gif │ ├── success.gif │ ├── success2.gif │ ├── success3.gif │ └── success4.gif ├── icons │ ├── favicon.png │ ├── logo-mini.png │ ├── logo-mini2.png │ ├── logo.png │ └── logo2.png ├── images │ ├── gif │ │ ├── scan.gif │ │ └── scan2.gif │ ├── illustrations │ │ ├── undraw_uploading_go67.svg │ │ └── undraw_visual_data_b1wx.svg │ └── instructions │ │ ├── ImportProduct.jpg │ │ ├── ImportProduct2.jpg │ │ └── ImportSupply.jpg ├── index.php ├── js │ ├── dashboard │ │ └── script.js │ ├── login │ │ └── script.js │ ├── manage_account │ │ ├── access │ │ │ └── script.js │ │ ├── account │ │ │ └── script.js │ │ └── new_account │ │ │ └── script.js │ ├── manage_product │ │ ├── new_product │ │ │ └── script.js │ │ ├── product │ │ │ └── script.js │ │ └── supply_product │ │ │ ├── new_supply │ │ │ └── script.js │ │ │ ├── statistics_supply │ │ │ └── script.js │ │ │ └── supply │ │ │ └── script.js │ ├── profile │ │ └── script.js │ ├── report │ │ ├── detail_report_worker │ │ │ └── script.js │ │ ├── report_transaction │ │ │ └── script.js │ │ └── report_worker │ │ │ └── script.js │ ├── templates │ │ └── script.js │ └── transaction │ │ └── script.js ├── package │ ├── barcode │ │ ├── __MACOSX │ │ │ ├── ._barcode.js │ │ │ ├── ._barcode.wav │ │ │ ├── ._index.html │ │ │ ├── ._jquery.js │ │ │ └── ._style.css │ │ ├── barcode.js │ │ ├── barcode.wav │ │ ├── barcode.zip │ │ ├── index.html │ │ ├── jquery.js │ │ └── style.css │ └── barcode2 │ │ └── quaggaJS-master │ │ ├── .babelrc │ │ ├── .eslintrc │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ ├── end.frag │ │ └── start.frag │ │ ├── dist │ │ ├── quagga.js │ │ └── quagga.min.js │ │ ├── doc │ │ ├── img │ │ │ ├── bb-binary.png │ │ │ ├── bb-rotated.png │ │ │ ├── binary.png │ │ │ ├── component-labeling-line.png │ │ │ ├── component-labeling-text.png │ │ │ ├── component-labeling.png │ │ │ ├── connected-patch-labels.png │ │ │ ├── mobile-detected.png │ │ │ ├── mobile-located.png │ │ │ ├── patches_found.png │ │ │ ├── quaggaJS-code128.png │ │ │ ├── remaining-patch-labels.png │ │ │ ├── skeleton.png │ │ │ └── teaser.png │ │ ├── profiles │ │ │ └── skel_asm.json │ │ └── readme.md │ │ ├── env │ │ ├── development.js │ │ ├── node.js │ │ └── production.js │ │ ├── example │ │ ├── camera_example.html │ │ ├── config.rb │ │ ├── css │ │ │ ├── colors.css │ │ │ ├── fonts.css │ │ │ └── styles.css │ │ ├── file_input.html │ │ ├── file_input.js │ │ ├── live_w_locator.html │ │ ├── live_w_locator.js │ │ ├── node-test-with-buffer.js │ │ ├── node-test.js │ │ ├── static_images.html │ │ ├── static_images.js │ │ └── vendor │ │ │ └── jquery-1.9.0.min.js │ │ ├── karma-integration.conf.js │ │ ├── karma.conf.js │ │ ├── lib │ │ ├── frame_grabber.js │ │ ├── input_stream.js │ │ └── quagga.js │ │ ├── package.json │ │ ├── plugins │ │ └── umd.js │ │ ├── server.pem │ │ ├── simple-https-server.py │ │ ├── src │ │ ├── analytics │ │ │ └── result_collector.js │ │ ├── common │ │ │ ├── array_helper.js │ │ │ ├── cluster.js │ │ │ ├── cv_utils.js │ │ │ ├── events.js │ │ │ ├── image_debug.js │ │ │ ├── image_wrapper.js │ │ │ ├── mediaDevices.js │ │ │ ├── subImage.js │ │ │ └── typedefs.js │ │ ├── config │ │ │ ├── config.dev.js │ │ │ ├── config.js │ │ │ ├── config.node.js │ │ │ └── config.prod.js │ │ ├── decoder │ │ │ ├── barcode_decoder.js │ │ │ └── bresenham.js │ │ ├── input │ │ │ ├── camera_access.js │ │ │ ├── exif_helper.js │ │ │ ├── frame_grabber.js │ │ │ ├── image_loader.js │ │ │ └── input_stream.js │ │ ├── locator │ │ │ ├── barcode_locator.js │ │ │ ├── rasterizer.js │ │ │ ├── skeletonizer.js │ │ │ └── tracer.js │ │ ├── quagga.js │ │ └── reader │ │ │ ├── 2of5_reader.js │ │ │ ├── barcode_reader.js │ │ │ ├── codabar_reader.js │ │ │ ├── code_128_reader.js │ │ │ ├── code_39_reader.js │ │ │ ├── code_39_vin_reader.js │ │ │ ├── code_93_reader.js │ │ │ ├── ean_2_reader.js │ │ │ ├── ean_5_reader.js │ │ │ ├── ean_8_reader.js │ │ │ ├── ean_reader.js │ │ │ ├── i2of5_reader.js │ │ │ ├── upc_e_reader.js │ │ │ └── upc_reader.js │ │ ├── tasks │ │ └── uglyasm.js │ │ ├── test │ │ ├── fixtures │ │ │ ├── 2of5 │ │ │ │ ├── image-001.jpg │ │ │ │ ├── image-002.jpg │ │ │ │ ├── image-003.jpg │ │ │ │ ├── image-004.jpg │ │ │ │ ├── image-005.jpg │ │ │ │ ├── image-006.jpg │ │ │ │ ├── image-007.jpg │ │ │ │ ├── image-008.jpg │ │ │ │ ├── image-009.jpg │ │ │ │ ├── image-010.jpg │ │ │ │ ├── image-012.jpg │ │ │ │ ├── image-015.jpg │ │ │ │ ├── image-016.jpg │ │ │ │ └── image-017.jpg │ │ │ ├── codabar │ │ │ │ ├── image-001.jpg │ │ │ │ ├── image-002.jpg │ │ │ │ ├── image-003.jpg │ │ │ │ ├── image-004.jpg │ │ │ │ ├── image-005.jpg │ │ │ │ ├── image-006.jpg │ │ │ │ ├── image-007.jpg │ │ │ │ ├── image-008.jpg │ │ │ │ ├── image-009.jpg │ │ │ │ └── image-010.jpg │ │ │ ├── code_128 │ │ │ │ ├── image-001.jpg │ │ │ │ ├── image-002.jpg │ │ │ │ ├── image-003.jpg │ │ │ │ ├── image-004.jpg │ │ │ │ ├── image-005.jpg │ │ │ │ ├── image-006.jpg │ │ │ │ ├── image-007.jpg │ │ │ │ ├── image-008.jpg │ │ │ │ ├── image-009.jpg │ │ │ │ └── image-010.jpg │ │ │ ├── code_39 │ │ │ │ ├── image-001.jpg │ │ │ │ ├── image-002.jpg │ │ │ │ ├── image-003.jpg │ │ │ │ ├── image-004.jpg │ │ │ │ ├── image-005.jpg │ │ │ │ ├── image-006.jpg │ │ │ │ ├── image-007.jpg │ │ │ │ ├── image-008.jpg │ │ │ │ ├── image-009.jpg │ │ │ │ └── image-010.jpg │ │ │ ├── code_39_vin │ │ │ │ ├── image-001.jpg │ │ │ │ ├── image-002.jpg │ │ │ │ ├── image-003.jpg │ │ │ │ ├── image-004.jpg │ │ │ │ ├── image-005.jpg │ │ │ │ ├── image-006.jpg │ │ │ │ ├── image-007.jpg │ │ │ │ ├── image-008.jpg │ │ │ │ ├── image-009.jpg │ │ │ │ └── image-010.jpg │ │ │ ├── code_93 │ │ │ │ ├── image-001.jpg │ │ │ │ ├── image-002.jpg │ │ │ │ ├── image-003.jpg │ │ │ │ ├── image-004.jpg │ │ │ │ ├── image-005.jpg │ │ │ │ ├── image-006.jpg │ │ │ │ ├── image-007.jpg │ │ │ │ ├── image-008.jpg │ │ │ │ ├── image-009.jpg │ │ │ │ └── image-010.jpg │ │ │ ├── ean │ │ │ │ ├── image-001.jpg │ │ │ │ ├── image-002.jpg │ │ │ │ ├── image-003.jpg │ │ │ │ ├── image-004.jpg │ │ │ │ ├── image-005.jpg │ │ │ │ ├── image-006.jpg │ │ │ │ ├── image-007.jpg │ │ │ │ ├── image-008.jpg │ │ │ │ ├── image-009.jpg │ │ │ │ └── image-010.jpg │ │ │ ├── ean_8 │ │ │ │ ├── image-001.jpg │ │ │ │ ├── image-002.jpg │ │ │ │ ├── image-003.jpg │ │ │ │ ├── image-004.jpg │ │ │ │ ├── image-005.jpg │ │ │ │ ├── image-006.jpg │ │ │ │ ├── image-007.jpg │ │ │ │ ├── image-008.jpg │ │ │ │ ├── image-009.jpg │ │ │ │ └── image-010.jpg │ │ │ ├── ean_extended │ │ │ │ ├── image-001.jpg │ │ │ │ ├── image-002.jpg │ │ │ │ ├── image-003.jpg │ │ │ │ ├── image-004.jpg │ │ │ │ ├── image-005.jpg │ │ │ │ ├── image-006.jpg │ │ │ │ ├── image-007.jpg │ │ │ │ ├── image-008.jpg │ │ │ │ ├── image-009.jpg │ │ │ │ └── image-010.jpg │ │ │ ├── i2of5 │ │ │ │ ├── image-001.jpg │ │ │ │ ├── image-002.jpg │ │ │ │ ├── image-003.jpg │ │ │ │ ├── image-004.jpg │ │ │ │ ├── image-005.jpg │ │ │ │ ├── image-011.jpg │ │ │ │ ├── image-012.jpg │ │ │ │ └── image-013.jpg │ │ │ ├── upc │ │ │ │ ├── image-001.jpg │ │ │ │ ├── image-002.jpg │ │ │ │ ├── image-003.jpg │ │ │ │ ├── image-004.jpg │ │ │ │ ├── image-005.jpg │ │ │ │ ├── image-006.jpg │ │ │ │ ├── image-007.jpg │ │ │ │ ├── image-008.jpg │ │ │ │ ├── image-009.jpg │ │ │ │ └── image-010.jpg │ │ │ └── upc_e │ │ │ │ ├── image-001.jpg │ │ │ │ ├── image-002.jpg │ │ │ │ ├── image-003.jpg │ │ │ │ ├── image-004.jpg │ │ │ │ ├── image-005.jpg │ │ │ │ ├── image-006.jpg │ │ │ │ ├── image-007.jpg │ │ │ │ ├── image-008.jpg │ │ │ │ ├── image-009.jpg │ │ │ │ └── image-010.jpg │ │ ├── integration │ │ │ └── integration.spec.js │ │ ├── mocks │ │ │ └── mediaDevices.js │ │ ├── spec │ │ │ ├── array_helper.spec.js │ │ │ ├── barcode_locator.spec.js │ │ │ ├── camera_access.spec.js │ │ │ ├── cv_utils.spec.js │ │ │ ├── events.spec.js │ │ │ ├── exif_helper.spec.js │ │ │ └── result_collector.spec.js │ │ ├── test-main-integration.js │ │ └── test-main.js │ │ ├── type-definitions │ │ └── quagga.d.ts │ │ ├── webpack.config.js │ │ ├── webpack.config.min.js │ │ └── webpack.node.config.js ├── pictures │ ├── 1dgv5vru9vg31.jpg │ ├── 51c38b2353eca2821bf277fabd360a54e6c62c3d_00.jpg │ ├── default.jpg │ ├── example-foto.jpg │ └── sample_img.jpg ├── plugins │ ├── css │ │ ├── bower.json │ │ ├── datedropper.css │ │ ├── datedropper.min.css │ │ ├── dd-icon │ │ │ ├── dd-icon.eot │ │ │ ├── dd-icon.svg │ │ │ ├── dd-icon.ttf │ │ │ └── dd-icon.woff │ │ └── sweetalert.css │ └── js │ │ ├── Chart.min.js │ │ ├── ChartRadius.js │ │ ├── datedropper.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.form-validator.min.js │ │ ├── quagga.min.js │ │ └── sweetalert.min.js └── robots.txt ├── resources ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ └── ExampleComponent.vue ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── dashboard.blade.php │ ├── home.blade.php │ ├── layouts │ └── app.blade.php │ ├── login.blade.php │ ├── manage_account │ ├── access.blade.php │ ├── access_table.blade.php │ ├── account.blade.php │ ├── filter_table │ │ └── table_view.blade.php │ └── new_account.blade.php │ ├── manage_product │ ├── filter_table │ │ └── table_view.blade.php │ ├── new_product.blade.php │ ├── product.blade.php │ └── supply_product │ │ ├── export_report_supply.blade.php │ │ ├── new_supply.blade.php │ │ ├── statistics_supply.blade.php │ │ ├── statistics_table.blade.php │ │ └── supply.blade.php │ ├── profile.blade.php │ ├── report │ ├── detail_report_worker.blade.php │ ├── export_report_transaction.blade.php │ ├── export_report_worker.blade.php │ ├── filter_table │ │ └── filter_table_worker.blade.php │ ├── report_transaction.blade.php │ ├── report_transaction_filter.blade.php │ └── report_worker.blade.php │ ├── templates │ ├── main.blade.php │ └── sidebar.blade.php │ ├── transaction │ ├── receipt_transaction.blade.php │ └── transaction.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/README.md -------------------------------------------------------------------------------- /app/Acces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Acces.php -------------------------------------------------------------------------------- /app/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Activity.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/AccessManageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/AccessManageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/AuthManageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/AuthManageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProductManageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/ProductManageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileManageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/ProfileManageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ReportManageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/ReportManageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SearchManageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/SearchManageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SupplyManageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/SupplyManageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TransactionManageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/TransactionManageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserManageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/UserManageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ViewManageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Controllers/ViewManageController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Middleware/CheckRole.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Imports/ProductImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Imports/ProductImport.php -------------------------------------------------------------------------------- /app/Imports/SupplyImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Imports/SupplyImport.php -------------------------------------------------------------------------------- /app/Market.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Market.php -------------------------------------------------------------------------------- /app/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Product.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Supply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Supply.php -------------------------------------------------------------------------------- /app/Supply_system.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Supply_system.php -------------------------------------------------------------------------------- /app/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/Transaction.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/database.php -------------------------------------------------------------------------------- /config/excel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/excel.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/css/demo_1/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/css/demo_1/style.css -------------------------------------------------------------------------------- /public/assets/css/demo_1/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/css/demo_1/style.css.map -------------------------------------------------------------------------------- /public/assets/css/shared/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/css/shared/style.css -------------------------------------------------------------------------------- /public/assets/css/shared/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/css/shared/style.css.map -------------------------------------------------------------------------------- /public/assets/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /public/assets/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/fonts/Roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/fonts/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/fonts/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/fonts/Roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /public/assets/images/auth/login_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/auth/login_1.jpg -------------------------------------------------------------------------------- /public/assets/images/auth/login_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/auth/login_2.jpg -------------------------------------------------------------------------------- /public/assets/images/auth/register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/auth/register.jpg -------------------------------------------------------------------------------- /public/assets/images/auth/register_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/auth/register_2.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/banner_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/banner_1.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/banner_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/banner_10.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/banner_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/banner_11.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/banner_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/banner_12.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/banner_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/banner_2.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/banner_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/banner_3.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/banner_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/banner_4.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/banner_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/banner_5.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/banner_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/banner_6.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/banner_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/banner_7.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/banner_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/banner_8.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/banner_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/banner_9.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/dashboard_slides.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/dashboard_slides.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/lock_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/lock_bg.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/login_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/login_1.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/login_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/login_2.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/register.jpg -------------------------------------------------------------------------------- /public/assets/images/carousel/register_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/carousel/register_1.jpg -------------------------------------------------------------------------------- /public/assets/images/chat/profile_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/chat/profile_image.jpg -------------------------------------------------------------------------------- /public/assets/images/chat/thumb_image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/chat/thumb_image1.jpg -------------------------------------------------------------------------------- /public/assets/images/chat/thumb_image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/chat/thumb_image2.jpg -------------------------------------------------------------------------------- /public/assets/images/chat/thumb_image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/chat/thumb_image3.jpg -------------------------------------------------------------------------------- /public/assets/images/chat/thumb_image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/chat/thumb_image4.jpg -------------------------------------------------------------------------------- /public/assets/images/chat/thumb_image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/chat/thumb_image5.jpg -------------------------------------------------------------------------------- /public/assets/images/chat/thumb_image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/chat/thumb_image6.jpg -------------------------------------------------------------------------------- /public/assets/images/chat/thumb_image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/chat/thumb_image7.jpg -------------------------------------------------------------------------------- /public/assets/images/chat/thumb_image8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/chat/thumb_image8.jpg -------------------------------------------------------------------------------- /public/assets/images/dashboard/banner_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/dashboard/banner_bg.jpg -------------------------------------------------------------------------------- /public/assets/images/dashboard/banner_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/dashboard/banner_img.png -------------------------------------------------------------------------------- /public/assets/images/dashboard/img_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/dashboard/img_1.jpg -------------------------------------------------------------------------------- /public/assets/images/dashboard/img_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/dashboard/img_2.jpg -------------------------------------------------------------------------------- /public/assets/images/dashboard/img_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/dashboard/img_3.jpg -------------------------------------------------------------------------------- /public/assets/images/dashboard/profile-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/dashboard/profile-card.jpg -------------------------------------------------------------------------------- /public/assets/images/dashboard/progress-card-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/dashboard/progress-card-bg.jpg -------------------------------------------------------------------------------- /public/assets/images/dashboard/weather-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/dashboard/weather-card.jpg -------------------------------------------------------------------------------- /public/assets/images/email/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/email/fb.png -------------------------------------------------------------------------------- /public/assets/images/email/mail-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/email/mail-image.jpg -------------------------------------------------------------------------------- /public/assets/images/email/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/email/medium.png -------------------------------------------------------------------------------- /public/assets/images/email/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/email/slack.png -------------------------------------------------------------------------------- /public/assets/images/email/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/email/twitter.png -------------------------------------------------------------------------------- /public/assets/images/email/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/email/youtube.png -------------------------------------------------------------------------------- /public/assets/images/faces-clipart/pic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces-clipart/pic-1.png -------------------------------------------------------------------------------- /public/assets/images/faces-clipart/pic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces-clipart/pic-2.png -------------------------------------------------------------------------------- /public/assets/images/faces-clipart/pic-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces-clipart/pic-3.png -------------------------------------------------------------------------------- /public/assets/images/faces-clipart/pic-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces-clipart/pic-4.png -------------------------------------------------------------------------------- /public/assets/images/faces/face1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face1.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face10.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face11.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face12.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face13.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face14.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face15.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face16.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face17.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face18.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face19.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face2.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face20.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face21.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face22.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face23.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face24.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face25.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face26.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face27.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face3.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face4.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face5.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face6.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face7.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face8.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/face9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/face9.jpg -------------------------------------------------------------------------------- /public/assets/images/faces/profile/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/faces/profile/profile.jpg -------------------------------------------------------------------------------- /public/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/favicon.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/128/002-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/128/002-tool.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/128/003-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/128/003-interface.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/128/004-folder-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/128/004-folder-1.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/128/005-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/128/005-database.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/128/006-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/128/006-record.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/128/007-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/128/007-folder.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/128/008-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/128/008-archive.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/256/002-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/256/002-tool.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/256/003-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/256/003-interface.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/256/004-folder-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/256/004-folder-1.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/256/005-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/256/005-database.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/256/006-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/256/006-record.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/256/007-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/256/007-folder.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/256/008-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/256/008-archive.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/512/002-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/512/002-tool.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/512/003-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/512/003-interface.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/512/004-folder-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/512/004-folder-1.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/512/005-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/512/005-database.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/512/006-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/512/006-record.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/512/007-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/512/007-folder.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/512/008-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/512/008-archive.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/64/002-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/64/002-tool.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/64/003-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/64/003-interface.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/64/004-folder-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/64/004-folder-1.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/64/005-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/64/005-database.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/64/006-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/64/006-record.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/64/007-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/64/007-folder.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/64/008-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/64/008-archive.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/Internet-Explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/Internet-Explorer.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/Safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/Safari.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/chrome.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/extension/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/extension/css.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/extension/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/extension/folder.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/extension/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/extension/html.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/extension/js-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/extension/js-file.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/extension/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/extension/pdf.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/extension/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/extension/server.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/extension/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/extension/zip.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/firefox.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/icon-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/icon-3.svg -------------------------------------------------------------------------------- /public/assets/images/file-icons/icon-google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/icon-google.svg -------------------------------------------------------------------------------- /public/assets/images/file-icons/opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/opera.png -------------------------------------------------------------------------------- /public/assets/images/file-icons/vivaldi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/file-icons/vivaldi.png -------------------------------------------------------------------------------- /public/assets/images/lazy-load/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lazy-load/1.jpg -------------------------------------------------------------------------------- /public/assets/images/lazy-load/1_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lazy-load/1_small.jpg -------------------------------------------------------------------------------- /public/assets/images/lazy-load/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lazy-load/2.jpg -------------------------------------------------------------------------------- /public/assets/images/lazy-load/2_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lazy-load/2_small.jpg -------------------------------------------------------------------------------- /public/assets/images/lazy-load/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lazy-load/3.jpg -------------------------------------------------------------------------------- /public/assets/images/lazy-load/3_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lazy-load/3_small.jpg -------------------------------------------------------------------------------- /public/assets/images/lazy-load/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lazy-load/4.jpg -------------------------------------------------------------------------------- /public/assets/images/lazy-load/4_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lazy-load/4_small.jpg -------------------------------------------------------------------------------- /public/assets/images/lazy-load/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lazy-load/5.jpg -------------------------------------------------------------------------------- /public/assets/images/lazy-load/5_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lazy-load/5_small.jpg -------------------------------------------------------------------------------- /public/assets/images/lazy-load/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lazy-load/6.jpg -------------------------------------------------------------------------------- /public/assets/images/lazy-load/6_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lazy-load/6_small.jpg -------------------------------------------------------------------------------- /public/assets/images/lightbox/play-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lightbox/play-button.png -------------------------------------------------------------------------------- /public/assets/images/lightbox/thumb-v-v-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lightbox/thumb-v-v-1.jpg -------------------------------------------------------------------------------- /public/assets/images/lightbox/thumb-v-v-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lightbox/thumb-v-v-2.jpg -------------------------------------------------------------------------------- /public/assets/images/lightbox/thumb-v-y-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lightbox/thumb-v-y-1.jpg -------------------------------------------------------------------------------- /public/assets/images/lightbox/thumb-v-y-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/lightbox/thumb-v-y-2.jpg -------------------------------------------------------------------------------- /public/assets/images/logo-mini-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo-mini-4.svg -------------------------------------------------------------------------------- /public/assets/images/logo-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo-mini.svg -------------------------------------------------------------------------------- /public/assets/images/logo-mini_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo-mini_10.svg -------------------------------------------------------------------------------- /public/assets/images/logo-mini_11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo-mini_11.svg -------------------------------------------------------------------------------- /public/assets/images/logo-mini_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo-mini_3.svg -------------------------------------------------------------------------------- /public/assets/images/logo-mini_5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo-mini_5.svg -------------------------------------------------------------------------------- /public/assets/images/logo-mini_6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo-mini_6.svg -------------------------------------------------------------------------------- /public/assets/images/logo-mini_7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo-mini_7.svg -------------------------------------------------------------------------------- /public/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo.svg -------------------------------------------------------------------------------- /public/assets/images/logo_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo_10.svg -------------------------------------------------------------------------------- /public/assets/images/logo_11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo_11.svg -------------------------------------------------------------------------------- /public/assets/images/logo_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo_2.svg -------------------------------------------------------------------------------- /public/assets/images/logo_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo_3.svg -------------------------------------------------------------------------------- /public/assets/images/logo_5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo_5.svg -------------------------------------------------------------------------------- /public/assets/images/logo_6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo_6.svg -------------------------------------------------------------------------------- /public/assets/images/logo_7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo_7.svg -------------------------------------------------------------------------------- /public/assets/images/logo_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo_8.svg -------------------------------------------------------------------------------- /public/assets/images/logo_9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo_9.svg -------------------------------------------------------------------------------- /public/assets/images/logo_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo_blue.svg -------------------------------------------------------------------------------- /public/assets/images/logo_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo_dark.svg -------------------------------------------------------------------------------- /public/assets/images/logo_dark_mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo_dark_mini.svg -------------------------------------------------------------------------------- /public/assets/images/logo_star_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/logo_star_white.svg -------------------------------------------------------------------------------- /public/assets/images/product_images/Homepod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/Homepod.png -------------------------------------------------------------------------------- /public/assets/images/product_images/apple-watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/apple-watch.jpg -------------------------------------------------------------------------------- /public/assets/images/product_images/apple-watch_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/apple-watch_2.jpg -------------------------------------------------------------------------------- /public/assets/images/product_images/baf.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/baf.jpeg -------------------------------------------------------------------------------- /public/assets/images/product_images/ball.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/ball.jpeg -------------------------------------------------------------------------------- /public/assets/images/product_images/headphone.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/headphone.jpeg -------------------------------------------------------------------------------- /public/assets/images/product_images/homepod_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/homepod_small.png -------------------------------------------------------------------------------- /public/assets/images/product_images/imac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/imac.png -------------------------------------------------------------------------------- /public/assets/images/product_images/iphone-x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/iphone-x.jpg -------------------------------------------------------------------------------- /public/assets/images/product_images/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/iphone.png -------------------------------------------------------------------------------- /public/assets/images/product_images/macbook-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/macbook-pro.png -------------------------------------------------------------------------------- /public/assets/images/product_images/magic-mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/magic-mouse.png -------------------------------------------------------------------------------- /public/assets/images/product_images/shoe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/shoe.jpeg -------------------------------------------------------------------------------- /public/assets/images/product_images/shoe_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/shoe_2.jpeg -------------------------------------------------------------------------------- /public/assets/images/product_images/shoe_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/shoe_3.jpeg -------------------------------------------------------------------------------- /public/assets/images/product_images/watch.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/product_images/watch.jpeg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/1.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/10.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/11.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/12.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/13.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/14.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/15.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/2.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/3.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/4.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/5.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/6.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/7.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/8.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/1280x768/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/1280x768/9.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/1.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/10.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/11.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/12.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/13.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/14.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/15.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/2.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/3.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/4.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/5.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/6.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/7.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/8.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/300x300/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/300x300/9.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/Login_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/Login_bg.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/Login_bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/Login_bg2.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/Mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/Mac.png -------------------------------------------------------------------------------- /public/assets/images/samples/angular-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/angular-4.png -------------------------------------------------------------------------------- /public/assets/images/samples/bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/bg_1.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/bootstrap-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/bootstrap-stack.png -------------------------------------------------------------------------------- /public/assets/images/samples/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/charts.png -------------------------------------------------------------------------------- /public/assets/images/samples/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/dashboard.png -------------------------------------------------------------------------------- /public/assets/images/samples/e-commerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/e-commerce.png -------------------------------------------------------------------------------- /public/assets/images/samples/editors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/editors.png -------------------------------------------------------------------------------- /public/assets/images/samples/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/email.png -------------------------------------------------------------------------------- /public/assets/images/samples/footer_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/footer_bg.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/forms.png -------------------------------------------------------------------------------- /public/assets/images/samples/html5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/html5.png -------------------------------------------------------------------------------- /public/assets/images/samples/invoice_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/invoice_banner.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/lockscreen-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/lockscreen-bg.jpg -------------------------------------------------------------------------------- /public/assets/images/samples/modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/modal.png -------------------------------------------------------------------------------- /public/assets/images/samples/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/popup.png -------------------------------------------------------------------------------- /public/assets/images/samples/profile_page/logo/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/profile_page/logo/01.png -------------------------------------------------------------------------------- /public/assets/images/samples/profile_page/logo/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/profile_page/logo/02.png -------------------------------------------------------------------------------- /public/assets/images/samples/profile_page/logo/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/profile_page/logo/03.png -------------------------------------------------------------------------------- /public/assets/images/samples/tab_preview/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/tab_preview/01.png -------------------------------------------------------------------------------- /public/assets/images/samples/tab_preview/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/tab_preview/02.png -------------------------------------------------------------------------------- /public/assets/images/samples/tab_preview/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/tab_preview/03.png -------------------------------------------------------------------------------- /public/assets/images/samples/tab_preview/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/tab_preview/04.png -------------------------------------------------------------------------------- /public/assets/images/samples/tab_preview/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/tab_preview/05.png -------------------------------------------------------------------------------- /public/assets/images/samples/weather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/weather.svg -------------------------------------------------------------------------------- /public/assets/images/samples/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/samples/widgets.png -------------------------------------------------------------------------------- /public/assets/images/screenshots/crm-dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/screenshots/crm-dashboard.jpg -------------------------------------------------------------------------------- /public/assets/images/screenshots/dark-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/screenshots/dark-dashboard.png -------------------------------------------------------------------------------- /public/assets/images/screenshots/default-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/screenshots/default-dark.jpg -------------------------------------------------------------------------------- /public/assets/images/screenshots/default-two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/screenshots/default-two.jpg -------------------------------------------------------------------------------- /public/assets/images/screenshots/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/screenshots/default.jpg -------------------------------------------------------------------------------- /public/assets/images/screenshots/modern-dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/screenshots/modern-dashboard.jpg -------------------------------------------------------------------------------- /public/assets/images/social_icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/social_icons/facebook.svg -------------------------------------------------------------------------------- /public/assets/images/social_icons/google_plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/social_icons/google_plus.svg -------------------------------------------------------------------------------- /public/assets/images/social_icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/social_icons/instagram.svg -------------------------------------------------------------------------------- /public/assets/images/social_icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/social_icons/twitter.svg -------------------------------------------------------------------------------- /public/assets/images/social_icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/social_icons/youtube.svg -------------------------------------------------------------------------------- /public/assets/images/sprites/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/sprites/blue.png -------------------------------------------------------------------------------- /public/assets/images/sprites/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/sprites/dark.png -------------------------------------------------------------------------------- /public/assets/images/sprites/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/sprites/flag.png -------------------------------------------------------------------------------- /public/assets/images/sprites/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/sprites/green.png -------------------------------------------------------------------------------- /public/assets/images/sprites/jsgrid-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/sprites/jsgrid-icons.png -------------------------------------------------------------------------------- /public/assets/images/sprites/logo-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/sprites/logo-mini.svg -------------------------------------------------------------------------------- /public/assets/images/sprites/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/sprites/red.png -------------------------------------------------------------------------------- /public/assets/images/sprites/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/sprites/yellow.png -------------------------------------------------------------------------------- /public/assets/images/thumb_images/thumb_image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/thumb_images/thumb_image1.jpg -------------------------------------------------------------------------------- /public/assets/images/thumb_images/thumb_image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/thumb_images/thumb_image2.jpg -------------------------------------------------------------------------------- /public/assets/images/thumb_images/thumb_image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/thumb_images/thumb_image3.jpg -------------------------------------------------------------------------------- /public/assets/images/thumb_images/thumb_image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/thumb_images/thumb_image4.jpg -------------------------------------------------------------------------------- /public/assets/images/thumb_images/thumb_image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/thumb_images/thumb_image5.jpg -------------------------------------------------------------------------------- /public/assets/images/thumb_images/thumb_image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/thumb_images/thumb_image6.jpg -------------------------------------------------------------------------------- /public/assets/images/thumb_images/thumb_image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/thumb_images/thumb_image7.jpg -------------------------------------------------------------------------------- /public/assets/images/thumb_images/thumb_image8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/thumb_images/thumb_image8.jpg -------------------------------------------------------------------------------- /public/assets/images/thumb_images/thumb_image9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/thumb_images/thumb_image9.jpg -------------------------------------------------------------------------------- /public/assets/images/weather_icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/weather_icons/sun.svg -------------------------------------------------------------------------------- /public/assets/images/weather_icons/sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/images/weather_icons/sunset.svg -------------------------------------------------------------------------------- /public/assets/js/demo_1/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/js/demo_1/dashboard.js -------------------------------------------------------------------------------- /public/assets/js/shared/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/js/shared/chart.js -------------------------------------------------------------------------------- /public/assets/js/shared/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/js/shared/misc.js -------------------------------------------------------------------------------- /public/assets/js/shared/off-canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/js/shared/off-canvas.js -------------------------------------------------------------------------------- /public/assets/scss/demo_1/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/demo_1/_card.scss -------------------------------------------------------------------------------- /public/assets/scss/demo_1/_dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/demo_1/_dashboard.scss -------------------------------------------------------------------------------- /public/assets/scss/demo_1/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/demo_1/_footer.scss -------------------------------------------------------------------------------- /public/assets/scss/demo_1/_layouts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/demo_1/_layouts.scss -------------------------------------------------------------------------------- /public/assets/scss/demo_1/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/demo_1/_misc.scss -------------------------------------------------------------------------------- /public/assets/scss/demo_1/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/demo_1/_nav.scss -------------------------------------------------------------------------------- /public/assets/scss/demo_1/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/demo_1/_navbar.scss -------------------------------------------------------------------------------- /public/assets/scss/demo_1/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/demo_1/_sidebar.scss -------------------------------------------------------------------------------- /public/assets/scss/demo_1/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/demo_1/_variables.scss -------------------------------------------------------------------------------- /public/assets/scss/demo_1/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/demo_1/style.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/_dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/_dashboard.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/_demo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/_demo.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/_fonts.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/_functions.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/_misc.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/_reset.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/_typography.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/_utilities.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/_variables.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/components/_buttons.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/components/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/components/_cards.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/components/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/components/_dropdown.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/components/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/components/_forms.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/components/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/components/_icons.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/components/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/components/_lists.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/components/_preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/components/_preview.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/components/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/components/_tables.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/components/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/components/_timeline.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/mixins/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/mixins/_animation.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/mixins/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/mixins/_background.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/mixins/_blockqoute.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/mixins/_blockqoute.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/mixins/_buttons.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/mixins/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/mixins/_cards.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/mixins/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/mixins/_misc.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/mixins/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/mixins/_text.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/screens/_auth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/screens/_auth.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/screens/_error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/screens/_error.scss -------------------------------------------------------------------------------- /public/assets/scss/shared/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/scss/shared/style.scss -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/ace.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/ext-emmet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/ext-emmet.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/ext-split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/ext-split.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-abap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-abap.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-abc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-abc.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-ada.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-ada.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-bro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-bro.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-css.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-d.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-dart.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-diff.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-dot.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-ejs.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-elm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-elm.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-ftl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-ftl.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-glsl.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-haml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-haml.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-haxe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-haxe.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-html.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-ini.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-io.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-jack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-jack.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-jade.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-java.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-json.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-jsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-jsp.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-jssm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-jssm.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-jsx.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-lean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-lean.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-less.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-lisp.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-lsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-lsl.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-lua.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-mask.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-maze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-maze.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-mel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-mel.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-nix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-nix.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-nsis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-nsis.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-perl.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-php.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-pig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-pig.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-r.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-rdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-rdoc.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-red.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-red.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-rst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-rst.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-ruby.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-rust.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-sass.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-scad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-scad.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-scss.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-sh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-sh.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-sjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-sjs.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-sql.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-svg.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-swig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-swig.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-tcl.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-tex.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-text.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-toml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-toml.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-tsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-tsx.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-twig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-twig.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-vala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-vala.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-vhdl.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-xml.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/mode-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/mode-yaml.js -------------------------------------------------------------------------------- /public/assets/vendors/ace-builds/src-min/theme-gob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/ace-builds/src-min/theme-gob.js -------------------------------------------------------------------------------- /public/assets/vendors/css/vendor.bundle.addons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/css/vendor.bundle.addons.css -------------------------------------------------------------------------------- /public/assets/vendors/css/vendor.bundle.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/css/vendor.bundle.base.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/all.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/_all.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/aero.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/aero.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/aero@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/blue.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/blue.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/blue@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/flat.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/flat.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/flat@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/green.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/green.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/green@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/grey.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/grey.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/grey@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/orange.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/orange.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/orange@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/pink.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/pink.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/pink@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/purple.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/purple.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/purple@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/red.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/red.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/red@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/yellow.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/yellow.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/flat/yellow@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/line/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/line/_all.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/line/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/line/aero.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/line/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/line/blue.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/line/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/line/green.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/line/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/line/grey.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/line/line.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/line/line.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/line/line.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/line/line@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/line/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/line/orange.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/line/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/line/pink.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/line/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/line/purple.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/line/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/line/red.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/line/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/line/yellow.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/_all.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/aero.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/aero.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/blue.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/blue.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/green.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/green.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/grey.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/grey.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/orange.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/orange.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/pink.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/pink.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/purple.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/purple.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/red.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/red.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/red@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/yellow.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/minimal/yellow.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/_all.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/aero.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/aero.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/aero@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/blue.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/blue.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/blue@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/green.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/green.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/grey.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/grey.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/grey@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/orange.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/orange.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/pink.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/pink.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/pink@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/red.css -------------------------------------------------------------------------------- /public/assets/vendors/icheck/skins/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/icheck/skins/square/red.png -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/ionicons/collection/index.js: -------------------------------------------------------------------------------- 1 | export { addIcons } from './icon/utils'; 2 | -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/ionicons/collection/interface.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/ionicons/esm/es2017/index.js: -------------------------------------------------------------------------------- 1 | // ionicons: ES Module 2 | export * from './build/index.js'; -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/ionicons/esm/es5/build/index.js: -------------------------------------------------------------------------------- 1 | export{f as addIcons}from"./chunk-1ca7e569.js"; -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/ionicons/esm/es5/index.js: -------------------------------------------------------------------------------- 1 | // ionicons: ES Module 2 | export * from './build/index.js'; -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/ionicons/esm/index.js: -------------------------------------------------------------------------------- 1 | export * from './es5/index.js'; -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/ionicons/index.js: -------------------------------------------------------------------------------- 1 | // ionicons: CommonJS Main -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/ionicons/ionicons/index.js: -------------------------------------------------------------------------------- 1 | export{f as addIcons}from"./chunk-1ca7e569.js"; -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/ionicons/loader/index.es2017.js: -------------------------------------------------------------------------------- 1 | export * from '../esm/es2017/ionicons.define.js'; -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/ionicons/loader/index.js: -------------------------------------------------------------------------------- 1 | export * from '../esm/es5/ionicons.define.js'; -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/mdi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/iconfonts/mdi/README.md -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/mdi/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/iconfonts/mdi/bower.json -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/mdi/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/iconfonts/mdi/license.md -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/mdi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/iconfonts/mdi/package.json -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/mdi/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/iconfonts/mdi/preview.html -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/ti-icons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/iconfonts/ti-icons/LICENSE -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/ti-icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/iconfonts/ti-icons/README.md -------------------------------------------------------------------------------- /public/assets/vendors/iconfonts/typicons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/iconfonts/typicons/README.md -------------------------------------------------------------------------------- /public/assets/vendors/images/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/images/alpha.png -------------------------------------------------------------------------------- /public/assets/vendors/images/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/images/hue.png -------------------------------------------------------------------------------- /public/assets/vendors/images/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/images/saturation.png -------------------------------------------------------------------------------- /public/assets/vendors/images/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/images/transparent.png -------------------------------------------------------------------------------- /public/assets/vendors/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /public/assets/vendors/img/sprite-skin-modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/img/sprite-skin-modern.png -------------------------------------------------------------------------------- /public/assets/vendors/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /public/assets/vendors/img/sprite-skin-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/img/sprite-skin-simple.png -------------------------------------------------------------------------------- /public/assets/vendors/js/vendor.bundle.addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/js/vendor.bundle.addons.js -------------------------------------------------------------------------------- /public/assets/vendors/js/vendor.bundle.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/js/vendor.bundle.base.js -------------------------------------------------------------------------------- /public/assets/vendors/jstree/jstree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/jstree/jstree.js -------------------------------------------------------------------------------- /public/assets/vendors/jstree/jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/jstree/jstree.min.js -------------------------------------------------------------------------------- /public/assets/vendors/lightgallery/fonts/lg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/lightgallery/fonts/lg.eot -------------------------------------------------------------------------------- /public/assets/vendors/lightgallery/fonts/lg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/lightgallery/fonts/lg.svg -------------------------------------------------------------------------------- /public/assets/vendors/lightgallery/fonts/lg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/lightgallery/fonts/lg.ttf -------------------------------------------------------------------------------- /public/assets/vendors/lightgallery/fonts/lg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/lightgallery/fonts/lg.woff -------------------------------------------------------------------------------- /public/assets/vendors/lightgallery/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/lightgallery/img/loading.gif -------------------------------------------------------------------------------- /public/assets/vendors/tinymce/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/tinymce/bower.json -------------------------------------------------------------------------------- /public/assets/vendors/tinymce/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/tinymce/changelog.txt -------------------------------------------------------------------------------- /public/assets/vendors/tinymce/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/tinymce/composer.json -------------------------------------------------------------------------------- /public/assets/vendors/tinymce/jquery.tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/tinymce/jquery.tinymce.js -------------------------------------------------------------------------------- /public/assets/vendors/tinymce/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/tinymce/license.txt -------------------------------------------------------------------------------- /public/assets/vendors/tinymce/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/tinymce/package.json -------------------------------------------------------------------------------- /public/assets/vendors/tinymce/plugins/hr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/tinymce/plugins/hr/index.js -------------------------------------------------------------------------------- /public/assets/vendors/tinymce/plugins/hr/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/tinymce/plugins/hr/plugin.js -------------------------------------------------------------------------------- /public/assets/vendors/tinymce/plugins/toc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/tinymce/plugins/toc/index.js -------------------------------------------------------------------------------- /public/assets/vendors/tinymce/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/tinymce/readme.md -------------------------------------------------------------------------------- /public/assets/vendors/tinymce/tinymce.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/tinymce/tinymce.jquery.js -------------------------------------------------------------------------------- /public/assets/vendors/tinymce/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/tinymce/tinymce.js -------------------------------------------------------------------------------- /public/assets/vendors/tinymce/tinymce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/assets/vendors/tinymce/tinymce.min.js -------------------------------------------------------------------------------- /public/css/dashboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/css/dashboard/style.css -------------------------------------------------------------------------------- /public/css/login/style.css: -------------------------------------------------------------------------------- 1 | .login-page{ 2 | background: #1c45ef; 3 | } -------------------------------------------------------------------------------- /public/css/main/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/css/main/style.css -------------------------------------------------------------------------------- /public/css/manage_account/access/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/css/manage_account/access/style.css -------------------------------------------------------------------------------- /public/css/manage_account/account/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/css/manage_account/account/style.css -------------------------------------------------------------------------------- /public/css/manage_account/new_account/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/css/manage_account/new_account/style.css -------------------------------------------------------------------------------- /public/css/manage_product/new_product/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/css/manage_product/new_product/style.css -------------------------------------------------------------------------------- /public/css/manage_product/product/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/css/manage_product/product/style.css -------------------------------------------------------------------------------- /public/css/profile/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/css/profile/style.css -------------------------------------------------------------------------------- /public/css/report/detail_report_worker/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/css/report/detail_report_worker/style.css -------------------------------------------------------------------------------- /public/css/report/report_transaction/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/css/report/report_transaction/style.css -------------------------------------------------------------------------------- /public/css/report/report_worker/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/css/report/report_worker/style.css -------------------------------------------------------------------------------- /public/css/transaction/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/css/transaction/style.css -------------------------------------------------------------------------------- /public/excel_file/1031983364Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1031983364Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1081321129Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1081321129Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1081793665Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1081793665Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1118304688Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1118304688Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1139608548Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1139608548Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/1197979621Data Suplai2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1197979621Data Suplai2.xlsx -------------------------------------------------------------------------------- /public/excel_file/1206189797Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1206189797Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1218695432Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1218695432Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1252539867Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1252539867Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1258094887Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1258094887Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1260541022Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1260541022Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/1311100147Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1311100147Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1319018044Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1319018044Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1334084504Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1334084504Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1377216313Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1377216313Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/1384324719Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1384324719Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1388754821Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1388754821Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1391673708Data Suplai3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1391673708Data Suplai3.xlsx -------------------------------------------------------------------------------- /public/excel_file/1400094571Data Suplai2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1400094571Data Suplai2.xlsx -------------------------------------------------------------------------------- /public/excel_file/1401150432Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1401150432Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1415222683Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1415222683Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1423653072Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1423653072Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1521932333Data Suplai2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1521932333Data Suplai2.xlsx -------------------------------------------------------------------------------- /public/excel_file/160659052Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/160659052Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/1615614243Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1615614243Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/177189793Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/177189793Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1786846696Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1786846696Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/1871597186Data Suplai3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1871597186Data Suplai3.xlsx -------------------------------------------------------------------------------- /public/excel_file/1887957966Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1887957966Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1963908302Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1963908302Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/1964327533Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1964327533Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/1998145411Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/1998145411Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/2010951396Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/2010951396Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/2076089281Data Suplai2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/2076089281Data Suplai2.xlsx -------------------------------------------------------------------------------- /public/excel_file/2081365639Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/2081365639Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/2106272903Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/2106272903Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/2120683734Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/2120683734Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/224429906Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/224429906Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/296711215Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/296711215Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/318556001Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/318556001Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/413492575Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/413492575Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/433635469Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/433635469Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/47800019Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/47800019Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/493268662Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/493268662Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/497014013Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/497014013Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/504016845Data Suplai2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/504016845Data Suplai2.xlsx -------------------------------------------------------------------------------- /public/excel_file/546334974Data Suplai3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/546334974Data Suplai3.xlsx -------------------------------------------------------------------------------- /public/excel_file/572545430Data Suplai3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/572545430Data Suplai3.xlsx -------------------------------------------------------------------------------- /public/excel_file/626993102Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/626993102Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/676595027Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/676595027Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/695280987Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/695280987Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/702752995Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/702752995Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/798113950Data Suplai2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/798113950Data Suplai2.xlsx -------------------------------------------------------------------------------- /public/excel_file/818538135Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/818538135Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/843208148Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/843208148Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/848645530Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/848645530Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/861130308Data Suplai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/861130308Data Suplai.xlsx -------------------------------------------------------------------------------- /public/excel_file/868182252Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/868182252Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/868322067Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/868322067Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/868682462Data Barang.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/868682462Data Barang.xlsx -------------------------------------------------------------------------------- /public/excel_file/942905475Data Suplai3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/excel_file/942905475Data Suplai3.xlsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/gif/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/gif/success.gif -------------------------------------------------------------------------------- /public/gif/success2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/gif/success2.gif -------------------------------------------------------------------------------- /public/gif/success3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/gif/success3.gif -------------------------------------------------------------------------------- /public/gif/success4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/gif/success4.gif -------------------------------------------------------------------------------- /public/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/icons/favicon.png -------------------------------------------------------------------------------- /public/icons/logo-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/icons/logo-mini.png -------------------------------------------------------------------------------- /public/icons/logo-mini2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/icons/logo-mini2.png -------------------------------------------------------------------------------- /public/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/icons/logo.png -------------------------------------------------------------------------------- /public/icons/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/icons/logo2.png -------------------------------------------------------------------------------- /public/images/gif/scan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/images/gif/scan.gif -------------------------------------------------------------------------------- /public/images/gif/scan2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/images/gif/scan2.gif -------------------------------------------------------------------------------- /public/images/instructions/ImportProduct.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/images/instructions/ImportProduct.jpg -------------------------------------------------------------------------------- /public/images/instructions/ImportProduct2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/images/instructions/ImportProduct2.jpg -------------------------------------------------------------------------------- /public/images/instructions/ImportSupply.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/images/instructions/ImportSupply.jpg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/dashboard/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/js/dashboard/script.js -------------------------------------------------------------------------------- /public/js/login/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/js/login/script.js -------------------------------------------------------------------------------- /public/js/manage_account/access/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/js/manage_account/access/script.js -------------------------------------------------------------------------------- /public/js/manage_account/account/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/js/manage_account/account/script.js -------------------------------------------------------------------------------- /public/js/manage_account/new_account/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/js/manage_account/new_account/script.js -------------------------------------------------------------------------------- /public/js/manage_product/new_product/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/js/manage_product/new_product/script.js -------------------------------------------------------------------------------- /public/js/manage_product/product/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/js/manage_product/product/script.js -------------------------------------------------------------------------------- /public/js/profile/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/js/profile/script.js -------------------------------------------------------------------------------- /public/js/report/detail_report_worker/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/js/report/detail_report_worker/script.js -------------------------------------------------------------------------------- /public/js/report/report_transaction/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/js/report/report_transaction/script.js -------------------------------------------------------------------------------- /public/js/report/report_worker/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/js/report/report_worker/script.js -------------------------------------------------------------------------------- /public/js/templates/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/js/templates/script.js -------------------------------------------------------------------------------- /public/js/transaction/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/js/transaction/script.js -------------------------------------------------------------------------------- /public/package/barcode/__MACOSX/._barcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode/__MACOSX/._barcode.js -------------------------------------------------------------------------------- /public/package/barcode/__MACOSX/._barcode.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode/__MACOSX/._barcode.wav -------------------------------------------------------------------------------- /public/package/barcode/__MACOSX/._index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode/__MACOSX/._index.html -------------------------------------------------------------------------------- /public/package/barcode/__MACOSX/._jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode/__MACOSX/._jquery.js -------------------------------------------------------------------------------- /public/package/barcode/__MACOSX/._style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode/__MACOSX/._style.css -------------------------------------------------------------------------------- /public/package/barcode/barcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode/barcode.js -------------------------------------------------------------------------------- /public/package/barcode/barcode.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode/barcode.wav -------------------------------------------------------------------------------- /public/package/barcode/barcode.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode/barcode.zip -------------------------------------------------------------------------------- /public/package/barcode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode/index.html -------------------------------------------------------------------------------- /public/package/barcode/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode/jquery.js -------------------------------------------------------------------------------- /public/package/barcode/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode/style.css -------------------------------------------------------------------------------- /public/package/barcode2/quaggaJS-master/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode2/quaggaJS-master/.babelrc -------------------------------------------------------------------------------- /public/package/barcode2/quaggaJS-master/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode2/quaggaJS-master/.eslintrc -------------------------------------------------------------------------------- /public/package/barcode2/quaggaJS-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode2/quaggaJS-master/.gitignore -------------------------------------------------------------------------------- /public/package/barcode2/quaggaJS-master/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode2/quaggaJS-master/.npmignore -------------------------------------------------------------------------------- /public/package/barcode2/quaggaJS-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode2/quaggaJS-master/LICENSE -------------------------------------------------------------------------------- /public/package/barcode2/quaggaJS-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode2/quaggaJS-master/README.md -------------------------------------------------------------------------------- /public/package/barcode2/quaggaJS-master/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode2/quaggaJS-master/bower.json -------------------------------------------------------------------------------- /public/package/barcode2/quaggaJS-master/build/end.frag: -------------------------------------------------------------------------------- 1 | return require('quagga'); 2 | })); -------------------------------------------------------------------------------- /public/package/barcode2/quaggaJS-master/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/package/barcode2/quaggaJS-master/server.pem -------------------------------------------------------------------------------- /public/pictures/1dgv5vru9vg31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/pictures/1dgv5vru9vg31.jpg -------------------------------------------------------------------------------- /public/pictures/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/pictures/default.jpg -------------------------------------------------------------------------------- /public/pictures/example-foto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/pictures/example-foto.jpg -------------------------------------------------------------------------------- /public/pictures/sample_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/pictures/sample_img.jpg -------------------------------------------------------------------------------- /public/plugins/css/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/css/bower.json -------------------------------------------------------------------------------- /public/plugins/css/datedropper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/css/datedropper.css -------------------------------------------------------------------------------- /public/plugins/css/datedropper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/css/datedropper.min.css -------------------------------------------------------------------------------- /public/plugins/css/dd-icon/dd-icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/css/dd-icon/dd-icon.eot -------------------------------------------------------------------------------- /public/plugins/css/dd-icon/dd-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/css/dd-icon/dd-icon.svg -------------------------------------------------------------------------------- /public/plugins/css/dd-icon/dd-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/css/dd-icon/dd-icon.ttf -------------------------------------------------------------------------------- /public/plugins/css/dd-icon/dd-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/css/dd-icon/dd-icon.woff -------------------------------------------------------------------------------- /public/plugins/css/sweetalert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/css/sweetalert.css -------------------------------------------------------------------------------- /public/plugins/js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/js/Chart.min.js -------------------------------------------------------------------------------- /public/plugins/js/ChartRadius.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/js/ChartRadius.js -------------------------------------------------------------------------------- /public/plugins/js/datedropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/js/datedropper.js -------------------------------------------------------------------------------- /public/plugins/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/js/jquery-ui.min.js -------------------------------------------------------------------------------- /public/plugins/js/jquery.form-validator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/js/jquery.form-validator.min.js -------------------------------------------------------------------------------- /public/plugins/js/quagga.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/js/quagga.min.js -------------------------------------------------------------------------------- /public/plugins/js/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/public/plugins/js/sweetalert.min.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/auth/passwords/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/login.blade.php -------------------------------------------------------------------------------- /resources/views/manage_account/access.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/manage_account/access.blade.php -------------------------------------------------------------------------------- /resources/views/manage_account/account.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/manage_account/account.blade.php -------------------------------------------------------------------------------- /resources/views/manage_product/product.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/manage_product/product.blade.php -------------------------------------------------------------------------------- /resources/views/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/profile.blade.php -------------------------------------------------------------------------------- /resources/views/report/report_worker.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/report/report_worker.blade.php -------------------------------------------------------------------------------- /resources/views/templates/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/templates/main.blade.php -------------------------------------------------------------------------------- /resources/views/templates/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/templates/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/transaction/transaction.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/transaction/transaction.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratamashooter/ipos-system/HEAD/webpack.mix.js --------------------------------------------------------------------------------