├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Exports │ ├── InvoiceExport.php │ ├── InvoicePaidExport.php │ ├── InvoicePartialExport.php │ └── InvoiceUnPaidExport.php ├── Http │ ├── Controllers │ │ ├── AdminController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Controller.php │ │ ├── CustomersReportController.php │ │ ├── HomeController.php │ │ ├── InvoiceAttachmentsController.php │ │ ├── InvoiceController.php │ │ ├── InvoicesDetialsController.php │ │ ├── InvoicesReportController.php │ │ ├── ProductsController.php │ │ ├── RoleController.php │ │ ├── SectionController.php │ │ └── UserController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Models │ ├── Invoice.php │ ├── InvoiceAttachments.php │ ├── InvoicesDetials.php │ ├── Section.php │ ├── User.php │ └── products.php ├── Notifications │ ├── AddInvoice.php │ └── InvoiceEmail.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.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 ├── permission.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 │ ├── 2022_09_17_192842_create_sections_table.php │ ├── 2022_09_18_090228_create_products_table.php │ ├── 2022_09_19_154810_create_invoices_table.php │ ├── 2022_09_19_154811_create_invoices_detials_table.php │ ├── 2022_09_19_155529_create_invoice_attachments_table.php │ ├── 2022_09_24_172017_create_permission_tables.php │ └── 2022_10_01_171128_create_notifications_table.php └── seeders │ ├── CreateAdminUserSeeder.php │ ├── DatabaseSeeder.php │ └── PermissionTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── Attachments │ └── invoiceAttachments │ │ ├── pic03.png │ │ └── screenbud-844150df-8cc1-4558-8737-73e1e53566f3.png ├── assets │ ├── css-rtl │ │ ├── animate.css │ │ ├── icons.css │ │ ├── sidemenu.css │ │ ├── sidemenu.css.map │ │ ├── sidemenu.scss │ │ ├── skin-modes.css │ │ ├── skin-modes.css.map │ │ ├── skin-modes.scss │ │ ├── style-dark.css │ │ ├── style-dark.css.map │ │ ├── style-dark.scss │ │ ├── style.css │ │ └── style.css.map │ ├── css │ │ ├── animate.css │ │ ├── icons.css │ │ ├── sidemenu.css │ │ ├── sidemenu.css.map │ │ ├── sidemenu.scss │ │ ├── skin-modes.css │ │ ├── skin-modes.css.map │ │ ├── skin-modes.scss │ │ ├── style-dark.css │ │ ├── style-dark.css.map │ │ ├── style-dark.scss │ │ ├── style.css │ │ └── style.css.map │ ├── img │ │ ├── 1.jpg │ │ ├── 20.jpg │ │ ├── 6.jpg │ │ ├── backgrounds │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ └── 05.png │ │ ├── brand │ │ │ ├── favicon-white.png │ │ │ ├── favicon.png │ │ │ ├── logo-semiwhite.png │ │ │ ├── logo-white.png │ │ │ └── logo.png │ │ ├── card4.png │ │ ├── crypto-currencies │ │ │ ├── regular │ │ │ │ ├── AquariusCoin.svg │ │ │ │ ├── Augur.svg │ │ │ │ ├── BitConnect.svg │ │ │ │ ├── BitShares.svg │ │ │ │ ├── Bitcoin.svg │ │ │ │ ├── Bytecoin.svg │ │ │ │ ├── Dash.svg │ │ │ │ ├── Decred.svg │ │ │ │ ├── EOS.svg │ │ │ │ ├── Ethereum.svg │ │ │ │ ├── Euro.svg │ │ │ │ ├── Golem.svg │ │ │ │ ├── IOTA.svg │ │ │ │ ├── Iconomi.svg │ │ │ │ ├── LanaCoin.svg │ │ │ │ ├── NEM.svg │ │ │ │ ├── Neo.svg │ │ │ │ ├── Netko-coin.svg │ │ │ │ ├── NevaCoin.svg │ │ │ │ ├── Ripple.svg │ │ │ │ ├── Siacoin.svg │ │ │ │ ├── Steem.svg │ │ │ │ ├── Stratis.svg │ │ │ │ ├── Suncontract.svg │ │ │ │ ├── TajCoin.svg │ │ │ │ ├── Waves.svg │ │ │ │ ├── Xaurum.svg │ │ │ │ ├── Zcash.svg │ │ │ │ ├── litecoin.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── qtum.svg │ │ │ │ ├── raiblocks.svg │ │ │ │ ├── stellar.svg │ │ │ │ └── tron.svg │ │ │ ├── round-icons │ │ │ │ ├── AquariusCoin.svg │ │ │ │ ├── Augur.svg │ │ │ │ ├── BitConnect.svg │ │ │ │ ├── BitShares.svg │ │ │ │ ├── Bitcoin.svg │ │ │ │ ├── Bytecoin.svg │ │ │ │ ├── Dash.svg │ │ │ │ ├── Decred.svg │ │ │ │ ├── EOS.svg │ │ │ │ ├── Ethereum.svg │ │ │ │ ├── Golem.svg │ │ │ │ ├── IOTA.svg │ │ │ │ ├── Iconomi.svg │ │ │ │ ├── LanaCoin.svg │ │ │ │ ├── Litecoin.svg │ │ │ │ ├── Monero.svg │ │ │ │ ├── NEM.svg │ │ │ │ ├── Netko-coin.svg │ │ │ │ ├── NevaCoin.svg │ │ │ │ ├── Ripple.svg │ │ │ │ ├── Siacoin.svg │ │ │ │ ├── Steem.svg │ │ │ │ ├── Stratis.svg │ │ │ │ ├── Suncontract.svg │ │ │ │ ├── TajCoin.svg │ │ │ │ ├── Waves.svg │ │ │ │ ├── Xaurum.svg │ │ │ │ └── Zcash.svg │ │ │ ├── round-outline │ │ │ │ ├── AquariusCoin.svg │ │ │ │ ├── Augur.svg │ │ │ │ ├── BitConnect.svg │ │ │ │ ├── BitShares.svg │ │ │ │ ├── Bitcoin.svg │ │ │ │ ├── Bytecoin.svg │ │ │ │ ├── Dash.svg │ │ │ │ ├── Decred.svg │ │ │ │ ├── EOS.svg │ │ │ │ ├── Ethereum.svg │ │ │ │ ├── Golem.svg │ │ │ │ ├── IOTA.svg │ │ │ │ ├── Iconomi.svg │ │ │ │ ├── LanaCoin.svg │ │ │ │ ├── Litecoin.svg │ │ │ │ ├── Monero.svg │ │ │ │ ├── NEM.svg │ │ │ │ ├── Netko-coin.svg │ │ │ │ ├── NevaCoin.svg │ │ │ │ ├── Ripple.svg │ │ │ │ ├── Siacoin.svg │ │ │ │ ├── Steem.svg │ │ │ │ ├── Stratis.svg │ │ │ │ ├── Suncontract.svg │ │ │ │ ├── TajCoin.svg │ │ │ │ ├── Waves.svg │ │ │ │ ├── Xaurum.svg │ │ │ │ └── Zcash.svg │ │ │ └── square-color │ │ │ │ ├── AquariusCoin.svg │ │ │ │ ├── Augur.svg │ │ │ │ ├── BitConnect.svg │ │ │ │ ├── BitShares.svg │ │ │ │ ├── Bitcoin.svg │ │ │ │ ├── Bytecoin.svg │ │ │ │ ├── Dash.svg │ │ │ │ ├── Decred.svg │ │ │ │ ├── EOS.svg │ │ │ │ ├── Ethereum.svg │ │ │ │ ├── Golem.svg │ │ │ │ ├── IOTA.svg │ │ │ │ ├── Iconomi.svg │ │ │ │ ├── LanaCoin.svg │ │ │ │ ├── Litecoin.svg │ │ │ │ ├── Monero.svg │ │ │ │ ├── NEM.svg │ │ │ │ ├── Netko-coin.svg │ │ │ │ ├── NevaCoin.svg │ │ │ │ ├── Ripple.svg │ │ │ │ ├── Siacoin.svg │ │ │ │ ├── Steem.svg │ │ │ │ ├── Stratis.svg │ │ │ │ ├── Suncontract.svg │ │ │ │ ├── TajCoin.svg │ │ │ │ ├── Waves.svg │ │ │ │ ├── Xaurum.svg │ │ │ │ └── Zcash.svg │ │ ├── ecommerce │ │ │ ├── 01.jpg │ │ │ ├── 02.jpg │ │ │ ├── 03.jpg │ │ │ ├── 04.jpg │ │ │ ├── 05.jpg │ │ │ ├── 06.jpg │ │ │ ├── 07.jpg │ │ │ ├── 08.jpg │ │ │ ├── 09.jpg │ │ │ ├── 11.jpg │ │ │ ├── 5.jpg │ │ │ ├── shirt-1.png │ │ │ ├── shirt-2.png │ │ │ ├── shirt-3.png │ │ │ ├── shirt-4.png │ │ │ └── shirt-5.png │ │ ├── faces │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── flags │ │ │ ├── french_flag.jpg │ │ │ ├── germany_flag.jpg │ │ │ ├── india_flag.jpg │ │ │ ├── italy_flag.jpg │ │ │ ├── russia_flag.jpg │ │ │ ├── spain_flag.jpg │ │ │ └── us_flag.jpg │ │ ├── loader.svg │ │ ├── mastercard.png │ │ ├── media │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 404.png │ │ │ ├── 500.png │ │ │ ├── authentication.png │ │ │ ├── calendar.png │ │ │ ├── forgot.png │ │ │ ├── illustrate.png │ │ │ ├── illustrate1.png │ │ │ ├── illustrate2.png │ │ │ ├── image1.png │ │ │ ├── image2.png │ │ │ ├── lockscreen.png │ │ │ ├── login.png │ │ │ ├── pattern.png │ │ │ ├── reset.png │ │ │ └── underconstruction.png │ │ ├── photos │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpg │ │ │ ├── 19.jpg │ │ │ ├── 2.jpg │ │ │ ├── 20.jpg │ │ │ ├── 21.jpg │ │ │ ├── 22.jpg │ │ │ ├── 23.jpg │ │ │ ├── 24.jpg │ │ │ ├── 25.jpg │ │ │ ├── 26.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ ├── 9.jpg │ │ │ ├── blue.jpg │ │ │ ├── compare1.jpg │ │ │ ├── compare2.jpg │ │ │ ├── gradient1.jpg │ │ │ ├── gradient2.jpg │ │ │ ├── gradient3.jpg │ │ │ ├── green.jpg │ │ │ ├── red - Copy.jpg │ │ │ └── red.jpg │ │ ├── svgicons │ │ │ ├── accountant.svg │ │ │ ├── banner-img.svg │ │ │ ├── booking.svg │ │ │ ├── briefing.svg │ │ │ ├── calendar.svg │ │ │ ├── calendar1.svg │ │ │ ├── chrome.svg │ │ │ ├── edge.svg │ │ │ ├── email.svg │ │ │ ├── firefox.svg │ │ │ ├── group_presentation.svg │ │ │ ├── imac.svg │ │ │ ├── invoice.svg │ │ │ ├── launch.svg │ │ │ ├── letter.svg │ │ │ ├── no-data.svg │ │ │ ├── note_taking.svg │ │ │ ├── notification.svg │ │ │ ├── opera.svg │ │ │ ├── phone-book.svg │ │ │ ├── project.svg │ │ │ ├── project2.svg │ │ │ ├── question.svg │ │ │ ├── report.svg │ │ │ ├── reward.svg │ │ │ ├── rocket_launch.svg │ │ │ ├── safari.svg │ │ │ ├── sales-revenue.svg │ │ │ ├── settings.svg │ │ │ ├── site.svg │ │ │ ├── translation.svg │ │ │ ├── uc-browser.svg │ │ │ └── wave.svg │ │ └── visa.png │ ├── js │ │ ├── accordion.js │ │ ├── advanced-form-elements.js │ │ ├── apexcharts.js │ │ ├── app-calendar-events.js │ │ ├── app-calendar.js │ │ ├── carousel.js │ │ ├── chart.chartjs.js │ │ ├── chart.flot.js │ │ ├── chart.flot.sampledata.js │ │ ├── chart.morris.js │ │ ├── chart.peity.js │ │ ├── chart.sparkline.js │ │ ├── chat.js │ │ ├── check-all-mail.js │ │ ├── contact.js │ │ ├── cookie.js │ │ ├── createWaterBall-jquery.js │ │ ├── custom.js │ │ ├── dashboard.sampledata.js │ │ ├── echarts.js │ │ ├── eva-icons.min.js │ │ ├── form-editor.js │ │ ├── form-elements.js │ │ ├── form-layouts.js │ │ ├── form-validation.js │ │ ├── form-wizard.js │ │ ├── formelementadvnced.js │ │ ├── gallery.js │ │ ├── image-comparision.js │ │ ├── index-dark.js │ │ ├── index-map.js │ │ ├── index.js │ │ ├── invoice.js │ │ ├── jquery.vmap.sampledata.js │ │ ├── left-menu.js │ │ ├── mail-two.js │ │ ├── map-leafleft.js │ │ ├── map.apple.js │ │ ├── map.bluewater.js │ │ ├── map.mapbox.js │ │ ├── map.shiftworker.js │ │ ├── modal-popup.js │ │ ├── modal.js │ │ ├── navigation.js │ │ ├── newsticker.js │ │ ├── popover.js │ │ ├── profile.js │ │ ├── rangeslider.js │ │ ├── select2.js │ │ ├── sidemenu.js │ │ ├── sticky.js │ │ ├── sweet-alert.js │ │ ├── table-data.js │ │ ├── tabs.js │ │ ├── timline.js │ │ ├── tooltip.js │ │ └── vector-map.js │ ├── plugins │ │ ├── @fortawesome │ │ │ └── fontawesome-free │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ └── v4-shims.min.css │ │ │ │ ├── js │ │ │ │ ├── all.min.js │ │ │ │ ├── brands.min.js │ │ │ │ ├── fontawesome.min.js │ │ │ │ ├── regular.min.js │ │ │ │ ├── solid.min.js │ │ │ │ └── v4-shims.min.js │ │ │ │ ├── sprites │ │ │ │ ├── brands.svg │ │ │ │ ├── regular.svg │ │ │ │ └── solid.svg │ │ │ │ ├── svgs │ │ │ │ ├── brands │ │ │ │ │ ├── 500px.svg │ │ │ │ │ ├── accessible-icon.svg │ │ │ │ │ ├── accusoft.svg │ │ │ │ │ ├── adn.svg │ │ │ │ │ ├── adversal.svg │ │ │ │ │ ├── affiliatetheme.svg │ │ │ │ │ ├── algolia.svg │ │ │ │ │ ├── alipay.svg │ │ │ │ │ ├── amazon-pay.svg │ │ │ │ │ ├── amazon.svg │ │ │ │ │ ├── amilia.svg │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── angellist.svg │ │ │ │ │ ├── angrycreative.svg │ │ │ │ │ ├── angular.svg │ │ │ │ │ ├── app-store-ios.svg │ │ │ │ │ ├── app-store.svg │ │ │ │ │ ├── apper.svg │ │ │ │ │ ├── apple-pay.svg │ │ │ │ │ ├── apple.svg │ │ │ │ │ ├── asymmetrik.svg │ │ │ │ │ ├── audible.svg │ │ │ │ │ ├── autoprefixer.svg │ │ │ │ │ ├── avianex.svg │ │ │ │ │ ├── aviato.svg │ │ │ │ │ ├── aws.svg │ │ │ │ │ ├── bandcamp.svg │ │ │ │ │ ├── behance-square.svg │ │ │ │ │ ├── behance.svg │ │ │ │ │ ├── bimobject.svg │ │ │ │ │ ├── bitbucket.svg │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ ├── bity.svg │ │ │ │ │ ├── black-tie.svg │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ ├── blogger-b.svg │ │ │ │ │ ├── blogger.svg │ │ │ │ │ ├── bluetooth-b.svg │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ ├── btc.svg │ │ │ │ │ ├── buromobelexperte.svg │ │ │ │ │ ├── buysellads.svg │ │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ │ ├── cc-amex.svg │ │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ │ ├── cc-diners-club.svg │ │ │ │ │ ├── cc-discover.svg │ │ │ │ │ ├── cc-jcb.svg │ │ │ │ │ ├── cc-mastercard.svg │ │ │ │ │ ├── cc-paypal.svg │ │ │ │ │ ├── cc-stripe.svg │ │ │ │ │ ├── cc-visa.svg │ │ │ │ │ ├── centercode.svg │ │ │ │ │ ├── chrome.svg │ │ │ │ │ ├── cloudscale.svg │ │ │ │ │ ├── cloudsmith.svg │ │ │ │ │ ├── cloudversify.svg │ │ │ │ │ ├── codepen.svg │ │ │ │ │ ├── codiepie.svg │ │ │ │ │ ├── connectdevelop.svg │ │ │ │ │ ├── contao.svg │ │ │ │ │ ├── cpanel.svg │ │ │ │ │ ├── creative-commons-by.svg │ │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ │ ├── creative-commons-share.svg │ │ │ │ │ ├── creative-commons.svg │ │ │ │ │ ├── css3-alt.svg │ │ │ │ │ ├── css3.svg │ │ │ │ │ ├── cuttlefish.svg │ │ │ │ │ ├── d-and-d.svg │ │ │ │ │ ├── dashcube.svg │ │ │ │ │ ├── delicious.svg │ │ │ │ │ ├── deploydog.svg │ │ │ │ │ ├── deskpro.svg │ │ │ │ │ ├── deviantart.svg │ │ │ │ │ ├── digg.svg │ │ │ │ │ ├── digital-ocean.svg │ │ │ │ │ ├── discord.svg │ │ │ │ │ ├── discourse.svg │ │ │ │ │ ├── dochub.svg │ │ │ │ │ ├── docker.svg │ │ │ │ │ ├── draft2digital.svg │ │ │ │ │ ├── dribbble-square.svg │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ ├── drupal.svg │ │ │ │ │ ├── dyalog.svg │ │ │ │ │ ├── earlybirds.svg │ │ │ │ │ ├── ebay.svg │ │ │ │ │ ├── edge.svg │ │ │ │ │ ├── elementor.svg │ │ │ │ │ ├── ello.svg │ │ │ │ │ ├── ember.svg │ │ │ │ │ ├── empire.svg │ │ │ │ │ ├── envira.svg │ │ │ │ │ ├── erlang.svg │ │ │ │ │ ├── ethereum.svg │ │ │ │ │ ├── etsy.svg │ │ │ │ │ ├── expeditedssl.svg │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ ├── facebook-messenger.svg │ │ │ │ │ ├── facebook-square.svg │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── firefox.svg │ │ │ │ │ ├── first-order-alt.svg │ │ │ │ │ ├── first-order.svg │ │ │ │ │ ├── firstdraft.svg │ │ │ │ │ ├── flickr.svg │ │ │ │ │ ├── flipboard.svg │ │ │ │ │ ├── fly.svg │ │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── fonticons-fi.svg │ │ │ │ │ ├── fonticons.svg │ │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ │ ├── fort-awesome.svg │ │ │ │ │ ├── forumbee.svg │ │ │ │ │ ├── foursquare.svg │ │ │ │ │ ├── free-code-camp.svg │ │ │ │ │ ├── freebsd.svg │ │ │ │ │ ├── fulcrum.svg │ │ │ │ │ ├── galactic-republic.svg │ │ │ │ │ ├── galactic-senate.svg │ │ │ │ │ ├── get-pocket.svg │ │ │ │ │ ├── gg-circle.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── git-square.svg │ │ │ │ │ ├── git.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── github-square.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitkraken.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gitter.svg │ │ │ │ │ ├── glide-g.svg │ │ │ │ │ ├── glide.svg │ │ │ │ │ ├── gofore.svg │ │ │ │ │ ├── goodreads-g.svg │ │ │ │ │ ├── goodreads.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ ├── google-plus-square.svg │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ ├── grav.svg │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ ├── grunt.svg │ │ │ │ │ ├── gulp.svg │ │ │ │ │ ├── hacker-news-square.svg │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ ├── hackerrank.svg │ │ │ │ │ ├── hips.svg │ │ │ │ │ ├── hire-a-helper.svg │ │ │ │ │ ├── hooli.svg │ │ │ │ │ ├── hornbill.svg │ │ │ │ │ ├── hotjar.svg │ │ │ │ │ ├── houzz.svg │ │ │ │ │ ├── html5.svg │ │ │ │ │ ├── hubspot.svg │ │ │ │ │ ├── imdb.svg │ │ │ │ │ ├── instagram.svg │ │ │ │ │ ├── internet-explorer.svg │ │ │ │ │ ├── ioxhost.svg │ │ │ │ │ ├── itunes-note.svg │ │ │ │ │ ├── itunes.svg │ │ │ │ │ ├── java.svg │ │ │ │ │ ├── jedi-order.svg │ │ │ │ │ ├── jenkins.svg │ │ │ │ │ ├── joget.svg │ │ │ │ │ ├── joomla.svg │ │ │ │ │ ├── js-square.svg │ │ │ │ │ ├── js.svg │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ ├── keybase.svg │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ ├── korvue.svg │ │ │ │ │ ├── laravel.svg │ │ │ │ │ ├── lastfm-square.svg │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ ├── leanpub.svg │ │ │ │ │ ├── less.svg │ │ │ │ │ ├── line.svg │ │ │ │ │ ├── linkedin-in.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── linode.svg │ │ │ │ │ ├── linux.svg │ │ │ │ │ ├── lyft.svg │ │ │ │ │ ├── magento.svg │ │ │ │ │ ├── mailchimp.svg │ │ │ │ │ ├── mandalorian.svg │ │ │ │ │ ├── markdown.svg │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ ├── maxcdn.svg │ │ │ │ │ ├── medapps.svg │ │ │ │ │ ├── medium-m.svg │ │ │ │ │ ├── medium.svg │ │ │ │ │ ├── medrt.svg │ │ │ │ │ ├── meetup.svg │ │ │ │ │ ├── megaport.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── mix.svg │ │ │ │ │ ├── mixcloud.svg │ │ │ │ │ ├── mizuni.svg │ │ │ │ │ ├── modx.svg │ │ │ │ │ ├── monero.svg │ │ │ │ │ ├── napster.svg │ │ │ │ │ ├── neos.svg │ │ │ │ │ ├── nimblr.svg │ │ │ │ │ ├── nintendo-switch.svg │ │ │ │ │ ├── node-js.svg │ │ │ │ │ ├── node.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── ns8.svg │ │ │ │ │ ├── nutritionix.svg │ │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ ├── opencart.svg │ │ │ │ │ ├── openid.svg │ │ │ │ │ ├── opera.svg │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ ├── osi.svg │ │ │ │ │ ├── page4.svg │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ ├── palfed.svg │ │ │ │ │ ├── patreon.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── periscope.svg │ │ │ │ │ ├── phabricator.svg │ │ │ │ │ ├── phoenix-framework.svg │ │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ │ ├── php.svg │ │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ ├── pinterest-square.svg │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ ├── playstation.svg │ │ │ │ │ ├── product-hunt.svg │ │ │ │ │ ├── pushed.svg │ │ │ │ │ ├── python.svg │ │ │ │ │ ├── qq.svg │ │ │ │ │ ├── quinscape.svg │ │ │ │ │ ├── quora.svg │ │ │ │ │ ├── r-project.svg │ │ │ │ │ ├── ravelry.svg │ │ │ │ │ ├── react.svg │ │ │ │ │ ├── readme.svg │ │ │ │ │ ├── rebel.svg │ │ │ │ │ ├── red-river.svg │ │ │ │ │ ├── reddit-alien.svg │ │ │ │ │ ├── reddit-square.svg │ │ │ │ │ ├── reddit.svg │ │ │ │ │ ├── rendact.svg │ │ │ │ │ ├── renren.svg │ │ │ │ │ ├── replyd.svg │ │ │ │ │ ├── researchgate.svg │ │ │ │ │ ├── resolving.svg │ │ │ │ │ ├── rev.svg │ │ │ │ │ ├── rocketchat.svg │ │ │ │ │ ├── rockrms.svg │ │ │ │ │ ├── safari.svg │ │ │ │ │ ├── sass.svg │ │ │ │ │ ├── schlix.svg │ │ │ │ │ ├── scribd.svg │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ ├── shopware.svg │ │ │ │ │ ├── simplybuilt.svg │ │ │ │ │ ├── sistrix.svg │ │ │ │ │ ├── sith.svg │ │ │ │ │ ├── skyatlas.svg │ │ │ │ │ ├── skype.svg │ │ │ │ │ ├── slack-hash.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── slideshare.svg │ │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ │ ├── snapchat-square.svg │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ ├── speakap.svg │ │ │ │ │ ├── spotify.svg │ │ │ │ │ ├── squarespace.svg │ │ │ │ │ ├── stack-exchange.svg │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ ├── staylinked.svg │ │ │ │ │ ├── steam-square.svg │ │ │ │ │ ├── steam-symbol.svg │ │ │ │ │ ├── steam.svg │ │ │ │ │ ├── sticker-mule.svg │ │ │ │ │ ├── strava.svg │ │ │ │ │ ├── stripe-s.svg │ │ │ │ │ ├── stripe.svg │ │ │ │ │ ├── studiovinari.svg │ │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ │ ├── stumbleupon.svg │ │ │ │ │ ├── superpowers.svg │ │ │ │ │ ├── supple.svg │ │ │ │ │ ├── teamspeak.svg │ │ │ │ │ ├── telegram-plane.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── tencent-weibo.svg │ │ │ │ │ ├── the-red-yeti.svg │ │ │ │ │ ├── themeco.svg │ │ │ │ │ ├── themeisle.svg │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ ├── trello.svg │ │ │ │ │ ├── tripadvisor.svg │ │ │ │ │ ├── tumblr-square.svg │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ ├── twitch.svg │ │ │ │ │ ├── twitter-square.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── typo3.svg │ │ │ │ │ ├── uber.svg │ │ │ │ │ ├── uikit.svg │ │ │ │ │ ├── uniregistry.svg │ │ │ │ │ ├── untappd.svg │ │ │ │ │ ├── usb.svg │ │ │ │ │ ├── ussunnah.svg │ │ │ │ │ ├── vaadin.svg │ │ │ │ │ ├── viacoin.svg │ │ │ │ │ ├── viadeo-square.svg │ │ │ │ │ ├── viadeo.svg │ │ │ │ │ ├── viber.svg │ │ │ │ │ ├── vimeo-square.svg │ │ │ │ │ ├── vimeo-v.svg │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ ├── vine.svg │ │ │ │ │ ├── vk.svg │ │ │ │ │ ├── vnv.svg │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ ├── weebly.svg │ │ │ │ │ ├── weibo.svg │ │ │ │ │ ├── weixin.svg │ │ │ │ │ ├── whatsapp-square.svg │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── wix.svg │ │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ ├── wpbeginner.svg │ │ │ │ │ ├── wpexplorer.svg │ │ │ │ │ ├── wpforms.svg │ │ │ │ │ ├── xbox.svg │ │ │ │ │ ├── xing-square.svg │ │ │ │ │ ├── xing.svg │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ ├── yandex.svg │ │ │ │ │ ├── yelp.svg │ │ │ │ │ ├── yoast.svg │ │ │ │ │ ├── youtube-square.svg │ │ │ │ │ ├── youtube.svg │ │ │ │ │ └── zhihu.svg │ │ │ │ ├── regular │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── angry.svg │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flushed.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ ├── frown.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── grimace.svg │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ ├── grin.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ ├── kiss.svg │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ ├── laugh.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── share-square.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── surprise.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── tired.svg │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── window-close.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ └── window-restore.svg │ │ │ │ └── solid │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── adjust.svg │ │ │ │ │ ├── air-freshener.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── allergies.svg │ │ │ │ │ ├── ambulance.svg │ │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ │ ├── anchor.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 │ │ │ │ │ ├── angry.svg │ │ │ │ │ ├── ankh.svg │ │ │ │ │ ├── apple-alt.svg │ │ │ │ │ ├── archive.svg │ │ │ │ │ ├── archway.svg │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ ├── arrow-alt-circle-up.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-up.svg │ │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ │ ├── arrows-alt.svg │ │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── atlas.svg │ │ │ │ │ ├── atom.svg │ │ │ │ │ ├── audio-description.svg │ │ │ │ │ ├── award.svg │ │ │ │ │ ├── backspace.svg │ │ │ │ │ ├── backward.svg │ │ │ │ │ ├── balance-scale.svg │ │ │ │ │ ├── ban.svg │ │ │ │ │ ├── band-aid.svg │ │ │ │ │ ├── barcode.svg │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── baseball-ball.svg │ │ │ │ │ ├── basketball-ball.svg │ │ │ │ │ ├── bath.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ ├── battery-quarter.svg │ │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ │ ├── bed.svg │ │ │ │ │ ├── beer.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bezier-curve.svg │ │ │ │ │ ├── bible.svg │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ ├── birthday-cake.svg │ │ │ │ │ ├── blender.svg │ │ │ │ │ ├── blind.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── bolt.svg │ │ │ │ │ ├── bomb.svg │ │ │ │ │ ├── bone.svg │ │ │ │ │ ├── bong.svg │ │ │ │ │ ├── book-open.svg │ │ │ │ │ ├── book-reader.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ ├── box-open.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── boxes.svg │ │ │ │ │ ├── braille.svg │ │ │ │ │ ├── brain.svg │ │ │ │ │ ├── briefcase-medical.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── broadcast-tower.svg │ │ │ │ │ ├── broom.svg │ │ │ │ │ ├── brush.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── bullhorn.svg │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ ├── burn.svg │ │ │ │ │ ├── bus-alt.svg │ │ │ │ │ ├── bus.svg │ │ │ │ │ ├── business-time.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── camera-retro.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── cannabis.svg │ │ │ │ │ ├── capsules.svg │ │ │ │ │ ├── car-alt.svg │ │ │ │ │ ├── car-battery.svg │ │ │ │ │ ├── car-crash.svg │ │ │ │ │ ├── car-side.svg │ │ │ │ │ ├── car.svg │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ ├── certificate.svg │ │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ │ ├── chalkboard.svg │ │ │ │ │ ├── charging-station.svg │ │ │ │ │ ├── chart-area.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chart-line.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-double.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ ├── chess-board.svg │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ ├── chess.svg │ │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── child.svg │ │ │ │ │ ├── church.svg │ │ │ │ │ ├── circle-notch.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── city.svg │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ ├── clipboard-list.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── cocktail.svg │ │ │ │ │ ├── code-branch.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── coffee.svg │ │ │ │ │ ├── cog.svg │ │ │ │ │ ├── cogs.svg │ │ │ │ │ ├── coins.svg │ │ │ │ │ ├── columns.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-dollar.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment-slash.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments-dollar.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── concierge-bell.svg │ │ │ │ │ ├── cookie-bite.svg │ │ │ │ │ ├── cookie.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── couch.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── crop-alt.svg │ │ │ │ │ ├── crop.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ ├── crow.svg │ │ │ │ │ ├── crown.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── cubes.svg │ │ │ │ │ ├── cut.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── deaf.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dharmachakra.svg │ │ │ │ │ ├── diagnoses.svg │ │ │ │ │ ├── dice-five.svg │ │ │ │ │ ├── dice-four.svg │ │ │ │ │ ├── dice-one.svg │ │ │ │ │ ├── dice-six.svg │ │ │ │ │ ├── dice-three.svg │ │ │ │ │ ├── dice-two.svg │ │ │ │ │ ├── dice.svg │ │ │ │ │ ├── digital-tachograph.svg │ │ │ │ │ ├── directions.svg │ │ │ │ │ ├── divide.svg │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ ├── dna.svg │ │ │ │ │ ├── dollar-sign.svg │ │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ │ ├── dolly.svg │ │ │ │ │ ├── donate.svg │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ ├── door-open.svg │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ ├── dove.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── drafting-compass.svg │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ ├── drum-steelpan.svg │ │ │ │ │ ├── drum.svg │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── eject.svg │ │ │ │ │ ├── ellipsis-h.svg │ │ │ │ │ ├── ellipsis-v.svg │ │ │ │ │ ├── envelope-open-text.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope-square.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── equals.svg │ │ │ │ │ ├── eraser.svg │ │ │ │ │ ├── euro-sign.svg │ │ │ │ │ ├── exchange-alt.svg │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── external-link-alt.svg │ │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ │ ├── eye-dropper.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── fast-backward.svg │ │ │ │ │ ├── fast-forward.svg │ │ │ │ │ ├── fax.svg │ │ │ │ │ ├── feather-alt.svg │ │ │ │ │ ├── feather.svg │ │ │ │ │ ├── female.svg │ │ │ │ │ ├── fighter-jet.svg │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-contract.svg │ │ │ │ │ ├── file-download.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-export.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-import.svg │ │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ │ ├── file-invoice.svg │ │ │ │ │ ├── file-medical-alt.svg │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-prescription.svg │ │ │ │ │ ├── file-signature.svg │ │ │ │ │ ├── file-upload.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── fill-drip.svg │ │ │ │ │ ├── fill.svg │ │ │ │ │ ├── film.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ │ ├── fire.svg │ │ │ │ │ ├── first-aid.svg │ │ │ │ │ ├── fish.svg │ │ │ │ │ ├── flag-checkered.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flask.svg │ │ │ │ │ ├── flushed.svg │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── football-ball.svg │ │ │ │ │ ├── forward.svg │ │ │ │ │ ├── frog.svg │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ ├── frown.svg │ │ │ │ │ ├── funnel-dollar.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gamepad.svg │ │ │ │ │ ├── gas-pump.svg │ │ │ │ │ ├── gavel.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── genderless.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ │ ├── glass-martini.svg │ │ │ │ │ ├── glasses.svg │ │ │ │ │ ├── globe-africa.svg │ │ │ │ │ ├── globe-americas.svg │ │ │ │ │ ├── globe-asia.svg │ │ │ │ │ ├── globe.svg │ │ │ │ │ ├── golf-ball.svg │ │ │ │ │ ├── gopuram.svg │ │ │ │ │ ├── graduation-cap.svg │ │ │ │ │ ├── greater-than-equal.svg │ │ │ │ │ ├── greater-than.svg │ │ │ │ │ ├── grimace.svg │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ ├── grin.svg │ │ │ │ │ ├── grip-horizontal.svg │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ ├── h-square.svg │ │ │ │ │ ├── hamsa.svg │ │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ │ ├── hand-holding.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hands-helping.svg │ │ │ │ │ ├── hands.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ ├── haykal.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── heading.svg │ │ │ │ │ ├── headphones-alt.svg │ │ │ │ │ ├── headphones.svg │ │ │ │ │ ├── headset.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── heartbeat.svg │ │ │ │ │ ├── helicopter.svg │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── hockey-puck.svg │ │ │ │ │ ├── home.svg │ │ │ │ │ ├── hospital-alt.svg │ │ │ │ │ ├── hospital-symbol.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hot-tub.svg │ │ │ │ │ ├── hotel.svg │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── i-cursor.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card-alt.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── inbox.svg │ │ │ │ │ ├── indent.svg │ │ │ │ │ ├── industry.svg │ │ │ │ │ ├── infinity.svg │ │ │ │ │ ├── info-circle.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── italic.svg │ │ │ │ │ ├── jedi.svg │ │ │ │ │ ├── joint.svg │ │ │ │ │ ├── journal-whills.svg │ │ │ │ │ ├── kaaba.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── khanda.svg │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ ├── kiss.svg │ │ │ │ │ ├── kiwi-bird.svg │ │ │ │ │ ├── landmark.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-code.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ ├── laugh.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── leaf.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── less-than-equal.svg │ │ │ │ │ ├── less-than.svg │ │ │ │ │ ├── level-down-alt.svg │ │ │ │ │ ├── level-up-alt.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── lira-sign.svg │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── list.svg │ │ │ │ │ ├── location-arrow.svg │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ │ ├── low-vision.svg │ │ │ │ │ ├── luggage-cart.svg │ │ │ │ │ ├── magic.svg │ │ │ │ │ ├── magnet.svg │ │ │ │ │ ├── mail-bulk.svg │ │ │ │ │ ├── male.svg │ │ │ │ │ ├── map-marked-alt.svg │ │ │ │ │ ├── map-marked.svg │ │ │ │ │ ├── map-marker-alt.svg │ │ │ │ │ ├── map-marker.svg │ │ │ │ │ ├── map-pin.svg │ │ │ │ │ ├── map-signs.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── marker.svg │ │ │ │ │ ├── mars-double.svg │ │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ │ ├── mars-stroke.svg │ │ │ │ │ ├── mars.svg │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── medkit.svg │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── memory.svg │ │ │ │ │ ├── menorah.svg │ │ │ │ │ ├── mercury.svg │ │ │ │ │ ├── microchip.svg │ │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ │ ├── microphone-alt.svg │ │ │ │ │ ├── microphone-slash.svg │ │ │ │ │ ├── microphone.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── minus-circle.svg │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── mobile-alt.svg │ │ │ │ │ ├── mobile.svg │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ │ ├── money-bill-wave.svg │ │ │ │ │ ├── money-bill.svg │ │ │ │ │ ├── money-check-alt.svg │ │ │ │ │ ├── money-check.svg │ │ │ │ │ ├── monument.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── mortar-pestle.svg │ │ │ │ │ ├── mosque.svg │ │ │ │ │ ├── motorcycle.svg │ │ │ │ │ ├── mouse-pointer.svg │ │ │ │ │ ├── music.svg │ │ │ │ │ ├── neuter.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── not-equal.svg │ │ │ │ │ ├── notes-medical.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── oil-can.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── outdent.svg │ │ │ │ │ ├── paint-brush.svg │ │ │ │ │ ├── paint-roller.svg │ │ │ │ │ ├── palette.svg │ │ │ │ │ ├── pallet.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── parachute-box.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── parking.svg │ │ │ │ │ ├── passport.svg │ │ │ │ │ ├── pastafarianism.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── paw.svg │ │ │ │ │ ├── peace.svg │ │ │ │ │ ├── pen-alt.svg │ │ │ │ │ ├── pen-fancy.svg │ │ │ │ │ ├── pen-nib.svg │ │ │ │ │ ├── pen-square.svg │ │ │ │ │ ├── pen.svg │ │ │ │ │ ├── pencil-alt.svg │ │ │ │ │ ├── pencil-ruler.svg │ │ │ │ │ ├── people-carry.svg │ │ │ │ │ ├── percent.svg │ │ │ │ │ ├── percentage.svg │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ ├── phone-square.svg │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ ├── pills.svg │ │ │ │ │ ├── place-of-worship.svg │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ ├── plane-departure.svg │ │ │ │ │ ├── plane.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── plug.svg │ │ │ │ │ ├── plus-circle.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── plus.svg │ │ │ │ │ ├── podcast.svg │ │ │ │ │ ├── poll-h.svg │ │ │ │ │ ├── poll.svg │ │ │ │ │ ├── poo.svg │ │ │ │ │ ├── poop.svg │ │ │ │ │ ├── portrait.svg │ │ │ │ │ ├── pound-sign.svg │ │ │ │ │ ├── power-off.svg │ │ │ │ │ ├── pray.svg │ │ │ │ │ ├── praying-hands.svg │ │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ │ ├── prescription-bottle.svg │ │ │ │ │ ├── prescription.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── procedures.svg │ │ │ │ │ ├── project-diagram.svg │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ ├── qrcode.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── question.svg │ │ │ │ │ ├── quidditch.svg │ │ │ │ │ ├── quote-left.svg │ │ │ │ │ ├── quote-right.svg │ │ │ │ │ ├── quran.svg │ │ │ │ │ ├── random.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── recycle.svg │ │ │ │ │ ├── redo-alt.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ ├── reply.svg │ │ │ │ │ ├── retweet.svg │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ ├── road.svg │ │ │ │ │ ├── robot.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── route.svg │ │ │ │ │ ├── rss-square.svg │ │ │ │ │ ├── rss.svg │ │ │ │ │ ├── ruble-sign.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ │ ├── ruler-vertical.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ ├── search-dollar.svg │ │ │ │ │ ├── search-location.svg │ │ │ │ │ ├── search-minus.svg │ │ │ │ │ ├── search-plus.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── seedling.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── shapes.svg │ │ │ │ │ ├── share-alt-square.svg │ │ │ │ │ ├── share-alt.svg │ │ │ │ │ ├── share-square.svg │ │ │ │ │ ├── share.svg │ │ │ │ │ ├── shekel-sign.svg │ │ │ │ │ ├── shield-alt.svg │ │ │ │ │ ├── ship.svg │ │ │ │ │ ├── shipping-fast.svg │ │ │ │ │ ├── shoe-prints.svg │ │ │ │ │ ├── shopping-bag.svg │ │ │ │ │ ├── shopping-basket.svg │ │ │ │ │ ├── shopping-cart.svg │ │ │ │ │ ├── shower.svg │ │ │ │ │ ├── shuttle-van.svg │ │ │ │ │ ├── sign-in-alt.svg │ │ │ │ │ ├── sign-language.svg │ │ │ │ │ ├── sign-out-alt.svg │ │ │ │ │ ├── sign.svg │ │ │ │ │ ├── signal.svg │ │ │ │ │ ├── signature.svg │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ ├── skull.svg │ │ │ │ │ ├── sliders-h.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── smoking-ban.svg │ │ │ │ │ ├── smoking.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── socks.svg │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ │ ├── sort-amount-down.svg │ │ │ │ │ ├── sort-amount-up.svg │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ ├── sort.svg │ │ │ │ │ ├── spa.svg │ │ │ │ │ ├── space-shuttle.svg │ │ │ │ │ ├── spinner.svg │ │ │ │ │ ├── splotch.svg │ │ │ │ │ ├── spray-can.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-root-alt.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── stamp.svg │ │ │ │ │ ├── star-and-crescent.svg │ │ │ │ │ ├── star-half-alt.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star-of-david.svg │ │ │ │ │ ├── star-of-life.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── step-backward.svg │ │ │ │ │ ├── step-forward.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── store-alt.svg │ │ │ │ │ ├── store.svg │ │ │ │ │ ├── stream.svg │ │ │ │ │ ├── street-view.svg │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ ├── stroopwafel.svg │ │ │ │ │ ├── subscript.svg │ │ │ │ │ ├── subway.svg │ │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── superscript.svg │ │ │ │ │ ├── surprise.svg │ │ │ │ │ ├── swatchbook.svg │ │ │ │ │ ├── swimmer.svg │ │ │ │ │ ├── swimming-pool.svg │ │ │ │ │ ├── synagogue.svg │ │ │ │ │ ├── sync-alt.svg │ │ │ │ │ ├── sync.svg │ │ │ │ │ ├── syringe.svg │ │ │ │ │ ├── table-tennis.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── tablet-alt.svg │ │ │ │ │ ├── tablet.svg │ │ │ │ │ ├── tablets.svg │ │ │ │ │ ├── tachometer-alt.svg │ │ │ │ │ ├── tag.svg │ │ │ │ │ ├── tags.svg │ │ │ │ │ ├── tape.svg │ │ │ │ │ ├── tasks.svg │ │ │ │ │ ├── taxi.svg │ │ │ │ │ ├── teeth-open.svg │ │ │ │ │ ├── teeth.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── text-height.svg │ │ │ │ │ ├── text-width.svg │ │ │ │ │ ├── th-large.svg │ │ │ │ │ ├── th-list.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── theater-masks.svg │ │ │ │ │ ├── thermometer-empty.svg │ │ │ │ │ ├── thermometer-full.svg │ │ │ │ │ ├── thermometer-half.svg │ │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thumbtack.svg │ │ │ │ │ ├── ticket-alt.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── times.svg │ │ │ │ │ ├── tint-slash.svg │ │ │ │ │ ├── tint.svg │ │ │ │ │ ├── tired.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ ├── tooth.svg │ │ │ │ │ ├── torah.svg │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ ├── trademark.svg │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ ├── train.svg │ │ │ │ │ ├── transgender-alt.svg │ │ │ │ │ ├── transgender.svg │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── tree.svg │ │ │ │ │ ├── trophy.svg │ │ │ │ │ ├── truck-loading.svg │ │ │ │ │ ├── truck-monster.svg │ │ │ │ │ ├── truck-moving.svg │ │ │ │ │ ├── truck-pickup.svg │ │ │ │ │ ├── truck.svg │ │ │ │ │ ├── tshirt.svg │ │ │ │ │ ├── tty.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── umbrella-beach.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── underline.svg │ │ │ │ │ ├── undo-alt.svg │ │ │ │ │ ├── undo.svg │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ ├── university.svg │ │ │ │ │ ├── unlink.svg │ │ │ │ │ ├── unlock-alt.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ ├── user-alt-slash.svg │ │ │ │ │ ├── user-alt.svg │ │ │ │ │ ├── user-astronaut.svg │ │ │ │ │ ├── user-check.svg │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ ├── user-clock.svg │ │ │ │ │ ├── user-cog.svg │ │ │ │ │ ├── user-edit.svg │ │ │ │ │ ├── user-friends.svg │ │ │ │ │ ├── user-graduate.svg │ │ │ │ │ ├── user-lock.svg │ │ │ │ │ ├── user-md.svg │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ ├── user-ninja.svg │ │ │ │ │ ├── user-plus.svg │ │ │ │ │ ├── user-secret.svg │ │ │ │ │ ├── user-shield.svg │ │ │ │ │ ├── user-slash.svg │ │ │ │ │ ├── user-tag.svg │ │ │ │ │ ├── user-tie.svg │ │ │ │ │ ├── user-times.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── users-cog.svg │ │ │ │ │ ├── users.svg │ │ │ │ │ ├── utensil-spoon.svg │ │ │ │ │ ├── utensils.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ ├── venus.svg │ │ │ │ │ ├── vial.svg │ │ │ │ │ ├── vials.svg │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── vihara.svg │ │ │ │ │ ├── volleyball-ball.svg │ │ │ │ │ ├── volume-down.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── volume-up.svg │ │ │ │ │ ├── walking.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── warehouse.svg │ │ │ │ │ ├── weight-hanging.svg │ │ │ │ │ ├── weight.svg │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── window-close.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ │ ├── wine-glass.svg │ │ │ │ │ ├── won-sign.svg │ │ │ │ │ ├── wrench.svg │ │ │ │ │ ├── x-ray.svg │ │ │ │ │ ├── yen-sign.svg │ │ │ │ │ └── yin-yang.svg │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── accordion │ │ │ ├── accordion.css │ │ │ ├── accordion.min.js │ │ │ └── jquery.accordion-wizard.min.js │ │ ├── amazeui-datetimepicker │ │ │ ├── css │ │ │ │ └── amazeui.datetimepicker.css │ │ │ └── js │ │ │ │ ├── amazeui.datetimepicker.min.js │ │ │ │ └── locales │ │ │ │ ├── amazeui.datetimepicker.ar.js │ │ │ │ ├── amazeui.datetimepicker.az.js │ │ │ │ ├── amazeui.datetimepicker.bg.js │ │ │ │ ├── amazeui.datetimepicker.bn.js │ │ │ │ ├── amazeui.datetimepicker.ca.js │ │ │ │ ├── amazeui.datetimepicker.cs.js │ │ │ │ ├── amazeui.datetimepicker.da.js │ │ │ │ ├── amazeui.datetimepicker.de.js │ │ │ │ ├── amazeui.datetimepicker.ee.js │ │ │ │ ├── amazeui.datetimepicker.el.js │ │ │ │ ├── amazeui.datetimepicker.es.js │ │ │ │ ├── amazeui.datetimepicker.fi.js │ │ │ │ ├── amazeui.datetimepicker.fr.js │ │ │ │ ├── amazeui.datetimepicker.he.js │ │ │ │ ├── amazeui.datetimepicker.hr.js │ │ │ │ ├── amazeui.datetimepicker.hu.js │ │ │ │ ├── amazeui.datetimepicker.hy.js │ │ │ │ ├── amazeui.datetimepicker.id.js │ │ │ │ ├── amazeui.datetimepicker.is.js │ │ │ │ ├── amazeui.datetimepicker.it.js │ │ │ │ ├── amazeui.datetimepicker.ja.js │ │ │ │ ├── amazeui.datetimepicker.ka.js │ │ │ │ ├── amazeui.datetimepicker.ko.js │ │ │ │ ├── amazeui.datetimepicker.lt.js │ │ │ │ ├── amazeui.datetimepicker.lv.js │ │ │ │ ├── amazeui.datetimepicker.ms.js │ │ │ │ ├── amazeui.datetimepicker.nb.js │ │ │ │ ├── amazeui.datetimepicker.nl.js │ │ │ │ ├── amazeui.datetimepicker.no.js │ │ │ │ ├── amazeui.datetimepicker.pl.js │ │ │ │ ├── amazeui.datetimepicker.pt-BR.js │ │ │ │ ├── amazeui.datetimepicker.pt.js │ │ │ │ ├── amazeui.datetimepicker.ro.js │ │ │ │ ├── amazeui.datetimepicker.rs-latin.js │ │ │ │ ├── amazeui.datetimepicker.rs.js │ │ │ │ ├── amazeui.datetimepicker.ru.js │ │ │ │ ├── amazeui.datetimepicker.sk.js │ │ │ │ ├── amazeui.datetimepicker.sl.js │ │ │ │ ├── amazeui.datetimepicker.sv.js │ │ │ │ ├── amazeui.datetimepicker.sw.js │ │ │ │ ├── amazeui.datetimepicker.th.js │ │ │ │ ├── amazeui.datetimepicker.tr.js │ │ │ │ ├── amazeui.datetimepicker.ua.js │ │ │ │ ├── amazeui.datetimepicker.uk.js │ │ │ │ ├── amazeui.datetimepicker.zh-CN.js │ │ │ │ └── amazeui.datetimepicker.zh-TW.js │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ │ ├── bootstrap-rtl.js │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ └── bootstrap.min.js │ │ ├── boxicons │ │ │ ├── LICENSE.txt │ │ │ ├── css │ │ │ │ ├── animations.css │ │ │ │ ├── boxicons.css │ │ │ │ ├── boxicons.min.css │ │ │ │ └── transformations.css │ │ │ ├── fonts │ │ │ │ ├── boxicons.eot │ │ │ │ ├── boxicons.svg │ │ │ │ ├── boxicons.ttf │ │ │ │ ├── boxicons.woff │ │ │ │ └── boxicons.woff2 │ │ │ └── svg │ │ │ │ ├── logos │ │ │ │ ├── bxl-500px.svg │ │ │ │ ├── bxl-adobe.svg │ │ │ │ ├── bxl-airbnb.svg │ │ │ │ ├── bxl-algolia.svg │ │ │ │ ├── bxl-amazon.svg │ │ │ │ ├── bxl-android.svg │ │ │ │ ├── bxl-angular.svg │ │ │ │ ├── bxl-apple.svg │ │ │ │ ├── bxl-audible.svg │ │ │ │ ├── bxl-baidu.svg │ │ │ │ ├── bxl-behance.svg │ │ │ │ ├── bxl-bing.svg │ │ │ │ ├── bxl-bitcoin.svg │ │ │ │ ├── bxl-blogger.svg │ │ │ │ ├── bxl-bootstrap.svg │ │ │ │ ├── bxl-chrome.svg │ │ │ │ ├── bxl-codepen.svg │ │ │ │ ├── bxl-creative-commons.svg │ │ │ │ ├── bxl-css3.svg │ │ │ │ ├── bxl-dailymotion.svg │ │ │ │ ├── bxl-dev-to.svg │ │ │ │ ├── bxl-deviantart.svg │ │ │ │ ├── bxl-digg.svg │ │ │ │ ├── bxl-digitalocean.svg │ │ │ │ ├── bxl-discord.svg │ │ │ │ ├── bxl-discourse.svg │ │ │ │ ├── bxl-dribbble.svg │ │ │ │ ├── bxl-dropbox.svg │ │ │ │ ├── bxl-drupal.svg │ │ │ │ ├── bxl-ebay.svg │ │ │ │ ├── bxl-edge.svg │ │ │ │ ├── bxl-etsy.svg │ │ │ │ ├── bxl-facebook-circle.svg │ │ │ │ ├── bxl-facebook-square.svg │ │ │ │ ├── bxl-facebook.svg │ │ │ │ ├── bxl-figma.svg │ │ │ │ ├── bxl-firefox.svg │ │ │ │ ├── bxl-flickr-square.svg │ │ │ │ ├── bxl-flickr.svg │ │ │ │ ├── bxl-foursquare.svg │ │ │ │ ├── bxl-git.svg │ │ │ │ ├── bxl-github.svg │ │ │ │ ├── bxl-gitlab.svg │ │ │ │ ├── bxl-google-plus-circle.svg │ │ │ │ ├── bxl-google-plus.svg │ │ │ │ ├── bxl-google.svg │ │ │ │ ├── bxl-html5.svg │ │ │ │ ├── bxl-imdb.svg │ │ │ │ ├── bxl-instagram-alt.svg │ │ │ │ ├── bxl-instagram.svg │ │ │ │ ├── bxl-internet-explorer.svg │ │ │ │ ├── bxl-invision.svg │ │ │ │ ├── bxl-javascript.svg │ │ │ │ ├── bxl-joomla.svg │ │ │ │ ├── bxl-jquery.svg │ │ │ │ ├── bxl-jsfiddle.svg │ │ │ │ ├── bxl-kickstarter.svg │ │ │ │ ├── bxl-less.svg │ │ │ │ ├── bxl-linkedin-square.svg │ │ │ │ ├── bxl-linkedin.svg │ │ │ │ ├── bxl-magento.svg │ │ │ │ ├── bxl-mailchimp.svg │ │ │ │ ├── bxl-mastercard.svg │ │ │ │ ├── bxl-medium-old.svg │ │ │ │ ├── bxl-medium-square.svg │ │ │ │ ├── bxl-medium.svg │ │ │ │ ├── bxl-messenger.svg │ │ │ │ ├── bxl-microsoft.svg │ │ │ │ ├── bxl-nodejs.svg │ │ │ │ ├── bxl-opera.svg │ │ │ │ ├── bxl-patreon.svg │ │ │ │ ├── bxl-paypal.svg │ │ │ │ ├── bxl-periscope.svg │ │ │ │ ├── bxl-pinterest-alt.svg │ │ │ │ ├── bxl-pinterest.svg │ │ │ │ ├── bxl-play-store.svg │ │ │ │ ├── bxl-pocket.svg │ │ │ │ ├── bxl-product-hunt.svg │ │ │ │ ├── bxl-quora.svg │ │ │ │ ├── bxl-react.svg │ │ │ │ ├── bxl-redbubble.svg │ │ │ │ ├── bxl-reddit.svg │ │ │ │ ├── bxl-redux.svg │ │ │ │ ├── bxl-sass.svg │ │ │ │ ├── bxl-shopify.svg │ │ │ │ ├── bxl-skype.svg │ │ │ │ ├── bxl-slack-old.svg │ │ │ │ ├── bxl-slack.svg │ │ │ │ ├── bxl-snapchat.svg │ │ │ │ ├── bxl-soundcloud.svg │ │ │ │ ├── bxl-spotify.svg │ │ │ │ ├── bxl-squarespace.svg │ │ │ │ ├── bxl-stack-overflow.svg │ │ │ │ ├── bxl-stripe.svg │ │ │ │ ├── bxl-telegram.svg │ │ │ │ ├── bxl-trello.svg │ │ │ │ ├── bxl-tumblr.svg │ │ │ │ ├── bxl-twitch.svg │ │ │ │ ├── bxl-twitter.svg │ │ │ │ ├── bxl-unsplash.svg │ │ │ │ ├── bxl-vimeo.svg │ │ │ │ ├── bxl-visa.svg │ │ │ │ ├── bxl-vk.svg │ │ │ │ ├── bxl-vuejs.svg │ │ │ │ ├── bxl-whatsapp-square.svg │ │ │ │ ├── bxl-whatsapp.svg │ │ │ │ ├── bxl-wikipedia.svg │ │ │ │ ├── bxl-windows.svg │ │ │ │ ├── bxl-wix.svg │ │ │ │ ├── bxl-wordpress.svg │ │ │ │ ├── bxl-yahoo.svg │ │ │ │ ├── bxl-yelp.svg │ │ │ │ └── bxl-youtube.svg │ │ │ │ ├── regular │ │ │ │ ├── bx-abacus.svg │ │ │ │ ├── bx-accessibility.svg │ │ │ │ ├── bx-add-to-queue.svg │ │ │ │ ├── bx-adjust.svg │ │ │ │ ├── bx-alarm-add.svg │ │ │ │ ├── bx-alarm-exclamation.svg │ │ │ │ ├── bx-alarm-off.svg │ │ │ │ ├── bx-alarm-snooze.svg │ │ │ │ ├── bx-alarm.svg │ │ │ │ ├── bx-album.svg │ │ │ │ ├── bx-align-justify.svg │ │ │ │ ├── bx-align-left.svg │ │ │ │ ├── bx-align-middle.svg │ │ │ │ ├── bx-align-right.svg │ │ │ │ ├── bx-analyse.svg │ │ │ │ ├── bx-anchor.svg │ │ │ │ ├── bx-angry.svg │ │ │ │ ├── bx-aperture.svg │ │ │ │ ├── bx-arch.svg │ │ │ │ ├── bx-archive-in.svg │ │ │ │ ├── bx-archive-out.svg │ │ │ │ ├── bx-archive.svg │ │ │ │ ├── bx-area.svg │ │ │ │ ├── bx-arrow-back.svg │ │ │ │ ├── bx-arrow-from-bottom.svg │ │ │ │ ├── bx-arrow-from-left.svg │ │ │ │ ├── bx-arrow-from-right.svg │ │ │ │ ├── bx-arrow-from-top.svg │ │ │ │ ├── bx-arrow-to-bottom.svg │ │ │ │ ├── bx-arrow-to-left.svg │ │ │ │ ├── bx-arrow-to-right.svg │ │ │ │ ├── bx-arrow-to-top.svg │ │ │ │ ├── bx-at.svg │ │ │ │ ├── bx-atom.svg │ │ │ │ ├── bx-award.svg │ │ │ │ ├── bx-badge-check.svg │ │ │ │ ├── bx-badge.svg │ │ │ │ ├── bx-ball.svg │ │ │ │ ├── bx-band-aid.svg │ │ │ │ ├── bx-bar-chart-alt-2.svg │ │ │ │ ├── bx-bar-chart-alt.svg │ │ │ │ ├── bx-bar-chart-square.svg │ │ │ │ ├── bx-bar-chart.svg │ │ │ │ ├── bx-barcode-reader.svg │ │ │ │ ├── bx-barcode.svg │ │ │ │ ├── bx-baseball .svg │ │ │ │ ├── bx-basket.svg │ │ │ │ ├── bx-basketball.svg │ │ │ │ ├── bx-bath.svg │ │ │ │ ├── bx-battery.svg │ │ │ │ ├── bx-bed.svg │ │ │ │ ├── bx-been-here.svg │ │ │ │ ├── bx-beer.svg │ │ │ │ ├── bx-bell-minus.svg │ │ │ │ ├── bx-bell-off.svg │ │ │ │ ├── bx-bell-plus.svg │ │ │ │ ├── bx-bell.svg │ │ │ │ ├── bx-bible.svg │ │ │ │ ├── bx-bitcoin.svg │ │ │ │ ├── bx-blanket.svg │ │ │ │ ├── bx-block.svg │ │ │ │ ├── bx-bluetooth.svg │ │ │ │ ├── bx-body.svg │ │ │ │ ├── bx-bold.svg │ │ │ │ ├── bx-bolt-circle.svg │ │ │ │ ├── bx-bomb.svg │ │ │ │ ├── bx-bone.svg │ │ │ │ ├── bx-bong.svg │ │ │ │ ├── bx-book-add.svg │ │ │ │ ├── bx-book-alt.svg │ │ │ │ ├── bx-book-bookmark.svg │ │ │ │ ├── bx-book-content.svg │ │ │ │ ├── bx-book-heart.svg │ │ │ │ ├── bx-book-open.svg │ │ │ │ ├── bx-book-reader.svg │ │ │ │ ├── bx-book.svg │ │ │ │ ├── bx-bookmark-minus.svg │ │ │ │ ├── bx-bookmark-plus.svg │ │ │ │ ├── bx-bookmark.svg │ │ │ │ ├── bx-bookmarks.svg │ │ │ │ ├── bx-border-all.svg │ │ │ │ ├── bx-border-bottom.svg │ │ │ │ ├── bx-border-inner.svg │ │ │ │ ├── bx-border-left.svg │ │ │ │ ├── bx-border-none.svg │ │ │ │ ├── bx-border-outer.svg │ │ │ │ ├── bx-border-radius.svg │ │ │ │ ├── bx-border-right.svg │ │ │ │ ├── bx-border-top.svg │ │ │ │ ├── bx-bot.svg │ │ │ │ ├── bx-bowling-ball.svg │ │ │ │ ├── bx-box.svg │ │ │ │ ├── bx-bracket.svg │ │ │ │ ├── bx-braille.svg │ │ │ │ ├── bx-brain.svg │ │ │ │ ├── bx-briefcase-alt-2.svg │ │ │ │ ├── bx-briefcase-alt.svg │ │ │ │ ├── bx-briefcase.svg │ │ │ │ ├── bx-brightness-half.svg │ │ │ │ ├── bx-brightness.svg │ │ │ │ ├── bx-broadcast.svg │ │ │ │ ├── bx-brush-alt.svg │ │ │ │ ├── bx-brush.svg │ │ │ │ ├── bx-bug-alt.svg │ │ │ │ ├── bx-bug.svg │ │ │ │ ├── bx-building-house.svg │ │ │ │ ├── bx-building.svg │ │ │ │ ├── bx-buildings.svg │ │ │ │ ├── bx-bulb.svg │ │ │ │ ├── bx-bullseye.svg │ │ │ │ ├── bx-buoy.svg │ │ │ │ ├── bx-bus-school.svg │ │ │ │ ├── bx-bus.svg │ │ │ │ ├── bx-cabinet.svg │ │ │ │ ├── bx-cake.svg │ │ │ │ ├── bx-calculator.svg │ │ │ │ ├── bx-calendar-alt.svg │ │ │ │ ├── bx-calendar-check.svg │ │ │ │ ├── bx-calendar-edit.svg │ │ │ │ ├── bx-calendar-event.svg │ │ │ │ ├── bx-calendar-exclamation.svg │ │ │ │ ├── bx-calendar-heart.svg │ │ │ │ ├── bx-calendar-minus.svg │ │ │ │ ├── bx-calendar-plus.svg │ │ │ │ ├── bx-calendar-star.svg │ │ │ │ ├── bx-calendar-week.svg │ │ │ │ ├── bx-calendar-x.svg │ │ │ │ ├── bx-calendar.svg │ │ │ │ ├── bx-camera-home.svg │ │ │ │ ├── bx-camera-movie.svg │ │ │ │ ├── bx-camera-off.svg │ │ │ │ ├── bx-camera.svg │ │ │ │ ├── bx-capsule.svg │ │ │ │ ├── bx-captions.svg │ │ │ │ ├── bx-car.svg │ │ │ │ ├── bx-card.svg │ │ │ │ ├── bx-caret-down-circle.svg │ │ │ │ ├── bx-caret-down-square.svg │ │ │ │ ├── bx-caret-down.svg │ │ │ │ ├── bx-caret-left-circle.svg │ │ │ │ ├── bx-caret-left-square.svg │ │ │ │ ├── bx-caret-left.svg │ │ │ │ ├── bx-caret-right-circle.svg │ │ │ │ ├── bx-caret-right-square.svg │ │ │ │ ├── bx-caret-right.svg │ │ │ │ ├── bx-caret-up-circle.svg │ │ │ │ ├── bx-caret-up-square.svg │ │ │ │ ├── bx-caret-up.svg │ │ │ │ ├── bx-carousel.svg │ │ │ │ ├── bx-cart-alt.svg │ │ │ │ ├── bx-cart.svg │ │ │ │ ├── bx-cast.svg │ │ │ │ ├── bx-cctv.svg │ │ │ │ ├── bx-certification.svg │ │ │ │ ├── bx-chair.svg │ │ │ │ ├── bx-chalkboard.svg │ │ │ │ ├── bx-chart.svg │ │ │ │ ├── bx-chat.svg │ │ │ │ ├── bx-check-circle.svg │ │ │ │ ├── bx-check-double.svg │ │ │ │ ├── bx-check-shield.svg │ │ │ │ ├── bx-check-square.svg │ │ │ │ ├── bx-check.svg │ │ │ │ ├── bx-checkbox-checked.svg │ │ │ │ ├── bx-checkbox-square.svg │ │ │ │ ├── bx-checkbox.svg │ │ │ │ ├── bx-chevron-down-circle.svg │ │ │ │ ├── bx-chevron-down-square.svg │ │ │ │ ├── bx-chevron-down.svg │ │ │ │ ├── bx-chevron-left-circle.svg │ │ │ │ ├── bx-chevron-left-square.svg │ │ │ │ ├── bx-chevron-left.svg │ │ │ │ ├── bx-chevron-right-circle.svg │ │ │ │ ├── bx-chevron-right-square.svg │ │ │ │ ├── bx-chevron-right.svg │ │ │ │ ├── bx-chevron-up-circle.svg │ │ │ │ ├── bx-chevron-up-square.svg │ │ │ │ ├── bx-chevron-up.svg │ │ │ │ ├── bx-chevrons-down.svg │ │ │ │ ├── bx-chevrons-left.svg │ │ │ │ ├── bx-chevrons-right.svg │ │ │ │ ├── bx-chevrons-up.svg │ │ │ │ ├── bx-chip.svg │ │ │ │ ├── bx-church.svg │ │ │ │ ├── bx-circle.svg │ │ │ │ ├── bx-clinic.svg │ │ │ │ ├── bx-clipboard.svg │ │ │ │ ├── bx-closet.svg │ │ │ │ ├── bx-cloud-download.svg │ │ │ │ ├── bx-cloud-drizzle.svg │ │ │ │ ├── bx-cloud-light-rain.svg │ │ │ │ ├── bx-cloud-lightning.svg │ │ │ │ ├── bx-cloud-rain.svg │ │ │ │ ├── bx-cloud-snow.svg │ │ │ │ ├── bx-cloud-upload.svg │ │ │ │ ├── bx-cloud.svg │ │ │ │ ├── bx-code-alt.svg │ │ │ │ ├── bx-code-block.svg │ │ │ │ ├── bx-code-curly.svg │ │ │ │ ├── bx-code.svg │ │ │ │ ├── bx-coffee-togo.svg │ │ │ │ ├── bx-coffee.svg │ │ │ │ ├── bx-cog.svg │ │ │ │ ├── bx-coin-stack.svg │ │ │ │ ├── bx-coin.svg │ │ │ │ ├── bx-collapse.svg │ │ │ │ ├── bx-collection.svg │ │ │ │ ├── bx-color-fill.svg │ │ │ │ ├── bx-columns.svg │ │ │ │ ├── bx-command.svg │ │ │ │ ├── bx-comment-add.svg │ │ │ │ ├── bx-comment-check.svg │ │ │ │ ├── bx-comment-detail.svg │ │ │ │ ├── bx-comment-dots.svg │ │ │ │ ├── bx-comment-edit.svg │ │ │ │ ├── bx-comment-error.svg │ │ │ │ ├── bx-comment-minus.svg │ │ │ │ ├── bx-comment-x.svg │ │ │ │ ├── bx-comment.svg │ │ │ │ ├── bx-compass.svg │ │ │ │ ├── bx-confused.svg │ │ │ │ ├── bx-conversation.svg │ │ │ │ ├── bx-cookie.svg │ │ │ │ ├── bx-cool.svg │ │ │ │ ├── bx-copy-alt.svg │ │ │ │ ├── bx-copy.svg │ │ │ │ ├── bx-copyright.svg │ │ │ │ ├── bx-credit-card-alt.svg │ │ │ │ ├── bx-credit-card-front.svg │ │ │ │ ├── bx-credit-card.svg │ │ │ │ ├── bx-crop.svg │ │ │ │ ├── bx-crosshair.svg │ │ │ │ ├── bx-crown.svg │ │ │ │ ├── bx-cube-alt.svg │ │ │ │ ├── bx-cube.svg │ │ │ │ ├── bx-cuboid.svg │ │ │ │ ├── bx-current-location.svg │ │ │ │ ├── bx-customize.svg │ │ │ │ ├── bx-cut.svg │ │ │ │ ├── bx-cycling.svg │ │ │ │ ├── bx-cylinder.svg │ │ │ │ ├── bx-data.svg │ │ │ │ ├── bx-desktop.svg │ │ │ │ ├── bx-detail.svg │ │ │ │ ├── bx-devices.svg │ │ │ │ ├── bx-dialpad-alt.svg │ │ │ │ ├── bx-dialpad.svg │ │ │ │ ├── bx-diamond.svg │ │ │ │ ├── bx-dice-1.svg │ │ │ │ ├── bx-dice-2.svg │ │ │ │ ├── bx-dice-3.svg │ │ │ │ ├── bx-dice-4.svg │ │ │ │ ├── bx-dice-5.svg │ │ │ │ ├── bx-dice-6.svg │ │ │ │ ├── bx-directions.svg │ │ │ │ ├── bx-disc.svg │ │ │ │ ├── bx-dish.svg │ │ │ │ ├── bx-dislike.svg │ │ │ │ ├── bx-dizzy.svg │ │ │ │ ├── bx-dna.svg │ │ │ │ ├── bx-dock-bottom.svg │ │ │ │ ├── bx-dock-left.svg │ │ │ │ ├── bx-dock-right.svg │ │ │ │ ├── bx-dock-top.svg │ │ │ │ ├── bx-dollar-circle.svg │ │ │ │ ├── bx-dollar.svg │ │ │ │ ├── bx-donate-blood.svg │ │ │ │ ├── bx-donate-heart.svg │ │ │ │ ├── bx-door-open.svg │ │ │ │ ├── bx-dots-horizontal-rounded.svg │ │ │ │ ├── bx-dots-horizontal.svg │ │ │ │ ├── bx-dots-vertical-rounded.svg │ │ │ │ ├── bx-dots-vertical.svg │ │ │ │ ├── bx-doughnut-chart.svg │ │ │ │ ├── bx-down-arrow-alt.svg │ │ │ │ ├── bx-down-arrow-circle.svg │ │ │ │ ├── bx-down-arrow.svg │ │ │ │ ├── bx-download.svg │ │ │ │ ├── bx-downvote.svg │ │ │ │ ├── bx-drink.svg │ │ │ │ ├── bx-droplet.svg │ │ │ │ ├── bx-dumbbell.svg │ │ │ │ ├── bx-duplicate.svg │ │ │ │ ├── bx-edit-alt.svg │ │ │ │ ├── bx-edit.svg │ │ │ │ ├── bx-envelope-open.svg │ │ │ │ ├── bx-envelope.svg │ │ │ │ ├── bx-equalizer.svg │ │ │ │ ├── bx-eraser.svg │ │ │ │ ├── bx-error-alt.svg │ │ │ │ ├── bx-error-circle.svg │ │ │ │ ├── bx-error.svg │ │ │ │ ├── bx-euro.svg │ │ │ │ ├── bx-exclude.svg │ │ │ │ ├── bx-exit-fullscreen.svg │ │ │ │ ├── bx-exit.svg │ │ │ │ ├── bx-expand.svg │ │ │ │ ├── bx-export.svg │ │ │ │ ├── bx-extension.svg │ │ │ │ ├── bx-face.svg │ │ │ │ ├── bx-fast-forward-circle.svg │ │ │ │ ├── bx-fast-forward.svg │ │ │ │ ├── bx-female-sign.svg │ │ │ │ ├── bx-female.svg │ │ │ │ ├── bx-file-blank.svg │ │ │ │ ├── bx-file-find.svg │ │ │ │ ├── bx-file.svg │ │ │ │ ├── bx-film.svg │ │ │ │ ├── bx-filter-alt.svg │ │ │ │ ├── bx-filter.svg │ │ │ │ ├── bx-fingerprint.svg │ │ │ │ ├── bx-first-aid.svg │ │ │ │ ├── bx-first-page.svg │ │ │ │ ├── bx-flag.svg │ │ │ │ ├── bx-folder-minus.svg │ │ │ │ ├── bx-folder-open.svg │ │ │ │ ├── bx-folder-plus.svg │ │ │ │ ├── bx-folder.svg │ │ │ │ ├── bx-font-color.svg │ │ │ │ ├── bx-font-family.svg │ │ │ │ ├── bx-font-size.svg │ │ │ │ ├── bx-font.svg │ │ │ │ ├── bx-food-menu.svg │ │ │ │ ├── bx-food-tag.svg │ │ │ │ ├── bx-football.svg │ │ │ │ ├── bx-fridge.svg │ │ │ │ ├── bx-fullscreen.svg │ │ │ │ ├── bx-game.svg │ │ │ │ ├── bx-gas-pump.svg │ │ │ │ ├── bx-ghost.svg │ │ │ │ ├── bx-gift.svg │ │ │ │ ├── bx-git-branch.svg │ │ │ │ ├── bx-git-commit.svg │ │ │ │ ├── bx-git-compare.svg │ │ │ │ ├── bx-git-merge.svg │ │ │ │ ├── bx-git-pull-request.svg │ │ │ │ ├── bx-git-repo-forked.svg │ │ │ │ ├── bx-glasses-alt.svg │ │ │ │ ├── bx-glasses.svg │ │ │ │ ├── bx-globe-alt.svg │ │ │ │ ├── bx-globe.svg │ │ │ │ ├── bx-grid-alt.svg │ │ │ │ ├── bx-grid-horizontal.svg │ │ │ │ ├── bx-grid-small.svg │ │ │ │ ├── bx-grid-vertical.svg │ │ │ │ ├── bx-grid.svg │ │ │ │ ├── bx-group.svg │ │ │ │ ├── bx-handicap.svg │ │ │ │ ├── bx-happy-alt.svg │ │ │ │ ├── bx-happy-beaming.svg │ │ │ │ ├── bx-happy-heart-eyes.svg │ │ │ │ ├── bx-happy.svg │ │ │ │ ├── bx-hash.svg │ │ │ │ ├── bx-hdd.svg │ │ │ │ ├── bx-heading.svg │ │ │ │ ├── bx-headphone.svg │ │ │ │ ├── bx-health.svg │ │ │ │ ├── bx-heart-circle.svg │ │ │ │ ├── bx-heart-square.svg │ │ │ │ ├── bx-heart.svg │ │ │ │ ├── bx-help-circle.svg │ │ │ │ ├── bx-hide.svg │ │ │ │ ├── bx-highlight.svg │ │ │ │ ├── bx-history.svg │ │ │ │ ├── bx-hive.svg │ │ │ │ ├── bx-home-alt.svg │ │ │ │ ├── bx-home-circle.svg │ │ │ │ ├── bx-home-heart.svg │ │ │ │ ├── bx-home-smile.svg │ │ │ │ ├── bx-home.svg │ │ │ │ ├── bx-horizontal-center.svg │ │ │ │ ├── bx-hotel.svg │ │ │ │ ├── bx-hourglass.svg │ │ │ │ ├── bx-id-card.svg │ │ │ │ ├── bx-image-add.svg │ │ │ │ ├── bx-image-alt.svg │ │ │ │ ├── bx-image.svg │ │ │ │ ├── bx-images.svg │ │ │ │ ├── bx-import.svg │ │ │ │ ├── bx-infinite.svg │ │ │ │ ├── bx-info-circle.svg │ │ │ │ ├── bx-info-square.svg │ │ │ │ ├── bx-intersect.svg │ │ │ │ ├── bx-italic.svg │ │ │ │ ├── bx-joystick-alt.svg │ │ │ │ ├── bx-joystick-button.svg │ │ │ │ ├── bx-joystick.svg │ │ │ │ ├── bx-key.svg │ │ │ │ ├── bx-label.svg │ │ │ │ ├── bx-landscape.svg │ │ │ │ ├── bx-laptop.svg │ │ │ │ ├── bx-last-page.svg │ │ │ │ ├── bx-laugh.svg │ │ │ │ ├── bx-layer-minus.svg │ │ │ │ ├── bx-layer-plus.svg │ │ │ │ ├── bx-layer.svg │ │ │ │ ├── bx-layout.svg │ │ │ │ ├── bx-left-arrow-alt.svg │ │ │ │ ├── bx-left-arrow-circle.svg │ │ │ │ ├── bx-left-arrow.svg │ │ │ │ ├── bx-left-down-arrow-circle.svg │ │ │ │ ├── bx-left-indent.svg │ │ │ │ ├── bx-left-top-arrow-circle.svg │ │ │ │ ├── bx-like.svg │ │ │ │ ├── bx-line-chart-down.svg │ │ │ │ ├── bx-line-chart.svg │ │ │ │ ├── bx-link-alt.svg │ │ │ │ ├── bx-link-external.svg │ │ │ │ ├── bx-link.svg │ │ │ │ ├── bx-lira.svg │ │ │ │ ├── bx-list-check.svg │ │ │ │ ├── bx-list-minus.svg │ │ │ │ ├── bx-list-ol.svg │ │ │ │ ├── bx-list-plus.svg │ │ │ │ ├── bx-list-ul.svg │ │ │ │ ├── bx-loader-alt.svg │ │ │ │ ├── bx-loader-circle.svg │ │ │ │ ├── bx-loader.svg │ │ │ │ ├── bx-location-plus.svg │ │ │ │ ├── bx-lock-alt.svg │ │ │ │ ├── bx-lock-open-alt.svg │ │ │ │ ├── bx-lock-open.svg │ │ │ │ ├── bx-lock.svg │ │ │ │ ├── bx-log-in-circle.svg │ │ │ │ ├── bx-log-in.svg │ │ │ │ ├── bx-log-out-circle.svg │ │ │ │ ├── bx-log-out.svg │ │ │ │ ├── bx-low-vision.svg │ │ │ │ ├── bx-magnet.svg │ │ │ │ ├── bx-mail-send.svg │ │ │ │ ├── bx-male-sign.svg │ │ │ │ ├── bx-male.svg │ │ │ │ ├── bx-map-alt.svg │ │ │ │ ├── bx-map-pin.svg │ │ │ │ ├── bx-map.svg │ │ │ │ ├── bx-mask.svg │ │ │ │ ├── bx-medal.svg │ │ │ │ ├── bx-meh-alt.svg │ │ │ │ ├── bx-meh-blank.svg │ │ │ │ ├── bx-meh.svg │ │ │ │ ├── bx-memory-card.svg │ │ │ │ ├── bx-menu-alt-left.svg │ │ │ │ ├── bx-menu-alt-right.svg │ │ │ │ ├── bx-menu.svg │ │ │ │ ├── bx-merge.svg │ │ │ │ ├── bx-message-add.svg │ │ │ │ ├── bx-message-alt-add.svg │ │ │ │ ├── bx-message-alt-check.svg │ │ │ │ ├── bx-message-alt-detail.svg │ │ │ │ ├── bx-message-alt-dots.svg │ │ │ │ ├── bx-message-alt-edit.svg │ │ │ │ ├── bx-message-alt-error.svg │ │ │ │ ├── bx-message-alt-minus.svg │ │ │ │ ├── bx-message-alt-x.svg │ │ │ │ ├── bx-message-alt.svg │ │ │ │ ├── bx-message-check.svg │ │ │ │ ├── bx-message-detail.svg │ │ │ │ ├── bx-message-dots.svg │ │ │ │ ├── bx-message-edit.svg │ │ │ │ ├── bx-message-error.svg │ │ │ │ ├── bx-message-minus.svg │ │ │ │ ├── bx-message-rounded-add.svg │ │ │ │ ├── bx-message-rounded-check.svg │ │ │ │ ├── bx-message-rounded-detail.svg │ │ │ │ ├── bx-message-rounded-dots.svg │ │ │ │ ├── bx-message-rounded-edit.svg │ │ │ │ ├── bx-message-rounded-error.svg │ │ │ │ ├── bx-message-rounded-minus.svg │ │ │ │ ├── bx-message-rounded-x.svg │ │ │ │ ├── bx-message-rounded.svg │ │ │ │ ├── bx-message-square-add.svg │ │ │ │ ├── bx-message-square-check.svg │ │ │ │ ├── bx-message-square-detail.svg │ │ │ │ ├── bx-message-square-dots.svg │ │ │ │ ├── bx-message-square-edit.svg │ │ │ │ ├── bx-message-square-error.svg │ │ │ │ ├── bx-message-square-minus.svg │ │ │ │ ├── bx-message-square-x.svg │ │ │ │ ├── bx-message-square.svg │ │ │ │ ├── bx-message-x.svg │ │ │ │ ├── bx-message.svg │ │ │ │ ├── bx-meteor.svg │ │ │ │ ├── bx-microchip.svg │ │ │ │ ├── bx-microphone-off.svg │ │ │ │ ├── bx-microphone.svg │ │ │ │ ├── bx-minus-back.svg │ │ │ │ ├── bx-minus-circle.svg │ │ │ │ ├── bx-minus-front.svg │ │ │ │ ├── bx-minus.svg │ │ │ │ ├── bx-mobile-alt.svg │ │ │ │ ├── bx-mobile-landscape.svg │ │ │ │ ├── bx-mobile-vibration.svg │ │ │ │ ├── bx-mobile.svg │ │ │ │ ├── bx-money.svg │ │ │ │ ├── bx-moon.svg │ │ │ │ ├── bx-mouse-alt.svg │ │ │ │ ├── bx-mouse.svg │ │ │ │ ├── bx-move-horizontal.svg │ │ │ │ ├── bx-move-vertical.svg │ │ │ │ ├── bx-move.svg │ │ │ │ ├── bx-movie.svg │ │ │ │ ├── bx-music.svg │ │ │ │ ├── bx-navigation.svg │ │ │ │ ├── bx-network-chart.svg │ │ │ │ ├── bx-news.svg │ │ │ │ ├── bx-no-entry.svg │ │ │ │ ├── bx-note.svg │ │ │ │ ├── bx-notepad.svg │ │ │ │ ├── bx-notification-off.svg │ │ │ │ ├── bx-notification.svg │ │ │ │ ├── bx-outline.svg │ │ │ │ ├── bx-package.svg │ │ │ │ ├── bx-paint-roll.svg │ │ │ │ ├── bx-paint.svg │ │ │ │ ├── bx-palette.svg │ │ │ │ ├── bx-paper-plane.svg │ │ │ │ ├── bx-paperclip.svg │ │ │ │ ├── bx-paragraph.svg │ │ │ │ ├── bx-paste.svg │ │ │ │ ├── bx-pause-circle.svg │ │ │ │ ├── bx-pause.svg │ │ │ │ ├── bx-pen.svg │ │ │ │ ├── bx-pencil.svg │ │ │ │ ├── bx-phone-call.svg │ │ │ │ ├── bx-phone-incoming.svg │ │ │ │ ├── bx-phone-outgoing.svg │ │ │ │ ├── bx-phone.svg │ │ │ │ ├── bx-photo-album.svg │ │ │ │ ├── bx-pie-chart-alt-2.svg │ │ │ │ ├── bx-pie-chart-alt.svg │ │ │ │ ├── bx-pie-chart.svg │ │ │ │ ├── bx-pin.svg │ │ │ │ ├── bx-planet.svg │ │ │ │ ├── bx-play-circle.svg │ │ │ │ ├── bx-play.svg │ │ │ │ ├── bx-plug.svg │ │ │ │ ├── bx-plus-circle.svg │ │ │ │ ├── bx-plus-medical.svg │ │ │ │ ├── bx-plus.svg │ │ │ │ ├── bx-pointer.svg │ │ │ │ ├── bx-poll.svg │ │ │ │ ├── bx-polygon.svg │ │ │ │ ├── bx-pound.svg │ │ │ │ ├── bx-power-off.svg │ │ │ │ ├── bx-printer.svg │ │ │ │ ├── bx-pulse.svg │ │ │ │ ├── bx-purchase-tag-alt.svg │ │ │ │ ├── bx-purchase-tag.svg │ │ │ │ ├── bx-pyramid.svg │ │ │ │ ├── bx-question-mark.svg │ │ │ │ ├── bx-radar.svg │ │ │ │ ├── bx-radio-circle-marked.svg │ │ │ │ ├── bx-radio-circle.svg │ │ │ │ ├── bx-radio.svg │ │ │ │ ├── bx-receipt.svg │ │ │ │ ├── bx-rectangle.svg │ │ │ │ ├── bx-recycle.svg │ │ │ │ ├── bx-redo.svg │ │ │ │ ├── bx-refresh.svg │ │ │ │ ├── bx-rename.svg │ │ │ │ ├── bx-repeat.svg │ │ │ │ ├── bx-reply-all.svg │ │ │ │ ├── bx-reply.svg │ │ │ │ ├── bx-repost.svg │ │ │ │ ├── bx-reset.svg │ │ │ │ ├── bx-restaurant.svg │ │ │ │ ├── bx-revision.svg │ │ │ │ ├── bx-rewind-circle.svg │ │ │ │ ├── bx-rewind.svg │ │ │ │ ├── bx-right-arrow-alt.svg │ │ │ │ ├── bx-right-arrow-circle.svg │ │ │ │ ├── bx-right-arrow.svg │ │ │ │ ├── bx-right-down-arrow-circle.svg │ │ │ │ ├── bx-right-indent.svg │ │ │ │ ├── bx-right-top-arrow-circle.svg │ │ │ │ ├── bx-rocket.svg │ │ │ │ ├── bx-rotate-left.svg │ │ │ │ ├── bx-rotate-right.svg │ │ │ │ ├── bx-rss.svg │ │ │ │ ├── bx-ruble.svg │ │ │ │ ├── bx-ruler.svg │ │ │ │ ├── bx-run.svg │ │ │ │ ├── bx-rupee.svg │ │ │ │ ├── bx-sad.svg │ │ │ │ ├── bx-save.svg │ │ │ │ ├── bx-scan.svg │ │ │ │ ├── bx-screenshot.svg │ │ │ │ ├── bx-search-alt-2.svg │ │ │ │ ├── bx-search-alt.svg │ │ │ │ ├── bx-search.svg │ │ │ │ ├── bx-select-multiple.svg │ │ │ │ ├── bx-selection.svg │ │ │ │ ├── bx-send.svg │ │ │ │ ├── bx-server.svg │ │ │ │ ├── bx-shape-circle.svg │ │ │ │ ├── bx-shape-polygon.svg │ │ │ │ ├── bx-shape-square.svg │ │ │ │ ├── bx-shape-triangle.svg │ │ │ │ ├── bx-share-alt.svg │ │ │ │ ├── bx-share.svg │ │ │ │ ├── bx-shekel.svg │ │ │ │ ├── bx-shield-alt-2.svg │ │ │ │ ├── bx-shield-alt.svg │ │ │ │ ├── bx-shield-quarter.svg │ │ │ │ ├── bx-shield-x.svg │ │ │ │ ├── bx-shield.svg │ │ │ │ ├── bx-shocked.svg │ │ │ │ ├── bx-shopping-bag.svg │ │ │ │ ├── bx-show-alt.svg │ │ │ │ ├── bx-show.svg │ │ │ │ ├── bx-shuffle.svg │ │ │ │ ├── bx-sidebar.svg │ │ │ │ ├── bx-sitemap.svg │ │ │ │ ├── bx-skip-next-circle.svg │ │ │ │ ├── bx-skip-next.svg │ │ │ │ ├── bx-skip-previous-circle.svg │ │ │ │ ├── bx-skip-previous.svg │ │ │ │ ├── bx-sleepy.svg │ │ │ │ ├── bx-slider-alt.svg │ │ │ │ ├── bx-slider.svg │ │ │ │ ├── bx-slideshow.svg │ │ │ │ ├── bx-smile.svg │ │ │ │ ├── bx-sort-a-z.svg │ │ │ │ ├── bx-sort-down.svg │ │ │ │ ├── bx-sort-up.svg │ │ │ │ ├── bx-sort-z-a.svg │ │ │ │ ├── bx-sort.svg │ │ │ │ ├── bx-spa.svg │ │ │ │ ├── bx-space-bar.svg │ │ │ │ ├── bx-spray-can.svg │ │ │ │ ├── bx-spreadsheet.svg │ │ │ │ ├── bx-square-rounded.svg │ │ │ │ ├── bx-square.svg │ │ │ │ ├── bx-star.svg │ │ │ │ ├── bx-station.svg │ │ │ │ ├── bx-stats.svg │ │ │ │ ├── bx-sticker.svg │ │ │ │ ├── bx-stop-circle.svg │ │ │ │ ├── bx-stop.svg │ │ │ │ ├── bx-stopwatch.svg │ │ │ │ ├── bx-store-alt.svg │ │ │ │ ├── bx-store.svg │ │ │ │ ├── bx-street-view.svg │ │ │ │ ├── bx-strikethrough.svg │ │ │ │ ├── bx-subdirectory-left.svg │ │ │ │ ├── bx-subdirectory-right.svg │ │ │ │ ├── bx-sun.svg │ │ │ │ ├── bx-support.svg │ │ │ │ ├── bx-swim.svg │ │ │ │ ├── bx-sync.svg │ │ │ │ ├── bx-tab.svg │ │ │ │ ├── bx-table.svg │ │ │ │ ├── bx-tachometer.svg │ │ │ │ ├── bx-tag.svg │ │ │ │ ├── bx-target-lock.svg │ │ │ │ ├── bx-task-x.svg │ │ │ │ ├── bx-task.svg │ │ │ │ ├── bx-taxi.svg │ │ │ │ ├── bx-tennis-ball.svg │ │ │ │ ├── bx-terminal.svg │ │ │ │ ├── bx-test-tube.svg │ │ │ │ ├── bx-text.svg │ │ │ │ ├── bx-time-five.svg │ │ │ │ ├── bx-time.svg │ │ │ │ ├── bx-timer.svg │ │ │ │ ├── bx-tired.svg │ │ │ │ ├── bx-toggle-left.svg │ │ │ │ ├── bx-toggle-right.svg │ │ │ │ ├── bx-tone.svg │ │ │ │ ├── bx-traffic-cone.svg │ │ │ │ ├── bx-train.svg │ │ │ │ ├── bx-transfer-alt.svg │ │ │ │ ├── bx-transfer.svg │ │ │ │ ├── bx-trash-alt.svg │ │ │ │ ├── bx-trash.svg │ │ │ │ ├── bx-trending-down.svg │ │ │ │ ├── bx-trending-up.svg │ │ │ │ ├── bx-trim.svg │ │ │ │ ├── bx-trophy.svg │ │ │ │ ├── bx-tv.svg │ │ │ │ ├── bx-underline.svg │ │ │ │ ├── bx-undo.svg │ │ │ │ ├── bx-unite.svg │ │ │ │ ├── bx-unlink.svg │ │ │ │ ├── bx-up-arrow-alt.svg │ │ │ │ ├── bx-up-arrow-circle.svg │ │ │ │ ├── bx-up-arrow.svg │ │ │ │ ├── bx-upload.svg │ │ │ │ ├── bx-upside-down.svg │ │ │ │ ├── bx-upvote.svg │ │ │ │ ├── bx-usb.svg │ │ │ │ ├── bx-user-check.svg │ │ │ │ ├── bx-user-circle.svg │ │ │ │ ├── bx-user-minus.svg │ │ │ │ ├── bx-user-pin.svg │ │ │ │ ├── bx-user-plus.svg │ │ │ │ ├── bx-user-voice.svg │ │ │ │ ├── bx-user-x.svg │ │ │ │ ├── bx-user.svg │ │ │ │ ├── bx-vector.svg │ │ │ │ ├── bx-vertical-center.svg │ │ │ │ ├── bx-vial.svg │ │ │ │ ├── bx-video-off.svg │ │ │ │ ├── bx-video-plus.svg │ │ │ │ ├── bx-video-recording.svg │ │ │ │ ├── bx-video.svg │ │ │ │ ├── bx-voicemail.svg │ │ │ │ ├── bx-volume-full.svg │ │ │ │ ├── bx-volume-low.svg │ │ │ │ ├── bx-volume-mute.svg │ │ │ │ ├── bx-volume.svg │ │ │ │ ├── bx-walk.svg │ │ │ │ ├── bx-wallet-alt.svg │ │ │ │ ├── bx-wallet.svg │ │ │ │ ├── bx-water.svg │ │ │ │ ├── bx-webcam.svg │ │ │ │ ├── bx-wifi-0.svg │ │ │ │ ├── bx-wifi-1.svg │ │ │ │ ├── bx-wifi-2.svg │ │ │ │ ├── bx-wifi-off.svg │ │ │ │ ├── bx-wifi.svg │ │ │ │ ├── bx-wind.svg │ │ │ │ ├── bx-window-alt.svg │ │ │ │ ├── bx-window-close.svg │ │ │ │ ├── bx-window-open.svg │ │ │ │ ├── bx-window.svg │ │ │ │ ├── bx-windows.svg │ │ │ │ ├── bx-wine.svg │ │ │ │ ├── bx-wink-smile.svg │ │ │ │ ├── bx-wink-tongue.svg │ │ │ │ ├── bx-won.svg │ │ │ │ ├── bx-world.svg │ │ │ │ ├── bx-wrench.svg │ │ │ │ ├── bx-x-circle.svg │ │ │ │ ├── bx-x.svg │ │ │ │ ├── bx-yen.svg │ │ │ │ ├── bx-zoom-in.svg │ │ │ │ └── bx-zoom-out.svg │ │ │ │ └── solid │ │ │ │ ├── bxs-add-to-queue.svg │ │ │ │ ├── bxs-adjust-alt.svg │ │ │ │ ├── bxs-adjust.svg │ │ │ │ ├── bxs-alarm-add.svg │ │ │ │ ├── bxs-alarm-exclamation.svg │ │ │ │ ├── bxs-alarm-off.svg │ │ │ │ ├── bxs-alarm-snooze.svg │ │ │ │ ├── bxs-alarm.svg │ │ │ │ ├── bxs-album.svg │ │ │ │ ├── bxs-ambulance.svg │ │ │ │ ├── bxs-analyse.svg │ │ │ │ ├── bxs-angry.svg │ │ │ │ ├── bxs-arch.svg │ │ │ │ ├── bxs-archive-in.svg │ │ │ │ ├── bxs-archive-out.svg │ │ │ │ ├── bxs-archive.svg │ │ │ │ ├── bxs-area.svg │ │ │ │ ├── bxs-arrow-from-bottom.svg │ │ │ │ ├── bxs-arrow-from-left.svg │ │ │ │ ├── bxs-arrow-from-right.svg │ │ │ │ ├── bxs-arrow-from-top.svg │ │ │ │ ├── bxs-arrow-to-bottom.svg │ │ │ │ ├── bxs-arrow-to-left.svg │ │ │ │ ├── bxs-arrow-to-right.svg │ │ │ │ ├── bxs-arrow-to-top.svg │ │ │ │ ├── bxs-award.svg │ │ │ │ ├── bxs-baby-carriage.svg │ │ │ │ ├── bxs-backpack.svg │ │ │ │ ├── bxs-badge-check.svg │ │ │ │ ├── bxs-badge-dollar.svg │ │ │ │ ├── bxs-badge.svg │ │ │ │ ├── bxs-ball.svg │ │ │ │ ├── bxs-band-aid.svg │ │ │ │ ├── bxs-bank.svg │ │ │ │ ├── bxs-bar-chart-alt-2.svg │ │ │ │ ├── bxs-bar-chart-square.svg │ │ │ │ ├── bxs-barcode.svg │ │ │ │ ├── bxs-baseball.svg │ │ │ │ ├── bxs-basket.svg │ │ │ │ ├── bxs-basketball.svg │ │ │ │ ├── bxs-bath.svg │ │ │ │ ├── bxs-battery-charging.svg │ │ │ │ ├── bxs-battery-full.svg │ │ │ │ ├── bxs-battery-low.svg │ │ │ │ ├── bxs-battery.svg │ │ │ │ ├── bxs-bed.svg │ │ │ │ ├── bxs-been-here.svg │ │ │ │ ├── bxs-beer.svg │ │ │ │ ├── bxs-bell-minus.svg │ │ │ │ ├── bxs-bell-off.svg │ │ │ │ ├── bxs-bell-plus.svg │ │ │ │ ├── bxs-bell-ring.svg │ │ │ │ ├── bxs-bell.svg │ │ │ │ ├── bxs-bible.svg │ │ │ │ ├── bxs-binoculars.svg │ │ │ │ ├── bxs-blanket.svg │ │ │ │ ├── bxs-bolt-circle.svg │ │ │ │ ├── bxs-bolt.svg │ │ │ │ ├── bxs-bomb.svg │ │ │ │ ├── bxs-bone.svg │ │ │ │ ├── bxs-bong.svg │ │ │ │ ├── bxs-book-add.svg │ │ │ │ ├── bxs-book-alt.svg │ │ │ │ ├── bxs-book-bookmark.svg │ │ │ │ ├── bxs-book-content.svg │ │ │ │ ├── bxs-book-heart.svg │ │ │ │ ├── bxs-book-open.svg │ │ │ │ ├── bxs-book-reader.svg │ │ │ │ ├── bxs-book.svg │ │ │ │ ├── bxs-bookmark-minus.svg │ │ │ │ ├── bxs-bookmark-plus.svg │ │ │ │ ├── bxs-bookmark-star.svg │ │ │ │ ├── bxs-bookmark.svg │ │ │ │ ├── bxs-bookmarks.svg │ │ │ │ ├── bxs-bot.svg │ │ │ │ ├── bxs-bowling-ball.svg │ │ │ │ ├── bxs-box.svg │ │ │ │ ├── bxs-brain.svg │ │ │ │ ├── bxs-briefcase-alt-2.svg │ │ │ │ ├── bxs-briefcase-alt.svg │ │ │ │ ├── bxs-briefcase.svg │ │ │ │ ├── bxs-brightness-half.svg │ │ │ │ ├── bxs-brightness.svg │ │ │ │ ├── bxs-brush-alt.svg │ │ │ │ ├── bxs-brush.svg │ │ │ │ ├── bxs-bug-alt.svg │ │ │ │ ├── bxs-bug.svg │ │ │ │ ├── bxs-building-house.svg │ │ │ │ ├── bxs-building.svg │ │ │ │ ├── bxs-buildings.svg │ │ │ │ ├── bxs-bulb.svg │ │ │ │ ├── bxs-bullseye.svg │ │ │ │ ├── bxs-buoy.svg │ │ │ │ ├── bxs-bus-school.svg │ │ │ │ ├── bxs-bus.svg │ │ │ │ ├── bxs-business.svg │ │ │ │ ├── bxs-cabinet.svg │ │ │ │ ├── bxs-cake.svg │ │ │ │ ├── bxs-calculator.svg │ │ │ │ ├── bxs-calendar-alt.svg │ │ │ │ ├── bxs-calendar-check.svg │ │ │ │ ├── bxs-calendar-edit.svg │ │ │ │ ├── bxs-calendar-event.svg │ │ │ │ ├── bxs-calendar-exclamation.svg │ │ │ │ ├── bxs-calendar-heart.svg │ │ │ │ ├── bxs-calendar-minus.svg │ │ │ │ ├── bxs-calendar-plus.svg │ │ │ │ ├── bxs-calendar-star.svg │ │ │ │ ├── bxs-calendar-week.svg │ │ │ │ ├── bxs-calendar-x.svg │ │ │ │ ├── bxs-calendar.svg │ │ │ │ ├── bxs-camera-home.svg │ │ │ │ ├── bxs-camera-movie.svg │ │ │ │ ├── bxs-camera-off.svg │ │ │ │ ├── bxs-camera-plus.svg │ │ │ │ ├── bxs-camera.svg │ │ │ │ ├── bxs-capsule.svg │ │ │ │ ├── bxs-captions.svg │ │ │ │ ├── bxs-car-battery.svg │ │ │ │ ├── bxs-car-crash.svg │ │ │ │ ├── bxs-car-garage.svg │ │ │ │ ├── bxs-car-mechanic.svg │ │ │ │ ├── bxs-car-wash.svg │ │ │ │ ├── bxs-car.svg │ │ │ │ ├── bxs-card.svg │ │ │ │ ├── bxs-caret-down-circle.svg │ │ │ │ ├── bxs-caret-down-square.svg │ │ │ │ ├── bxs-caret-left-circle.svg │ │ │ │ ├── bxs-caret-left-square.svg │ │ │ │ ├── bxs-caret-right-circle.svg │ │ │ │ ├── bxs-caret-right-square.svg │ │ │ │ ├── bxs-caret-up-circle.svg │ │ │ │ ├── bxs-caret-up-square.svg │ │ │ │ ├── bxs-carousel.svg │ │ │ │ ├── bxs-cart-add.svg │ │ │ │ ├── bxs-cart-alt.svg │ │ │ │ ├── bxs-cart-download.svg │ │ │ │ ├── bxs-cart.svg │ │ │ │ ├── bxs-cctv.svg │ │ │ │ ├── bxs-certification.svg │ │ │ │ ├── bxs-chalkboard.svg │ │ │ │ ├── bxs-chart.svg │ │ │ │ ├── bxs-chat.svg │ │ │ │ ├── bxs-check-circle.svg │ │ │ │ ├── bxs-check-shield.svg │ │ │ │ ├── bxs-check-square.svg │ │ │ │ ├── bxs-checkbox-checked.svg │ │ │ │ ├── bxs-checkbox.svg │ │ │ │ ├── bxs-chess.svg │ │ │ │ ├── bxs-chevron-down-circle.svg │ │ │ │ ├── bxs-chevron-down-square.svg │ │ │ │ ├── bxs-chevron-down.svg │ │ │ │ ├── bxs-chevron-left-circle.svg │ │ │ │ ├── bxs-chevron-left-square.svg │ │ │ │ ├── bxs-chevron-left.svg │ │ │ │ ├── bxs-chevron-right-circle.svg │ │ │ │ ├── bxs-chevron-right-square.svg │ │ │ │ ├── bxs-chevron-right.svg │ │ │ │ ├── bxs-chevron-up-circle.svg │ │ │ │ ├── bxs-chevron-up-square.svg │ │ │ │ ├── bxs-chevron-up.svg │ │ │ │ ├── bxs-chevrons-down.svg │ │ │ │ ├── bxs-chevrons-left.svg │ │ │ │ ├── bxs-chevrons-right.svg │ │ │ │ ├── bxs-chevrons-up.svg │ │ │ │ ├── bxs-chip.svg │ │ │ │ ├── bxs-church.svg │ │ │ │ ├── bxs-circle.svg │ │ │ │ ├── bxs-city.svg │ │ │ │ ├── bxs-clinic.svg │ │ │ │ ├── bxs-cloud-download.svg │ │ │ │ ├── bxs-cloud-lightning.svg │ │ │ │ ├── bxs-cloud-rain.svg │ │ │ │ ├── bxs-cloud-upload.svg │ │ │ │ ├── bxs-cloud.svg │ │ │ │ ├── bxs-coffee-alt.svg │ │ │ │ ├── bxs-coffee-togo.svg │ │ │ │ ├── bxs-coffee.svg │ │ │ │ ├── bxs-cog.svg │ │ │ │ ├── bxs-coin-stack.svg │ │ │ │ ├── bxs-coin.svg │ │ │ │ ├── bxs-collection.svg │ │ │ │ ├── bxs-color-fill.svg │ │ │ │ ├── bxs-comment-add.svg │ │ │ │ ├── bxs-comment-check.svg │ │ │ │ ├── bxs-comment-detail.svg │ │ │ │ ├── bxs-comment-dots.svg │ │ │ │ ├── bxs-comment-edit.svg │ │ │ │ ├── bxs-comment-error.svg │ │ │ │ ├── bxs-comment-minus.svg │ │ │ │ ├── bxs-comment-x.svg │ │ │ │ ├── bxs-comment.svg │ │ │ │ ├── bxs-compass.svg │ │ │ │ ├── bxs-component.svg │ │ │ │ ├── bxs-confused.svg │ │ │ │ ├── bxs-contact.svg │ │ │ │ ├── bxs-conversation.svg │ │ │ │ ├── bxs-cookie.svg │ │ │ │ ├── bxs-cool.svg │ │ │ │ ├── bxs-copy-alt.svg │ │ │ │ ├── bxs-copy.svg │ │ │ │ ├── bxs-copyright.svg │ │ │ │ ├── bxs-coupon.svg │ │ │ │ ├── bxs-credit-card-alt.svg │ │ │ │ ├── bxs-credit-card-front.svg │ │ │ │ ├── bxs-credit-card.svg │ │ │ │ ├── bxs-crop.svg │ │ │ │ ├── bxs-crown.svg │ │ │ │ ├── bxs-cube-alt.svg │ │ │ │ ├── bxs-cube.svg │ │ │ │ ├── bxs-cuboid.svg │ │ │ │ ├── bxs-customize.svg │ │ │ │ ├── bxs-cylinder.svg │ │ │ │ ├── bxs-dashboard.svg │ │ │ │ ├── bxs-data.svg │ │ │ │ ├── bxs-detail.svg │ │ │ │ ├── bxs-devices.svg │ │ │ │ ├── bxs-diamond.svg │ │ │ │ ├── bxs-dice-1.svg │ │ │ │ ├── bxs-dice-2.svg │ │ │ │ ├── bxs-dice-3.svg │ │ │ │ ├── bxs-dice-4.svg │ │ │ │ ├── bxs-dice-5.svg │ │ │ │ ├── bxs-dice-6.svg │ │ │ │ ├── bxs-direction-left.svg │ │ │ │ ├── bxs-direction-right.svg │ │ │ │ ├── bxs-directions.svg │ │ │ │ ├── bxs-disc.svg │ │ │ │ ├── bxs-discount.svg │ │ │ │ ├── bxs-dish.svg │ │ │ │ ├── bxs-dislike.svg │ │ │ │ ├── bxs-dizzy.svg │ │ │ │ ├── bxs-dock-bottom.svg │ │ │ │ ├── bxs-dock-left.svg │ │ │ │ ├── bxs-dock-right.svg │ │ │ │ ├── bxs-dock-top.svg │ │ │ │ ├── bxs-dollar-circle.svg │ │ │ │ ├── bxs-donate-blood.svg │ │ │ │ ├── bxs-donate-heart.svg │ │ │ │ ├── bxs-door-open.svg │ │ │ │ ├── bxs-doughnut-chart.svg │ │ │ │ ├── bxs-down-arrow-alt.svg │ │ │ │ ├── bxs-down-arrow-circle.svg │ │ │ │ ├── bxs-down-arrow-square.svg │ │ │ │ ├── bxs-down-arrow.svg │ │ │ │ ├── bxs-download.svg │ │ │ │ ├── bxs-downvote.svg │ │ │ │ ├── bxs-drink.svg │ │ │ │ ├── bxs-droplet-half.svg │ │ │ │ ├── bxs-droplet.svg │ │ │ │ ├── bxs-dryer.svg │ │ │ │ ├── bxs-duplicate.svg │ │ │ │ ├── bxs-edit-alt.svg │ │ │ │ ├── bxs-edit-location.svg │ │ │ │ ├── bxs-edit.svg │ │ │ │ ├── bxs-eject.svg │ │ │ │ ├── bxs-envelope-open.svg │ │ │ │ ├── bxs-envelope.svg │ │ │ │ ├── bxs-eraser.svg │ │ │ │ ├── bxs-error-alt.svg │ │ │ │ ├── bxs-error-circle.svg │ │ │ │ ├── bxs-error.svg │ │ │ │ ├── bxs-ev-station.svg │ │ │ │ ├── bxs-exit.svg │ │ │ │ ├── bxs-extension.svg │ │ │ │ ├── bxs-eyedropper.svg │ │ │ │ ├── bxs-face.svg │ │ │ │ ├── bxs-factory.svg │ │ │ │ ├── bxs-fast-forward-circle.svg │ │ │ │ ├── bxs-file-archive.svg │ │ │ │ ├── bxs-file-blank.svg │ │ │ │ ├── bxs-file-css.svg │ │ │ │ ├── bxs-file-doc.svg │ │ │ │ ├── bxs-file-export.svg │ │ │ │ ├── bxs-file-find.svg │ │ │ │ ├── bxs-file-gif.svg │ │ │ │ ├── bxs-file-html.svg │ │ │ │ ├── bxs-file-image.svg │ │ │ │ ├── bxs-file-import.svg │ │ │ │ ├── bxs-file-jpg.svg │ │ │ │ ├── bxs-file-js.svg │ │ │ │ ├── bxs-file-json.svg │ │ │ │ ├── bxs-file-md.svg │ │ │ │ ├── bxs-file-pdf.svg │ │ │ │ ├── bxs-file-plus.svg │ │ │ │ ├── bxs-file-png.svg │ │ │ │ ├── bxs-file-txt.svg │ │ │ │ ├── bxs-file.svg │ │ │ │ ├── bxs-film.svg │ │ │ │ ├── bxs-filter-alt.svg │ │ │ │ ├── bxs-first-aid.svg │ │ │ │ ├── bxs-flag-alt.svg │ │ │ │ ├── bxs-flag-checkered.svg │ │ │ │ ├── bxs-flag.svg │ │ │ │ ├── bxs-flame.svg │ │ │ │ ├── bxs-flask.svg │ │ │ │ ├── bxs-florist.svg │ │ │ │ ├── bxs-folder-minus.svg │ │ │ │ ├── bxs-folder-open.svg │ │ │ │ ├── bxs-folder-plus.svg │ │ │ │ ├── bxs-folder.svg │ │ │ │ ├── bxs-food-menu.svg │ │ │ │ ├── bxs-fridge.svg │ │ │ │ ├── bxs-game.svg │ │ │ │ ├── bxs-gas-pump.svg │ │ │ │ ├── bxs-ghost.svg │ │ │ │ ├── bxs-gift.svg │ │ │ │ ├── bxs-graduation.svg │ │ │ │ ├── bxs-grid-alt.svg │ │ │ │ ├── bxs-grid.svg │ │ │ │ ├── bxs-group.svg │ │ │ │ ├── bxs-guitar-amp.svg │ │ │ │ ├── bxs-hand-down.svg │ │ │ │ ├── bxs-hand-left.svg │ │ │ │ ├── bxs-hand-right.svg │ │ │ │ ├── bxs-hand-up.svg │ │ │ │ ├── bxs-happy-alt.svg │ │ │ │ ├── bxs-happy-beaming.svg │ │ │ │ ├── bxs-happy-heart-eyes.svg │ │ │ │ ├── bxs-happy.svg │ │ │ │ ├── bxs-hdd.svg │ │ │ │ ├── bxs-heart-circle.svg │ │ │ │ ├── bxs-heart-square.svg │ │ │ │ ├── bxs-heart.svg │ │ │ │ ├── bxs-help-circle.svg │ │ │ │ ├── bxs-hide.svg │ │ │ │ ├── bxs-home-circle.svg │ │ │ │ ├── bxs-home-heart.svg │ │ │ │ ├── bxs-home-smile.svg │ │ │ │ ├── bxs-home.svg │ │ │ │ ├── bxs-hot.svg │ │ │ │ ├── bxs-hotel.svg │ │ │ │ ├── bxs-hourglass-bottom.svg │ │ │ │ ├── bxs-hourglass-top.svg │ │ │ │ ├── bxs-hourglass.svg │ │ │ │ ├── bxs-id-card.svg │ │ │ │ ├── bxs-image-add.svg │ │ │ │ ├── bxs-image-alt.svg │ │ │ │ ├── bxs-image.svg │ │ │ │ ├── bxs-inbox.svg │ │ │ │ ├── bxs-info-circle.svg │ │ │ │ ├── bxs-info-square.svg │ │ │ │ ├── bxs-institution.svg │ │ │ │ ├── bxs-joystick-alt.svg │ │ │ │ ├── bxs-joystick-button.svg │ │ │ │ ├── bxs-joystick.svg │ │ │ │ ├── bxs-key.svg │ │ │ │ ├── bxs-keyboard.svg │ │ │ │ ├── bxs-label.svg │ │ │ │ ├── bxs-landmark.svg │ │ │ │ ├── bxs-landscape.svg │ │ │ │ ├── bxs-laugh.svg │ │ │ │ ├── bxs-layer-minus.svg │ │ │ │ ├── bxs-layer-plus.svg │ │ │ │ ├── bxs-layer.svg │ │ │ │ ├── bxs-layout.svg │ │ │ │ ├── bxs-left-arrow-alt.svg │ │ │ │ ├── bxs-left-arrow-circle.svg │ │ │ │ ├── bxs-left-arrow-square.svg │ │ │ │ ├── bxs-left-arrow.svg │ │ │ │ ├── bxs-left-down-arrow-circle.svg │ │ │ │ ├── bxs-left-top-arrow-circle.svg │ │ │ │ ├── bxs-like.svg │ │ │ │ ├── bxs-location-plus.svg │ │ │ │ ├── bxs-lock-alt.svg │ │ │ │ ├── bxs-lock-open-alt.svg │ │ │ │ ├── bxs-lock-open.svg │ │ │ │ ├── bxs-lock.svg │ │ │ │ ├── bxs-log-in-circle.svg │ │ │ │ ├── bxs-log-in.svg │ │ │ │ ├── bxs-log-out-circle.svg │ │ │ │ ├── bxs-log-out.svg │ │ │ │ ├── bxs-low-vision.svg │ │ │ │ ├── bxs-magic-wand.svg │ │ │ │ ├── bxs-magnet.svg │ │ │ │ ├── bxs-map-alt.svg │ │ │ │ ├── bxs-map-pin.svg │ │ │ │ ├── bxs-map.svg │ │ │ │ ├── bxs-mask.svg │ │ │ │ ├── bxs-medal.svg │ │ │ │ ├── bxs-megaphone.svg │ │ │ │ ├── bxs-meh-alt.svg │ │ │ │ ├── bxs-meh-blank.svg │ │ │ │ ├── bxs-meh.svg │ │ │ │ ├── bxs-memory-card.svg │ │ │ │ ├── bxs-message-add.svg │ │ │ │ ├── bxs-message-alt-add.svg │ │ │ │ ├── bxs-message-alt-check.svg │ │ │ │ ├── bxs-message-alt-detail.svg │ │ │ │ ├── bxs-message-alt-dots.svg │ │ │ │ ├── bxs-message-alt-edit.svg │ │ │ │ ├── bxs-message-alt-error.svg │ │ │ │ ├── bxs-message-alt-minus.svg │ │ │ │ ├── bxs-message-alt-x.svg │ │ │ │ ├── bxs-message-alt.svg │ │ │ │ ├── bxs-message-check.svg │ │ │ │ ├── bxs-message-detail.svg │ │ │ │ ├── bxs-message-dots.svg │ │ │ │ ├── bxs-message-edit.svg │ │ │ │ ├── bxs-message-error.svg │ │ │ │ ├── bxs-message-minus.svg │ │ │ │ ├── bxs-message-rounded-add.svg │ │ │ │ ├── bxs-message-rounded-check.svg │ │ │ │ ├── bxs-message-rounded-detail.svg │ │ │ │ ├── bxs-message-rounded-dots.svg │ │ │ │ ├── bxs-message-rounded-edit.svg │ │ │ │ ├── bxs-message-rounded-error.svg │ │ │ │ ├── bxs-message-rounded-minus.svg │ │ │ │ ├── bxs-message-rounded-x.svg │ │ │ │ ├── bxs-message-rounded.svg │ │ │ │ ├── bxs-message-square-add.svg │ │ │ │ ├── bxs-message-square-check.svg │ │ │ │ ├── bxs-message-square-detail.svg │ │ │ │ ├── bxs-message-square-dots.svg │ │ │ │ ├── bxs-message-square-edit.svg │ │ │ │ ├── bxs-message-square-error.svg │ │ │ │ ├── bxs-message-square-minus.svg │ │ │ │ ├── bxs-message-square-x.svg │ │ │ │ ├── bxs-message-square.svg │ │ │ │ ├── bxs-message-x.svg │ │ │ │ ├── bxs-message.svg │ │ │ │ ├── bxs-meteor.svg │ │ │ │ ├── bxs-microchip.svg │ │ │ │ ├── bxs-microphone-alt.svg │ │ │ │ ├── bxs-microphone-off.svg │ │ │ │ ├── bxs-microphone.svg │ │ │ │ ├── bxs-minus-circle.svg │ │ │ │ ├── bxs-minus-square.svg │ │ │ │ ├── bxs-mobile-vibration.svg │ │ │ │ ├── bxs-mobile.svg │ │ │ │ ├── bxs-moon.svg │ │ │ │ ├── bxs-mouse-alt.svg │ │ │ │ ├── bxs-mouse.svg │ │ │ │ ├── bxs-movie.svg │ │ │ │ ├── bxs-music.svg │ │ │ │ ├── bxs-navigation.svg │ │ │ │ ├── bxs-network-chart.svg │ │ │ │ ├── bxs-news.svg │ │ │ │ ├── bxs-no-entry.svg │ │ │ │ ├── bxs-note.svg │ │ │ │ ├── bxs-notepad.svg │ │ │ │ ├── bxs-notification-off.svg │ │ │ │ ├── bxs-notification.svg │ │ │ │ ├── bxs-offer.svg │ │ │ │ ├── bxs-package.svg │ │ │ │ ├── bxs-paint-roll.svg │ │ │ │ ├── bxs-paint.svg │ │ │ │ ├── bxs-palette.svg │ │ │ │ ├── bxs-paper-plane.svg │ │ │ │ ├── bxs-parking.svg │ │ │ │ ├── bxs-paste.svg │ │ │ │ ├── bxs-pen.svg │ │ │ │ ├── bxs-pencil.svg │ │ │ │ ├── bxs-phone-call.svg │ │ │ │ ├── bxs-phone-incoming.svg │ │ │ │ ├── bxs-phone-outgoing.svg │ │ │ │ ├── bxs-phone.svg │ │ │ │ ├── bxs-photo-album.svg │ │ │ │ ├── bxs-piano.svg │ │ │ │ ├── bxs-pie-chart-alt-2.svg │ │ │ │ ├── bxs-pie-chart-alt.svg │ │ │ │ ├── bxs-pie-chart.svg │ │ │ │ ├── bxs-pin.svg │ │ │ │ ├── bxs-pizza.svg │ │ │ │ ├── bxs-plane-alt.svg │ │ │ │ ├── bxs-plane-land.svg │ │ │ │ ├── bxs-plane-take-off.svg │ │ │ │ ├── bxs-plane.svg │ │ │ │ ├── bxs-planet.svg │ │ │ │ ├── bxs-playlist.svg │ │ │ │ ├── bxs-plug.svg │ │ │ │ ├── bxs-plus-circle.svg │ │ │ │ ├── bxs-plus-square.svg │ │ │ │ ├── bxs-pointer.svg │ │ │ │ ├── bxs-polygon.svg │ │ │ │ ├── bxs-printer.svg │ │ │ │ ├── bxs-purchase-tag-alt.svg │ │ │ │ ├── bxs-purchase-tag.svg │ │ │ │ ├── bxs-pyramid.svg │ │ │ │ ├── bxs-quote-alt-left.svg │ │ │ │ ├── bxs-quote-alt-right.svg │ │ │ │ ├── bxs-quote-left.svg │ │ │ │ ├── bxs-quote-right.svg │ │ │ │ ├── bxs-quote-single-left.svg │ │ │ │ ├── bxs-quote-single-right.svg │ │ │ │ ├── bxs-radiation.svg │ │ │ │ ├── bxs-radio.svg │ │ │ │ ├── bxs-receipt.svg │ │ │ │ ├── bxs-rectangle.svg │ │ │ │ ├── bxs-rename.svg │ │ │ │ ├── bxs-report.svg │ │ │ │ ├── bxs-rewind-circle.svg │ │ │ │ ├── bxs-right-arrow-alt.svg │ │ │ │ ├── bxs-right-arrow-circle.svg │ │ │ │ ├── bxs-right-arrow-square.svg │ │ │ │ ├── bxs-right-arrow.svg │ │ │ │ ├── bxs-right-down-arrow-circle.svg │ │ │ │ ├── bxs-right-top-arrow-circle.svg │ │ │ │ ├── bxs-rocket.svg │ │ │ │ ├── bxs-ruler.svg │ │ │ │ ├── bxs-sad.svg │ │ │ │ ├── bxs-save.svg │ │ │ │ ├── bxs-school.svg │ │ │ │ ├── bxs-search-alt-2.svg │ │ │ │ ├── bxs-search.svg │ │ │ │ ├── bxs-select-multiple.svg │ │ │ │ ├── bxs-send.svg │ │ │ │ ├── bxs-server.svg │ │ │ │ ├── bxs-shapes.svg │ │ │ │ ├── bxs-share-alt.svg │ │ │ │ ├── bxs-share.svg │ │ │ │ ├── bxs-shield-alt-2.svg │ │ │ │ ├── bxs-shield-x.svg │ │ │ │ ├── bxs-shield.svg │ │ │ │ ├── bxs-ship.svg │ │ │ │ ├── bxs-shocked.svg │ │ │ │ ├── bxs-shopping-bag-alt.svg │ │ │ │ ├── bxs-shopping-bag.svg │ │ │ │ ├── bxs-shopping-bags.svg │ │ │ │ ├── bxs-show.svg │ │ │ │ ├── bxs-skip-next-circle.svg │ │ │ │ ├── bxs-skip-previous-circle.svg │ │ │ │ ├── bxs-skull.svg │ │ │ │ ├── bxs-sleepy.svg │ │ │ │ ├── bxs-slideshow.svg │ │ │ │ ├── bxs-smile.svg │ │ │ │ ├── bxs-sort-alt.svg │ │ │ │ ├── bxs-spa.svg │ │ │ │ ├── bxs-spray-can.svg │ │ │ │ ├── bxs-spreadsheet.svg │ │ │ │ ├── bxs-square-rounded.svg │ │ │ │ ├── bxs-square.svg │ │ │ │ ├── bxs-star-half.svg │ │ │ │ ├── bxs-star.svg │ │ │ │ ├── bxs-sticker.svg │ │ │ │ ├── bxs-stopwatch.svg │ │ │ │ ├── bxs-store-alt.svg │ │ │ │ ├── bxs-store.svg │ │ │ │ ├── bxs-sun.svg │ │ │ │ ├── bxs-t-shirt.svg │ │ │ │ ├── bxs-tachometer.svg │ │ │ │ ├── bxs-tag-x.svg │ │ │ │ ├── bxs-tag.svg │ │ │ │ ├── bxs-taxi.svg │ │ │ │ ├── bxs-tennis-ball.svg │ │ │ │ ├── bxs-terminal.svg │ │ │ │ ├── bxs-thermometer.svg │ │ │ │ ├── bxs-time-five.svg │ │ │ │ ├── bxs-time.svg │ │ │ │ ├── bxs-timer.svg │ │ │ │ ├── bxs-tired.svg │ │ │ │ ├── bxs-to-top.svg │ │ │ │ ├── bxs-toggle-left.svg │ │ │ │ ├── bxs-toggle-right.svg │ │ │ │ ├── bxs-tone.svg │ │ │ │ ├── bxs-torch.svg │ │ │ │ ├── bxs-traffic-barrier.svg │ │ │ │ ├── bxs-traffic-cone.svg │ │ │ │ ├── bxs-traffic.svg │ │ │ │ ├── bxs-train.svg │ │ │ │ ├── bxs-trash-alt.svg │ │ │ │ ├── bxs-trash.svg │ │ │ │ ├── bxs-tree.svg │ │ │ │ ├── bxs-trophy.svg │ │ │ │ ├── bxs-truck.svg │ │ │ │ ├── bxs-up-arrow-alt.svg │ │ │ │ ├── bxs-up-arrow-circle.svg │ │ │ │ ├── bxs-up-arrow-square.svg │ │ │ │ ├── bxs-up-arrow.svg │ │ │ │ ├── bxs-upside-down.svg │ │ │ │ ├── bxs-upvote.svg │ │ │ │ ├── bxs-user-badge.svg │ │ │ │ ├── bxs-user-check.svg │ │ │ │ ├── bxs-user-circle.svg │ │ │ │ ├── bxs-user-detail.svg │ │ │ │ ├── bxs-user-minus.svg │ │ │ │ ├── bxs-user-pin.svg │ │ │ │ ├── bxs-user-plus.svg │ │ │ │ ├── bxs-user-rectangle.svg │ │ │ │ ├── bxs-user-voice.svg │ │ │ │ ├── bxs-user-x.svg │ │ │ │ ├── bxs-user.svg │ │ │ │ ├── bxs-vector.svg │ │ │ │ ├── bxs-vial.svg │ │ │ │ ├── bxs-video-off.svg │ │ │ │ ├── bxs-video-plus.svg │ │ │ │ ├── bxs-video-recording.svg │ │ │ │ ├── bxs-video.svg │ │ │ │ ├── bxs-videos.svg │ │ │ │ ├── bxs-volume-full.svg │ │ │ │ ├── bxs-volume-low.svg │ │ │ │ ├── bxs-volume-mute.svg │ │ │ │ ├── bxs-volume.svg │ │ │ │ ├── bxs-wallet-alt.svg │ │ │ │ ├── bxs-wallet.svg │ │ │ │ ├── bxs-washer.svg │ │ │ │ ├── bxs-watch-alt.svg │ │ │ │ ├── bxs-watch.svg │ │ │ │ ├── bxs-webcam.svg │ │ │ │ ├── bxs-widget.svg │ │ │ │ ├── bxs-window-alt.svg │ │ │ │ ├── bxs-wine.svg │ │ │ │ ├── bxs-wink-smile.svg │ │ │ │ ├── bxs-wink-tongue.svg │ │ │ │ ├── bxs-wrench.svg │ │ │ │ ├── bxs-x-circle.svg │ │ │ │ ├── bxs-x-square.svg │ │ │ │ ├── bxs-yin-yang.svg │ │ │ │ ├── bxs-zap.svg │ │ │ │ ├── bxs-zoom-in.svg │ │ │ │ └── bxs-zoom-out.svg │ │ ├── chart.js │ │ │ ├── Chart.bundle.min.js │ │ │ ├── Chart.min.js │ │ │ ├── excanvas.js │ │ │ └── utils.js │ │ ├── clipboard │ │ │ ├── clipboard.js │ │ │ └── clipboard.min.js │ │ ├── counters │ │ │ ├── counter.js │ │ │ ├── counterup.min.js │ │ │ ├── jquery.missofis-countdown.js │ │ │ └── waypoints.min.js │ │ ├── cryptofont │ │ │ ├── component.json │ │ │ ├── css │ │ │ │ └── cryptofont.min.css │ │ │ └── fonts │ │ │ │ ├── cryptofont-webfont.eot │ │ │ │ ├── cryptofont-webfont.svg │ │ │ │ ├── cryptofont-webfont.ttf │ │ │ │ └── cryptofont-webfont.woff │ │ ├── custom-scroll │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ └── mCustomscrollbar.js │ │ ├── darggable │ │ │ ├── darggable.js │ │ │ ├── jquery-ui-darggable.css │ │ │ └── jquery-ui-darggable.min.js │ │ ├── datatable │ │ │ ├── css │ │ │ │ ├── buttons.bootstrap4.min.css │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ ├── dataTables.bootstrap.min.css │ │ │ │ ├── dataTables.bootstrap4.css │ │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ │ ├── dataTables.foundation.css │ │ │ │ ├── dataTables.foundation.min.css │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ ├── dataTables.jqueryui.min.css │ │ │ │ ├── dataTables.semanticui.css │ │ │ │ ├── dataTables.semanticui.min.css │ │ │ │ ├── jquery.dataTables.css │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ ├── jquery.dataTables1.min.css │ │ │ │ ├── responsive.bootstrap4.min.css │ │ │ │ └── responsive.dataTables.min.css │ │ │ ├── dataTables.responsive.min.js │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── js │ │ │ │ ├── buttons.bootstrap4.min.js │ │ │ │ ├── buttons.colVis.min.js │ │ │ │ ├── buttons.html5.min.js │ │ │ │ ├── buttons.print.min.js │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ ├── dataTables.bootstrap4.js │ │ │ │ ├── dataTables.bootstrap4.min.js │ │ │ │ ├── dataTables.buttons.min.js │ │ │ │ ├── dataTables.dataTables.min.js │ │ │ │ ├── dataTables.foundation.js │ │ │ │ ├── dataTables.foundation.min.js │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ ├── dataTables.jqueryui.min.js │ │ │ │ ├── dataTables.responsive.min.js │ │ │ │ ├── dataTables.semanticui.js │ │ │ │ ├── dataTables.semanticui.min.js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ ├── jszip.min.js │ │ │ │ ├── pdfmake.min.js │ │ │ │ ├── responsive.bootstrap4.min.js │ │ │ │ ├── responsive.dataTables.min.js │ │ │ │ └── vfs_fonts.js │ │ │ ├── responsive.bootstrap4.min.css │ │ │ └── responsive.bootstrap4.min.js │ │ ├── echart │ │ │ ├── echart.js │ │ │ └── echarts.js │ │ ├── fancyuploder │ │ │ ├── cors │ │ │ │ ├── jquery.postmessage-transport.js │ │ │ │ └── jquery.xdr-transport.js │ │ │ ├── fancy-uploader.js │ │ │ ├── fancy-uploader.txt │ │ │ ├── fancy_fileupload.css │ │ │ ├── fancy_microphone.png │ │ │ ├── fancy_okay.png │ │ │ ├── fancy_remove.png │ │ │ ├── fancy_upload-dark.png │ │ │ ├── fancy_upload.png │ │ │ ├── fancy_webcam.png │ │ │ ├── fancyuploder │ │ │ │ ├── cors │ │ │ │ │ ├── jquery.postmessage-transport.js │ │ │ │ │ └── jquery.xdr-transport.js │ │ │ │ ├── fancy-uploader.js │ │ │ │ ├── fancy-uploader.txt │ │ │ │ ├── fancy_fileupload.css │ │ │ │ ├── fancy_microphone.png │ │ │ │ ├── fancy_okay.png │ │ │ │ ├── fancy_remove.png │ │ │ │ ├── fancy_upload.png │ │ │ │ ├── fancy_webcam.png │ │ │ │ ├── jquery.fancy-fileupload.js │ │ │ │ ├── jquery.fileupload.js │ │ │ │ ├── jquery.iframe-transport.js │ │ │ │ └── jquery.ui.widget.js │ │ │ ├── jquery.fancy-fileupload.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ └── jquery.ui.widget.js │ │ ├── feather │ │ │ ├── feather.css │ │ │ └── fonts │ │ │ │ ├── feather │ │ │ │ ├── feather-webfont.eot │ │ │ │ ├── feather-webfont.svg │ │ │ │ ├── feather-webfont.ttf │ │ │ │ └── feather-webfont.woff │ │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── font-awesome.min.css │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ │ ├── revicons.eot │ │ │ │ ├── revicons.svg │ │ │ │ ├── revicons.ttf │ │ │ │ └── revicons.woff │ │ ├── fileuploads │ │ │ ├── css │ │ │ │ └── fileupload.css │ │ │ ├── fonts │ │ │ │ ├── dropify.eot │ │ │ │ ├── dropify.svg │ │ │ │ ├── dropify.ttf │ │ │ │ └── dropify.woff │ │ │ └── js │ │ │ │ ├── file-upload.js │ │ │ │ └── fileupload.js │ │ ├── flag-icon-css │ │ │ ├── assets │ │ │ │ ├── docs.css │ │ │ │ └── docs.js │ │ │ ├── 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 │ │ │ └── svgo.yaml │ │ ├── flot.curvedlines │ │ │ ├── curvedLines.js │ │ │ ├── docu │ │ │ │ ├── MathStuff.pdf │ │ │ │ └── MathStuff.tex │ │ │ ├── exampleCustomizing.txt │ │ │ ├── exampleFillMultiAxis.txt │ │ │ ├── exampleFit.txt │ │ │ ├── exampleHelperPoints.txt │ │ │ ├── exampleStackedData.txt │ │ │ └── flot │ │ │ │ ├── excanvas.min.js │ │ │ │ ├── jquery.colorhelpers.min.js │ │ │ │ ├── jquery.flot.canvas.min.js │ │ │ │ ├── jquery.flot.categories.min.js │ │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ │ ├── jquery.flot.image.min.js │ │ │ │ ├── jquery.flot.min.js │ │ │ │ ├── jquery.flot.navigate.min.js │ │ │ │ ├── jquery.flot.pie.min.js │ │ │ │ ├── jquery.flot.resize.min.js │ │ │ │ ├── jquery.flot.selection.min.js │ │ │ │ ├── jquery.flot.stack.min.js │ │ │ │ ├── jquery.flot.symbol.min.js │ │ │ │ ├── jquery.flot.threshold.min.js │ │ │ │ ├── jquery.flot.time.min.js │ │ │ │ └── jquery.min.js │ │ ├── fontawesome-free │ │ │ ├── LICENSE.txt │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ ├── js │ │ │ │ ├── all.min.js │ │ │ │ ├── brands.min.js │ │ │ │ ├── fontawesome.min.js │ │ │ │ ├── regular.min.js │ │ │ │ ├── solid.min.js │ │ │ │ └── v4-shims.min.js │ │ │ ├── sprites │ │ │ │ ├── brands.svg │ │ │ │ ├── regular.svg │ │ │ │ └── solid.svg │ │ │ ├── svgs │ │ │ │ ├── brands │ │ │ │ │ ├── 500px.svg │ │ │ │ │ ├── accessible-icon.svg │ │ │ │ │ ├── accusoft.svg │ │ │ │ │ ├── adn.svg │ │ │ │ │ ├── adversal.svg │ │ │ │ │ ├── affiliatetheme.svg │ │ │ │ │ ├── algolia.svg │ │ │ │ │ ├── alipay.svg │ │ │ │ │ ├── amazon-pay.svg │ │ │ │ │ ├── amazon.svg │ │ │ │ │ ├── amilia.svg │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── angellist.svg │ │ │ │ │ ├── angrycreative.svg │ │ │ │ │ ├── angular.svg │ │ │ │ │ ├── app-store-ios.svg │ │ │ │ │ ├── app-store.svg │ │ │ │ │ ├── apper.svg │ │ │ │ │ ├── apple-pay.svg │ │ │ │ │ ├── apple.svg │ │ │ │ │ ├── asymmetrik.svg │ │ │ │ │ ├── audible.svg │ │ │ │ │ ├── autoprefixer.svg │ │ │ │ │ ├── avianex.svg │ │ │ │ │ ├── aviato.svg │ │ │ │ │ ├── aws.svg │ │ │ │ │ ├── bandcamp.svg │ │ │ │ │ ├── behance-square.svg │ │ │ │ │ ├── behance.svg │ │ │ │ │ ├── bimobject.svg │ │ │ │ │ ├── bitbucket.svg │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ ├── bity.svg │ │ │ │ │ ├── black-tie.svg │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ ├── blogger-b.svg │ │ │ │ │ ├── blogger.svg │ │ │ │ │ ├── bluetooth-b.svg │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ ├── btc.svg │ │ │ │ │ ├── buromobelexperte.svg │ │ │ │ │ ├── buysellads.svg │ │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ │ ├── cc-amex.svg │ │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ │ ├── cc-diners-club.svg │ │ │ │ │ ├── cc-discover.svg │ │ │ │ │ ├── cc-jcb.svg │ │ │ │ │ ├── cc-mastercard.svg │ │ │ │ │ ├── cc-paypal.svg │ │ │ │ │ ├── cc-stripe.svg │ │ │ │ │ ├── cc-visa.svg │ │ │ │ │ ├── centercode.svg │ │ │ │ │ ├── chrome.svg │ │ │ │ │ ├── cloudscale.svg │ │ │ │ │ ├── cloudsmith.svg │ │ │ │ │ ├── cloudversify.svg │ │ │ │ │ ├── codepen.svg │ │ │ │ │ ├── codiepie.svg │ │ │ │ │ ├── connectdevelop.svg │ │ │ │ │ ├── contao.svg │ │ │ │ │ ├── cpanel.svg │ │ │ │ │ ├── creative-commons-by.svg │ │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ │ ├── creative-commons-share.svg │ │ │ │ │ ├── creative-commons.svg │ │ │ │ │ ├── css3-alt.svg │ │ │ │ │ ├── css3.svg │ │ │ │ │ ├── cuttlefish.svg │ │ │ │ │ ├── d-and-d.svg │ │ │ │ │ ├── dashcube.svg │ │ │ │ │ ├── delicious.svg │ │ │ │ │ ├── deploydog.svg │ │ │ │ │ ├── deskpro.svg │ │ │ │ │ ├── deviantart.svg │ │ │ │ │ ├── digg.svg │ │ │ │ │ ├── digital-ocean.svg │ │ │ │ │ ├── discord.svg │ │ │ │ │ ├── discourse.svg │ │ │ │ │ ├── dochub.svg │ │ │ │ │ ├── docker.svg │ │ │ │ │ ├── draft2digital.svg │ │ │ │ │ ├── dribbble-square.svg │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ ├── drupal.svg │ │ │ │ │ ├── dyalog.svg │ │ │ │ │ ├── earlybirds.svg │ │ │ │ │ ├── ebay.svg │ │ │ │ │ ├── edge.svg │ │ │ │ │ ├── elementor.svg │ │ │ │ │ ├── ello.svg │ │ │ │ │ ├── ember.svg │ │ │ │ │ ├── empire.svg │ │ │ │ │ ├── envira.svg │ │ │ │ │ ├── erlang.svg │ │ │ │ │ ├── ethereum.svg │ │ │ │ │ ├── etsy.svg │ │ │ │ │ ├── expeditedssl.svg │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ ├── facebook-messenger.svg │ │ │ │ │ ├── facebook-square.svg │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── firefox.svg │ │ │ │ │ ├── first-order-alt.svg │ │ │ │ │ ├── first-order.svg │ │ │ │ │ ├── firstdraft.svg │ │ │ │ │ ├── flickr.svg │ │ │ │ │ ├── flipboard.svg │ │ │ │ │ ├── fly.svg │ │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── fonticons-fi.svg │ │ │ │ │ ├── fonticons.svg │ │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ │ ├── fort-awesome.svg │ │ │ │ │ ├── forumbee.svg │ │ │ │ │ ├── foursquare.svg │ │ │ │ │ ├── free-code-camp.svg │ │ │ │ │ ├── freebsd.svg │ │ │ │ │ ├── fulcrum.svg │ │ │ │ │ ├── galactic-republic.svg │ │ │ │ │ ├── galactic-senate.svg │ │ │ │ │ ├── get-pocket.svg │ │ │ │ │ ├── gg-circle.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── git-square.svg │ │ │ │ │ ├── git.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── github-square.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitkraken.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gitter.svg │ │ │ │ │ ├── glide-g.svg │ │ │ │ │ ├── glide.svg │ │ │ │ │ ├── gofore.svg │ │ │ │ │ ├── goodreads-g.svg │ │ │ │ │ ├── goodreads.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ ├── google-plus-square.svg │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ ├── grav.svg │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ ├── grunt.svg │ │ │ │ │ ├── gulp.svg │ │ │ │ │ ├── hacker-news-square.svg │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ ├── hackerrank.svg │ │ │ │ │ ├── hips.svg │ │ │ │ │ ├── hire-a-helper.svg │ │ │ │ │ ├── hooli.svg │ │ │ │ │ ├── hornbill.svg │ │ │ │ │ ├── hotjar.svg │ │ │ │ │ ├── houzz.svg │ │ │ │ │ ├── html5.svg │ │ │ │ │ ├── hubspot.svg │ │ │ │ │ ├── imdb.svg │ │ │ │ │ ├── instagram.svg │ │ │ │ │ ├── internet-explorer.svg │ │ │ │ │ ├── ioxhost.svg │ │ │ │ │ ├── itunes-note.svg │ │ │ │ │ ├── itunes.svg │ │ │ │ │ ├── java.svg │ │ │ │ │ ├── jedi-order.svg │ │ │ │ │ ├── jenkins.svg │ │ │ │ │ ├── joget.svg │ │ │ │ │ ├── joomla.svg │ │ │ │ │ ├── js-square.svg │ │ │ │ │ ├── js.svg │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ ├── keybase.svg │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ ├── korvue.svg │ │ │ │ │ ├── laravel.svg │ │ │ │ │ ├── lastfm-square.svg │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ ├── leanpub.svg │ │ │ │ │ ├── less.svg │ │ │ │ │ ├── line.svg │ │ │ │ │ ├── linkedin-in.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── linode.svg │ │ │ │ │ ├── linux.svg │ │ │ │ │ ├── lyft.svg │ │ │ │ │ ├── magento.svg │ │ │ │ │ ├── mailchimp.svg │ │ │ │ │ ├── mandalorian.svg │ │ │ │ │ ├── markdown.svg │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ ├── maxcdn.svg │ │ │ │ │ ├── medapps.svg │ │ │ │ │ ├── medium-m.svg │ │ │ │ │ ├── medium.svg │ │ │ │ │ ├── medrt.svg │ │ │ │ │ ├── meetup.svg │ │ │ │ │ ├── megaport.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── mix.svg │ │ │ │ │ ├── mixcloud.svg │ │ │ │ │ ├── mizuni.svg │ │ │ │ │ ├── modx.svg │ │ │ │ │ ├── monero.svg │ │ │ │ │ ├── napster.svg │ │ │ │ │ ├── neos.svg │ │ │ │ │ ├── nimblr.svg │ │ │ │ │ ├── nintendo-switch.svg │ │ │ │ │ ├── node-js.svg │ │ │ │ │ ├── node.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── ns8.svg │ │ │ │ │ ├── nutritionix.svg │ │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ ├── opencart.svg │ │ │ │ │ ├── openid.svg │ │ │ │ │ ├── opera.svg │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ ├── osi.svg │ │ │ │ │ ├── page4.svg │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ ├── palfed.svg │ │ │ │ │ ├── patreon.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── periscope.svg │ │ │ │ │ ├── phabricator.svg │ │ │ │ │ ├── phoenix-framework.svg │ │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ │ ├── php.svg │ │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ ├── pinterest-square.svg │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ ├── playstation.svg │ │ │ │ │ ├── product-hunt.svg │ │ │ │ │ ├── pushed.svg │ │ │ │ │ ├── python.svg │ │ │ │ │ ├── qq.svg │ │ │ │ │ ├── quinscape.svg │ │ │ │ │ ├── quora.svg │ │ │ │ │ ├── r-project.svg │ │ │ │ │ ├── ravelry.svg │ │ │ │ │ ├── react.svg │ │ │ │ │ ├── readme.svg │ │ │ │ │ ├── rebel.svg │ │ │ │ │ ├── red-river.svg │ │ │ │ │ ├── reddit-alien.svg │ │ │ │ │ ├── reddit-square.svg │ │ │ │ │ ├── reddit.svg │ │ │ │ │ ├── rendact.svg │ │ │ │ │ ├── renren.svg │ │ │ │ │ ├── replyd.svg │ │ │ │ │ ├── researchgate.svg │ │ │ │ │ ├── resolving.svg │ │ │ │ │ ├── rev.svg │ │ │ │ │ ├── rocketchat.svg │ │ │ │ │ ├── rockrms.svg │ │ │ │ │ ├── safari.svg │ │ │ │ │ ├── sass.svg │ │ │ │ │ ├── schlix.svg │ │ │ │ │ ├── scribd.svg │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ ├── shopware.svg │ │ │ │ │ ├── simplybuilt.svg │ │ │ │ │ ├── sistrix.svg │ │ │ │ │ ├── sith.svg │ │ │ │ │ ├── skyatlas.svg │ │ │ │ │ ├── skype.svg │ │ │ │ │ ├── slack-hash.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── slideshare.svg │ │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ │ ├── snapchat-square.svg │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ ├── speakap.svg │ │ │ │ │ ├── spotify.svg │ │ │ │ │ ├── squarespace.svg │ │ │ │ │ ├── stack-exchange.svg │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ ├── staylinked.svg │ │ │ │ │ ├── steam-square.svg │ │ │ │ │ ├── steam-symbol.svg │ │ │ │ │ ├── steam.svg │ │ │ │ │ ├── sticker-mule.svg │ │ │ │ │ ├── strava.svg │ │ │ │ │ ├── stripe-s.svg │ │ │ │ │ ├── stripe.svg │ │ │ │ │ ├── studiovinari.svg │ │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ │ ├── stumbleupon.svg │ │ │ │ │ ├── superpowers.svg │ │ │ │ │ ├── supple.svg │ │ │ │ │ ├── teamspeak.svg │ │ │ │ │ ├── telegram-plane.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── tencent-weibo.svg │ │ │ │ │ ├── the-red-yeti.svg │ │ │ │ │ ├── themeco.svg │ │ │ │ │ ├── themeisle.svg │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ ├── trello.svg │ │ │ │ │ ├── tripadvisor.svg │ │ │ │ │ ├── tumblr-square.svg │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ ├── twitch.svg │ │ │ │ │ ├── twitter-square.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── typo3.svg │ │ │ │ │ ├── uber.svg │ │ │ │ │ ├── uikit.svg │ │ │ │ │ ├── uniregistry.svg │ │ │ │ │ ├── untappd.svg │ │ │ │ │ ├── usb.svg │ │ │ │ │ ├── ussunnah.svg │ │ │ │ │ ├── vaadin.svg │ │ │ │ │ ├── viacoin.svg │ │ │ │ │ ├── viadeo-square.svg │ │ │ │ │ ├── viadeo.svg │ │ │ │ │ ├── viber.svg │ │ │ │ │ ├── vimeo-square.svg │ │ │ │ │ ├── vimeo-v.svg │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ ├── vine.svg │ │ │ │ │ ├── vk.svg │ │ │ │ │ ├── vnv.svg │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ ├── weebly.svg │ │ │ │ │ ├── weibo.svg │ │ │ │ │ ├── weixin.svg │ │ │ │ │ ├── whatsapp-square.svg │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── wix.svg │ │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ ├── wpbeginner.svg │ │ │ │ │ ├── wpexplorer.svg │ │ │ │ │ ├── wpforms.svg │ │ │ │ │ ├── xbox.svg │ │ │ │ │ ├── xing-square.svg │ │ │ │ │ ├── xing.svg │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ ├── yandex.svg │ │ │ │ │ ├── yelp.svg │ │ │ │ │ ├── yoast.svg │ │ │ │ │ ├── youtube-square.svg │ │ │ │ │ ├── youtube.svg │ │ │ │ │ └── zhihu.svg │ │ │ │ ├── regular │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── angry.svg │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flushed.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ ├── frown.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── grimace.svg │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ ├── grin.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ ├── kiss.svg │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ ├── laugh.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── share-square.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── surprise.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── tired.svg │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── window-close.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ └── window-restore.svg │ │ │ │ └── solid │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── adjust.svg │ │ │ │ │ ├── air-freshener.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── allergies.svg │ │ │ │ │ ├── ambulance.svg │ │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ │ ├── anchor.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 │ │ │ │ │ ├── angry.svg │ │ │ │ │ ├── ankh.svg │ │ │ │ │ ├── apple-alt.svg │ │ │ │ │ ├── archive.svg │ │ │ │ │ ├── archway.svg │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ ├── arrow-alt-circle-up.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-up.svg │ │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ │ ├── arrows-alt.svg │ │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── atlas.svg │ │ │ │ │ ├── atom.svg │ │ │ │ │ ├── audio-description.svg │ │ │ │ │ ├── award.svg │ │ │ │ │ ├── backspace.svg │ │ │ │ │ ├── backward.svg │ │ │ │ │ ├── balance-scale.svg │ │ │ │ │ ├── ban.svg │ │ │ │ │ ├── band-aid.svg │ │ │ │ │ ├── barcode.svg │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── baseball-ball.svg │ │ │ │ │ ├── basketball-ball.svg │ │ │ │ │ ├── bath.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ ├── battery-quarter.svg │ │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ │ ├── bed.svg │ │ │ │ │ ├── beer.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bezier-curve.svg │ │ │ │ │ ├── bible.svg │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ ├── birthday-cake.svg │ │ │ │ │ ├── blender.svg │ │ │ │ │ ├── blind.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── bolt.svg │ │ │ │ │ ├── bomb.svg │ │ │ │ │ ├── bone.svg │ │ │ │ │ ├── bong.svg │ │ │ │ │ ├── book-open.svg │ │ │ │ │ ├── book-reader.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ ├── box-open.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── boxes.svg │ │ │ │ │ ├── braille.svg │ │ │ │ │ ├── brain.svg │ │ │ │ │ ├── briefcase-medical.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── broadcast-tower.svg │ │ │ │ │ ├── broom.svg │ │ │ │ │ ├── brush.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── bullhorn.svg │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ ├── burn.svg │ │ │ │ │ ├── bus-alt.svg │ │ │ │ │ ├── bus.svg │ │ │ │ │ ├── business-time.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── camera-retro.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── cannabis.svg │ │ │ │ │ ├── capsules.svg │ │ │ │ │ ├── car-alt.svg │ │ │ │ │ ├── car-battery.svg │ │ │ │ │ ├── car-crash.svg │ │ │ │ │ ├── car-side.svg │ │ │ │ │ ├── car.svg │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ ├── certificate.svg │ │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ │ ├── chalkboard.svg │ │ │ │ │ ├── charging-station.svg │ │ │ │ │ ├── chart-area.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chart-line.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-double.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ ├── chess-board.svg │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ ├── chess.svg │ │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── child.svg │ │ │ │ │ ├── church.svg │ │ │ │ │ ├── circle-notch.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── city.svg │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ ├── clipboard-list.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── cocktail.svg │ │ │ │ │ ├── code-branch.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── coffee.svg │ │ │ │ │ ├── cog.svg │ │ │ │ │ ├── cogs.svg │ │ │ │ │ ├── coins.svg │ │ │ │ │ ├── columns.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-dollar.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment-slash.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments-dollar.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── concierge-bell.svg │ │ │ │ │ ├── cookie-bite.svg │ │ │ │ │ ├── cookie.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── couch.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── crop-alt.svg │ │ │ │ │ ├── crop.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ ├── crow.svg │ │ │ │ │ ├── crown.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── cubes.svg │ │ │ │ │ ├── cut.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── deaf.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dharmachakra.svg │ │ │ │ │ ├── diagnoses.svg │ │ │ │ │ ├── dice-five.svg │ │ │ │ │ ├── dice-four.svg │ │ │ │ │ ├── dice-one.svg │ │ │ │ │ ├── dice-six.svg │ │ │ │ │ ├── dice-three.svg │ │ │ │ │ ├── dice-two.svg │ │ │ │ │ ├── dice.svg │ │ │ │ │ ├── digital-tachograph.svg │ │ │ │ │ ├── directions.svg │ │ │ │ │ ├── divide.svg │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ ├── dna.svg │ │ │ │ │ ├── dollar-sign.svg │ │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ │ ├── dolly.svg │ │ │ │ │ ├── donate.svg │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ ├── door-open.svg │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ ├── dove.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── drafting-compass.svg │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ ├── drum-steelpan.svg │ │ │ │ │ ├── drum.svg │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── eject.svg │ │ │ │ │ ├── ellipsis-h.svg │ │ │ │ │ ├── ellipsis-v.svg │ │ │ │ │ ├── envelope-open-text.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope-square.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── equals.svg │ │ │ │ │ ├── eraser.svg │ │ │ │ │ ├── euro-sign.svg │ │ │ │ │ ├── exchange-alt.svg │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── external-link-alt.svg │ │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ │ ├── eye-dropper.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── fast-backward.svg │ │ │ │ │ ├── fast-forward.svg │ │ │ │ │ ├── fax.svg │ │ │ │ │ ├── feather-alt.svg │ │ │ │ │ ├── feather.svg │ │ │ │ │ ├── female.svg │ │ │ │ │ ├── fighter-jet.svg │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-contract.svg │ │ │ │ │ ├── file-download.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-export.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-import.svg │ │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ │ ├── file-invoice.svg │ │ │ │ │ ├── file-medical-alt.svg │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-prescription.svg │ │ │ │ │ ├── file-signature.svg │ │ │ │ │ ├── file-upload.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── fill-drip.svg │ │ │ │ │ ├── fill.svg │ │ │ │ │ ├── film.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ │ ├── fire.svg │ │ │ │ │ ├── first-aid.svg │ │ │ │ │ ├── fish.svg │ │ │ │ │ ├── flag-checkered.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flask.svg │ │ │ │ │ ├── flushed.svg │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── football-ball.svg │ │ │ │ │ ├── forward.svg │ │ │ │ │ ├── frog.svg │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ ├── frown.svg │ │ │ │ │ ├── funnel-dollar.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gamepad.svg │ │ │ │ │ ├── gas-pump.svg │ │ │ │ │ ├── gavel.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── genderless.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ │ ├── glass-martini.svg │ │ │ │ │ ├── glasses.svg │ │ │ │ │ ├── globe-africa.svg │ │ │ │ │ ├── globe-americas.svg │ │ │ │ │ ├── globe-asia.svg │ │ │ │ │ ├── globe.svg │ │ │ │ │ ├── golf-ball.svg │ │ │ │ │ ├── gopuram.svg │ │ │ │ │ ├── graduation-cap.svg │ │ │ │ │ ├── greater-than-equal.svg │ │ │ │ │ ├── greater-than.svg │ │ │ │ │ ├── grimace.svg │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ ├── grin.svg │ │ │ │ │ ├── grip-horizontal.svg │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ ├── h-square.svg │ │ │ │ │ ├── hamsa.svg │ │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ │ ├── hand-holding.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hands-helping.svg │ │ │ │ │ ├── hands.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ ├── haykal.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── heading.svg │ │ │ │ │ ├── headphones-alt.svg │ │ │ │ │ ├── headphones.svg │ │ │ │ │ ├── headset.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── heartbeat.svg │ │ │ │ │ ├── helicopter.svg │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── hockey-puck.svg │ │ │ │ │ ├── home.svg │ │ │ │ │ ├── hospital-alt.svg │ │ │ │ │ ├── hospital-symbol.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hot-tub.svg │ │ │ │ │ ├── hotel.svg │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── i-cursor.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card-alt.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── inbox.svg │ │ │ │ │ ├── indent.svg │ │ │ │ │ ├── industry.svg │ │ │ │ │ ├── infinity.svg │ │ │ │ │ ├── info-circle.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── italic.svg │ │ │ │ │ ├── jedi.svg │ │ │ │ │ ├── joint.svg │ │ │ │ │ ├── journal-whills.svg │ │ │ │ │ ├── kaaba.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── khanda.svg │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ ├── kiss.svg │ │ │ │ │ ├── kiwi-bird.svg │ │ │ │ │ ├── landmark.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-code.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ ├── laugh.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── leaf.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── less-than-equal.svg │ │ │ │ │ ├── less-than.svg │ │ │ │ │ ├── level-down-alt.svg │ │ │ │ │ ├── level-up-alt.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── lira-sign.svg │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── list.svg │ │ │ │ │ ├── location-arrow.svg │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ │ ├── low-vision.svg │ │ │ │ │ ├── luggage-cart.svg │ │ │ │ │ ├── magic.svg │ │ │ │ │ ├── magnet.svg │ │ │ │ │ ├── mail-bulk.svg │ │ │ │ │ ├── male.svg │ │ │ │ │ ├── map-marked-alt.svg │ │ │ │ │ ├── map-marked.svg │ │ │ │ │ ├── map-marker-alt.svg │ │ │ │ │ ├── map-marker.svg │ │ │ │ │ ├── map-pin.svg │ │ │ │ │ ├── map-signs.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── marker.svg │ │ │ │ │ ├── mars-double.svg │ │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ │ ├── mars-stroke.svg │ │ │ │ │ ├── mars.svg │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── medkit.svg │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── memory.svg │ │ │ │ │ ├── menorah.svg │ │ │ │ │ ├── mercury.svg │ │ │ │ │ ├── microchip.svg │ │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ │ ├── microphone-alt.svg │ │ │ │ │ ├── microphone-slash.svg │ │ │ │ │ ├── microphone.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── minus-circle.svg │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── mobile-alt.svg │ │ │ │ │ ├── mobile.svg │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ │ ├── money-bill-wave.svg │ │ │ │ │ ├── money-bill.svg │ │ │ │ │ ├── money-check-alt.svg │ │ │ │ │ ├── money-check.svg │ │ │ │ │ ├── monument.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── mortar-pestle.svg │ │ │ │ │ ├── mosque.svg │ │ │ │ │ ├── motorcycle.svg │ │ │ │ │ ├── mouse-pointer.svg │ │ │ │ │ ├── music.svg │ │ │ │ │ ├── neuter.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── not-equal.svg │ │ │ │ │ ├── notes-medical.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── oil-can.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── outdent.svg │ │ │ │ │ ├── paint-brush.svg │ │ │ │ │ ├── paint-roller.svg │ │ │ │ │ ├── palette.svg │ │ │ │ │ ├── pallet.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── parachute-box.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── parking.svg │ │ │ │ │ ├── passport.svg │ │ │ │ │ ├── pastafarianism.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── paw.svg │ │ │ │ │ ├── peace.svg │ │ │ │ │ ├── pen-alt.svg │ │ │ │ │ ├── pen-fancy.svg │ │ │ │ │ ├── pen-nib.svg │ │ │ │ │ ├── pen-square.svg │ │ │ │ │ ├── pen.svg │ │ │ │ │ ├── pencil-alt.svg │ │ │ │ │ ├── pencil-ruler.svg │ │ │ │ │ ├── people-carry.svg │ │ │ │ │ ├── percent.svg │ │ │ │ │ ├── percentage.svg │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ ├── phone-square.svg │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ ├── pills.svg │ │ │ │ │ ├── place-of-worship.svg │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ ├── plane-departure.svg │ │ │ │ │ ├── plane.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── plug.svg │ │ │ │ │ ├── plus-circle.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── plus.svg │ │ │ │ │ ├── podcast.svg │ │ │ │ │ ├── poll-h.svg │ │ │ │ │ ├── poll.svg │ │ │ │ │ ├── poo.svg │ │ │ │ │ ├── poop.svg │ │ │ │ │ ├── portrait.svg │ │ │ │ │ ├── pound-sign.svg │ │ │ │ │ ├── power-off.svg │ │ │ │ │ ├── pray.svg │ │ │ │ │ ├── praying-hands.svg │ │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ │ ├── prescription-bottle.svg │ │ │ │ │ ├── prescription.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── procedures.svg │ │ │ │ │ ├── project-diagram.svg │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ ├── qrcode.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── question.svg │ │ │ │ │ ├── quidditch.svg │ │ │ │ │ ├── quote-left.svg │ │ │ │ │ ├── quote-right.svg │ │ │ │ │ ├── quran.svg │ │ │ │ │ ├── random.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── recycle.svg │ │ │ │ │ ├── redo-alt.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ ├── reply.svg │ │ │ │ │ ├── retweet.svg │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ ├── road.svg │ │ │ │ │ ├── robot.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── route.svg │ │ │ │ │ ├── rss-square.svg │ │ │ │ │ ├── rss.svg │ │ │ │ │ ├── ruble-sign.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ │ ├── ruler-vertical.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ ├── search-dollar.svg │ │ │ │ │ ├── search-location.svg │ │ │ │ │ ├── search-minus.svg │ │ │ │ │ ├── search-plus.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── seedling.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── shapes.svg │ │ │ │ │ ├── share-alt-square.svg │ │ │ │ │ ├── share-alt.svg │ │ │ │ │ ├── share-square.svg │ │ │ │ │ ├── share.svg │ │ │ │ │ ├── shekel-sign.svg │ │ │ │ │ ├── shield-alt.svg │ │ │ │ │ ├── ship.svg │ │ │ │ │ ├── shipping-fast.svg │ │ │ │ │ ├── shoe-prints.svg │ │ │ │ │ ├── shopping-bag.svg │ │ │ │ │ ├── shopping-basket.svg │ │ │ │ │ ├── shopping-cart.svg │ │ │ │ │ ├── shower.svg │ │ │ │ │ ├── shuttle-van.svg │ │ │ │ │ ├── sign-in-alt.svg │ │ │ │ │ ├── sign-language.svg │ │ │ │ │ ├── sign-out-alt.svg │ │ │ │ │ ├── sign.svg │ │ │ │ │ ├── signal.svg │ │ │ │ │ ├── signature.svg │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ ├── skull.svg │ │ │ │ │ ├── sliders-h.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── smoking-ban.svg │ │ │ │ │ ├── smoking.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── socks.svg │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ │ ├── sort-amount-down.svg │ │ │ │ │ ├── sort-amount-up.svg │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ ├── sort.svg │ │ │ │ │ ├── spa.svg │ │ │ │ │ ├── space-shuttle.svg │ │ │ │ │ ├── spinner.svg │ │ │ │ │ ├── splotch.svg │ │ │ │ │ ├── spray-can.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-root-alt.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── stamp.svg │ │ │ │ │ ├── star-and-crescent.svg │ │ │ │ │ ├── star-half-alt.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star-of-david.svg │ │ │ │ │ ├── star-of-life.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── step-backward.svg │ │ │ │ │ ├── step-forward.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── store-alt.svg │ │ │ │ │ ├── store.svg │ │ │ │ │ ├── stream.svg │ │ │ │ │ ├── street-view.svg │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ ├── stroopwafel.svg │ │ │ │ │ ├── subscript.svg │ │ │ │ │ ├── subway.svg │ │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── superscript.svg │ │ │ │ │ ├── surprise.svg │ │ │ │ │ ├── swatchbook.svg │ │ │ │ │ ├── swimmer.svg │ │ │ │ │ ├── swimming-pool.svg │ │ │ │ │ ├── synagogue.svg │ │ │ │ │ ├── sync-alt.svg │ │ │ │ │ ├── sync.svg │ │ │ │ │ ├── syringe.svg │ │ │ │ │ ├── table-tennis.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── tablet-alt.svg │ │ │ │ │ ├── tablet.svg │ │ │ │ │ ├── tablets.svg │ │ │ │ │ ├── tachometer-alt.svg │ │ │ │ │ ├── tag.svg │ │ │ │ │ ├── tags.svg │ │ │ │ │ ├── tape.svg │ │ │ │ │ ├── tasks.svg │ │ │ │ │ ├── taxi.svg │ │ │ │ │ ├── teeth-open.svg │ │ │ │ │ ├── teeth.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── text-height.svg │ │ │ │ │ ├── text-width.svg │ │ │ │ │ ├── th-large.svg │ │ │ │ │ ├── th-list.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── theater-masks.svg │ │ │ │ │ ├── thermometer-empty.svg │ │ │ │ │ ├── thermometer-full.svg │ │ │ │ │ ├── thermometer-half.svg │ │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thumbtack.svg │ │ │ │ │ ├── ticket-alt.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── times.svg │ │ │ │ │ ├── tint-slash.svg │ │ │ │ │ ├── tint.svg │ │ │ │ │ ├── tired.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ ├── tooth.svg │ │ │ │ │ ├── torah.svg │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ ├── trademark.svg │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ ├── train.svg │ │ │ │ │ ├── transgender-alt.svg │ │ │ │ │ ├── transgender.svg │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── tree.svg │ │ │ │ │ ├── trophy.svg │ │ │ │ │ ├── truck-loading.svg │ │ │ │ │ ├── truck-monster.svg │ │ │ │ │ ├── truck-moving.svg │ │ │ │ │ ├── truck-pickup.svg │ │ │ │ │ ├── truck.svg │ │ │ │ │ ├── tshirt.svg │ │ │ │ │ ├── tty.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── umbrella-beach.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── underline.svg │ │ │ │ │ ├── undo-alt.svg │ │ │ │ │ ├── undo.svg │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ ├── university.svg │ │ │ │ │ ├── unlink.svg │ │ │ │ │ ├── unlock-alt.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ ├── user-alt-slash.svg │ │ │ │ │ ├── user-alt.svg │ │ │ │ │ ├── user-astronaut.svg │ │ │ │ │ ├── user-check.svg │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ ├── user-clock.svg │ │ │ │ │ ├── user-cog.svg │ │ │ │ │ ├── user-edit.svg │ │ │ │ │ ├── user-friends.svg │ │ │ │ │ ├── user-graduate.svg │ │ │ │ │ ├── user-lock.svg │ │ │ │ │ ├── user-md.svg │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ ├── user-ninja.svg │ │ │ │ │ ├── user-plus.svg │ │ │ │ │ ├── user-secret.svg │ │ │ │ │ ├── user-shield.svg │ │ │ │ │ ├── user-slash.svg │ │ │ │ │ ├── user-tag.svg │ │ │ │ │ ├── user-tie.svg │ │ │ │ │ ├── user-times.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── users-cog.svg │ │ │ │ │ ├── users.svg │ │ │ │ │ ├── utensil-spoon.svg │ │ │ │ │ ├── utensils.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ ├── venus.svg │ │ │ │ │ ├── vial.svg │ │ │ │ │ ├── vials.svg │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── vihara.svg │ │ │ │ │ ├── volleyball-ball.svg │ │ │ │ │ ├── volume-down.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── volume-up.svg │ │ │ │ │ ├── walking.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── warehouse.svg │ │ │ │ │ ├── weight-hanging.svg │ │ │ │ │ ├── weight.svg │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── window-close.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ │ ├── wine-glass.svg │ │ │ │ │ ├── won-sign.svg │ │ │ │ │ ├── wrench.svg │ │ │ │ │ ├── x-ray.svg │ │ │ │ │ ├── yen-sign.svg │ │ │ │ │ └── yin-yang.svg │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── fullcalendar │ │ │ ├── fullcalendar.min-rtl.css │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.min.css │ │ │ ├── gcal.min.js │ │ │ ├── locale-all.js │ │ │ └── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── ko.js │ │ │ │ ├── lb.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ ├── gallery │ │ │ ├── fonts │ │ │ │ ├── lg.eot │ │ │ │ ├── lg.svg │ │ │ │ ├── lg.ttf │ │ │ │ └── lg.woff │ │ │ ├── gallery.css │ │ │ ├── jquery.mousewheel.min.js │ │ │ ├── lg-autoplay.js │ │ │ ├── lg-fullscreen.js │ │ │ ├── lg-hash.js │ │ │ ├── lg-pager.js │ │ │ ├── lg-share.js │ │ │ ├── lg-zoom.js │ │ │ ├── lightgallery-1.js │ │ │ ├── lightgallery-all.min.js │ │ │ ├── lightgallery.js │ │ │ ├── loading.gif │ │ │ └── picturefill.js │ │ ├── gmaps │ │ │ ├── gmaps.min.js │ │ │ ├── jsdoc.json │ │ │ ├── lib │ │ │ │ ├── gmaps.controls.js │ │ │ │ ├── gmaps.core.js │ │ │ │ ├── gmaps.events.js │ │ │ │ ├── gmaps.geofences.js │ │ │ │ ├── gmaps.geometry.js │ │ │ │ ├── gmaps.layers.js │ │ │ │ ├── gmaps.map_types.js │ │ │ │ ├── gmaps.markers.js │ │ │ │ ├── gmaps.native_extensions.js │ │ │ │ ├── gmaps.overlays.js │ │ │ │ ├── gmaps.routes.js │ │ │ │ ├── gmaps.static.js │ │ │ │ ├── gmaps.streetview.js │ │ │ │ ├── gmaps.styles.js │ │ │ │ └── gmaps.utils.js │ │ │ └── umd.hbs │ │ ├── horizontal-menu │ │ │ └── horizontal-menu-2 │ │ │ │ └── horizontal-menu.js │ │ ├── images-comparsion │ │ │ ├── jquery.event.move.js │ │ │ ├── jquery.twentytwenty.js │ │ │ └── twentytwenty.css │ │ ├── inputtags │ │ │ ├── inputtags.css │ │ │ └── inputtags.js │ │ ├── ion-rangeslider │ │ │ ├── css │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ ├── ion.rangeSlider.skinHTML5.css │ │ │ │ ├── ion.rangeSlider.skinModern.css │ │ │ │ ├── ion.rangeSlider.skinNice.css │ │ │ │ ├── ion.rangeSlider.skinSimple.css │ │ │ │ └── normalize.css │ │ │ ├── img │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ ├── sprite-skin-modern.png │ │ │ │ ├── sprite-skin-nice.png │ │ │ │ └── sprite-skin-simple.png │ │ │ └── js │ │ │ │ └── ion.rangeSlider.min.js │ │ ├── ionicons │ │ │ ├── cheatsheet.html │ │ │ ├── collection │ │ │ │ ├── collection-manifest.json │ │ │ │ ├── icon │ │ │ │ │ ├── icon.css │ │ │ │ │ ├── icon.js │ │ │ │ │ └── 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 │ │ │ │ └── interface.js │ │ │ ├── css │ │ │ │ ├── ionicons-core.min.css │ │ │ │ └── ionicons.min.css │ │ │ ├── esm │ │ │ │ ├── es5 │ │ │ │ │ ├── 5nonw4yz.js │ │ │ │ │ ├── 5nonw4yz.sc.js │ │ │ │ │ ├── ionicons.components.js │ │ │ │ │ ├── ionicons.core.js │ │ │ │ │ ├── ionicons.define.js │ │ │ │ │ ├── ionicons.global.js │ │ │ │ │ └── polyfills │ │ │ │ │ │ ├── array.js │ │ │ │ │ │ ├── dom.js │ │ │ │ │ │ ├── fetch.js │ │ │ │ │ │ ├── object.js │ │ │ │ │ │ ├── promise.js │ │ │ │ │ │ └── string.js │ │ │ │ └── index.js │ │ │ ├── fonts │ │ │ │ ├── ionicons.eot │ │ │ │ ├── ionicons.svg │ │ │ │ ├── ionicons.ttf │ │ │ │ ├── ionicons.woff │ │ │ │ └── ionicons.woff2 │ │ │ ├── index.js │ │ │ ├── ionicons.js │ │ │ └── ionicons │ │ │ │ ├── 5nonw4yz.es5.js │ │ │ │ ├── 5nonw4yz.js │ │ │ │ ├── 5nonw4yz.sc.es5.js │ │ │ │ ├── 5nonw4yz.sc.js │ │ │ │ ├── data.json │ │ │ │ ├── ionicons.global.js │ │ │ │ ├── ionicons.suuqn5vt.js │ │ │ │ ├── ionicons.z18qlu2u.js │ │ │ │ └── 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 │ │ ├── jQuerytransfer │ │ │ ├── icon_font │ │ │ │ ├── font │ │ │ │ │ ├── iconfont.eot │ │ │ │ │ ├── iconfont.svg │ │ │ │ │ ├── iconfont.ttf │ │ │ │ │ └── iconfont.woff │ │ │ │ └── icon_font.css │ │ │ ├── jquery.transfer.css │ │ │ └── jquery.transfer.js │ │ ├── jquery-countdown │ │ │ ├── count-down.js │ │ │ ├── countdown.css │ │ │ ├── countdown.js │ │ │ ├── jquery.countdown.js │ │ │ ├── jquery.lwtCountdown-1.0.js │ │ │ └── jquery.plugin.min.js │ │ ├── jquery-nice-select │ │ │ ├── css │ │ │ │ └── nice-select.css │ │ │ └── js │ │ │ │ ├── jquery.nice-select.js │ │ │ │ └── nice-select.js │ │ ├── jquery-simple-datetimepicker │ │ │ ├── CHANGES │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.simple-dtpicker.css │ │ │ └── jquery.simple-dtpicker.js │ │ ├── jquery-sparkline │ │ │ ├── Changelog.txt │ │ │ ├── build.js │ │ │ └── jquery.sparkline.min.js │ │ ├── jquery-steps │ │ │ ├── LICENSE.txt │ │ │ ├── build │ │ │ │ ├── jQuery.Steps.1.1.0.nupkg │ │ │ │ ├── jquery.steps-1.1.0.zip │ │ │ │ └── jquery.steps.min.js │ │ │ ├── jquery.steps.css │ │ │ ├── jquery.steps.min.js │ │ │ ├── lib │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ ├── jquery-1.11.1.min.js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ ├── jquery.cookie-1.3.1.js │ │ │ │ └── modernizr-2.6.2.min.js │ │ │ ├── nuget │ │ │ │ ├── NuGet.exe │ │ │ │ └── jQuery.Steps.nuspec │ │ │ └── steps.jquery.json │ │ ├── jquery-ui-slider │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── external │ │ │ │ └── jquery │ │ │ │ │ └── jquery.js │ │ │ ├── images │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── index.html │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery-ui.structure.min.css │ │ │ └── jquery-ui.theme.min.css │ │ ├── jquery-ui │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── build │ │ │ │ ├── release-test.js │ │ │ │ ├── release.js │ │ │ │ ├── tasks │ │ │ │ │ ├── build.js │ │ │ │ │ └── testswarm.js │ │ │ │ └── themes │ │ │ ├── demos │ │ │ │ ├── accordion │ │ │ │ │ ├── collapsible.html │ │ │ │ │ ├── custom-icons.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── fillspace.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── no-auto-height.html │ │ │ │ │ └── sortable.html │ │ │ │ ├── autocomplete │ │ │ │ │ ├── categories.html │ │ │ │ │ ├── combobox.html │ │ │ │ │ ├── custom-data.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── folding.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── jquery_32x32.png │ │ │ │ │ │ ├── jqueryui_32x32.png │ │ │ │ │ │ ├── sizzlejs_32x32.png │ │ │ │ │ │ ├── transparent_1x1.png │ │ │ │ │ │ └── ui-anim_basic_16x16.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── london.xml │ │ │ │ │ ├── maxheight.html │ │ │ │ │ ├── multiple-remote.html │ │ │ │ │ ├── multiple.html │ │ │ │ │ ├── remote-jsonp.html │ │ │ │ │ ├── remote-with-cache.html │ │ │ │ │ ├── remote.html │ │ │ │ │ ├── search.php │ │ │ │ │ └── xml.html │ │ │ │ ├── bootstrap.js │ │ │ │ ├── button │ │ │ │ │ ├── default.html │ │ │ │ │ ├── icons.html │ │ │ │ │ └── index.html │ │ │ │ ├── checkboxradio │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── jquery-mobile.png │ │ │ │ │ │ ├── jquery-ui.png │ │ │ │ │ │ ├── jquery.png │ │ │ │ │ │ ├── qunit.png │ │ │ │ │ │ └── sizzle.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── no-icons.html │ │ │ │ │ ├── product-selector.html │ │ │ │ │ └── radiogroup.html │ │ │ │ ├── controlgroup │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── splitbutton.html │ │ │ │ │ └── toolbar.html │ │ │ │ ├── datepicker │ │ │ │ │ ├── alt-field.html │ │ │ │ │ ├── animation.html │ │ │ │ │ ├── buttonbar.html │ │ │ │ │ ├── date-formats.html │ │ │ │ │ ├── date-range.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── dropdown-month-year.html │ │ │ │ │ ├── icon-trigger.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── calendar.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inline.html │ │ │ │ │ ├── localization.html │ │ │ │ │ ├── min-max.html │ │ │ │ │ ├── multiple-calendars.html │ │ │ │ │ ├── other-months.html │ │ │ │ │ └── show-week.html │ │ │ │ ├── demos.css │ │ │ │ ├── dialog │ │ │ │ │ ├── animated.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── modal-confirmation.html │ │ │ │ │ ├── modal-form.html │ │ │ │ │ └── modal-message.html │ │ │ │ ├── draggable │ │ │ │ │ ├── constrain-movement.html │ │ │ │ │ ├── cursor-style.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── handle.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── revert.html │ │ │ │ │ ├── scroll.html │ │ │ │ │ ├── snap-to.html │ │ │ │ │ ├── sortable.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── droppable │ │ │ │ │ ├── accepted-elements.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── high_tatras.jpg │ │ │ │ │ │ ├── high_tatras2.jpg │ │ │ │ │ │ ├── high_tatras2_min.jpg │ │ │ │ │ │ ├── high_tatras3.jpg │ │ │ │ │ │ ├── high_tatras3_min.jpg │ │ │ │ │ │ ├── high_tatras4.jpg │ │ │ │ │ │ ├── high_tatras4_min.jpg │ │ │ │ │ │ └── high_tatras_min.jpg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── photo-manager.html │ │ │ │ │ ├── propagation.html │ │ │ │ │ ├── revert.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── effect │ │ │ │ │ ├── addClass.html │ │ │ │ │ ├── animate.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── easing.html │ │ │ │ │ ├── hide.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── removeClass.html │ │ │ │ │ ├── show.html │ │ │ │ │ ├── switchClass.html │ │ │ │ │ ├── toggle.html │ │ │ │ │ └── toggleClass.html │ │ │ │ ├── images │ │ │ │ │ ├── calendar.gif │ │ │ │ │ ├── demo-config-on-tile.gif │ │ │ │ │ ├── demo-config-on.gif │ │ │ │ │ ├── demo-spindown-closed.gif │ │ │ │ │ ├── demo-spindown-open.gif │ │ │ │ │ ├── icon-docs-info.gif │ │ │ │ │ └── pbar-ani.gif │ │ │ │ ├── index.html │ │ │ │ ├── menu │ │ │ │ │ ├── categories.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── icons.html │ │ │ │ │ └── index.html │ │ │ │ ├── position │ │ │ │ │ ├── cycler.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── earth.jpg │ │ │ │ │ │ ├── flight.jpg │ │ │ │ │ │ └── rocket.jpg │ │ │ │ │ └── index.html │ │ │ │ ├── progressbar │ │ │ │ │ ├── default.html │ │ │ │ │ ├── download.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── pbar-ani.gif │ │ │ │ │ ├── indeterminate.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── label.html │ │ │ │ ├── resizable │ │ │ │ │ ├── animate.html │ │ │ │ │ ├── aspect-ratio.html │ │ │ │ │ ├── constrain-area.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── helper.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── max-min.html │ │ │ │ │ ├── snap-to-grid.html │ │ │ │ │ ├── synchronous-resize.html │ │ │ │ │ ├── textarea.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── selectable │ │ │ │ │ ├── default.html │ │ │ │ │ ├── display-grid.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── serialize.html │ │ │ │ ├── selectmenu │ │ │ │ │ ├── custom_render.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── 24-podcast-square.png │ │ │ │ │ │ ├── 24-rss-square.png │ │ │ │ │ │ └── 24-video-square.png │ │ │ │ │ ├── index.html │ │ │ │ │ └── product-selection.html │ │ │ │ ├── slider │ │ │ │ │ ├── colorpicker.html │ │ │ │ │ ├── custom-handle.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── hotelrooms.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── multiple-vertical.html │ │ │ │ │ ├── range-vertical.html │ │ │ │ │ ├── range.html │ │ │ │ │ ├── rangemax.html │ │ │ │ │ ├── rangemin.html │ │ │ │ │ ├── slider-vertical.html │ │ │ │ │ └── steps.html │ │ │ │ ├── sortable │ │ │ │ │ ├── connect-lists.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── display-grid.html │ │ │ │ │ ├── empty-lists.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── items.html │ │ │ │ │ ├── placeholder.html │ │ │ │ │ └── portlets.html │ │ │ │ ├── spinner │ │ │ │ │ ├── currency.html │ │ │ │ │ ├── decimal.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── latlong.html │ │ │ │ │ ├── overflow.html │ │ │ │ │ └── time.html │ │ │ │ ├── tabs │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── ajax │ │ │ │ │ │ ├── content1.html │ │ │ │ │ │ ├── content2.html │ │ │ │ │ │ ├── content3-slow.php │ │ │ │ │ │ └── content4-broken.php │ │ │ │ │ ├── collapsible.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manipulation.html │ │ │ │ │ ├── mouseover.html │ │ │ │ │ ├── sortable.html │ │ │ │ │ └── vertical.html │ │ │ │ ├── tooltip │ │ │ │ │ ├── ajax │ │ │ │ │ │ ├── content1.html │ │ │ │ │ │ └── content2.html │ │ │ │ │ ├── custom-animation.html │ │ │ │ │ ├── custom-content.html │ │ │ │ │ ├── custom-style.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── forms.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── st-stephens.jpg │ │ │ │ │ │ └── tower-bridge.jpg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tracking.html │ │ │ │ │ └── video-player.html │ │ │ │ └── widget │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ ├── external │ │ │ │ ├── globalize │ │ │ │ │ ├── globalize.culture.de-DE.js │ │ │ │ │ ├── globalize.culture.ja-JP.js │ │ │ │ │ └── globalize.js │ │ │ │ ├── jquery-1.10.0 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.10.1 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.10.2 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.11.0 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.11.1 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.11.2 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.11.3 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.12.0 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.12.1 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.12.2 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.12.3 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.12.4 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.7.0 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.7.1 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.7.2 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.8.0 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.8.1 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.8.2 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.8.3 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.9.0 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-1.9.1 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.0.0 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.0.1 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.0.2 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.0.3 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.1.0 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.1.1 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.1.2 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.1.3 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.1.4 │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.2.0 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.2.1 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.2.2 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.2.3 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-2.2.4 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-3.0.0 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-3.1.0 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-custom │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jquery-mousewheel │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.mousewheel.js │ │ │ │ ├── jquery-simulate │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── jquery.simulate.js │ │ │ │ ├── jquery │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── jquery.js │ │ │ │ ├── jshint │ │ │ │ │ └── jshint.js │ │ │ │ ├── qunit-assert-classes │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── qunit-assert-classes.js │ │ │ │ ├── qunit-assert-close │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── qunit-assert-close.js │ │ │ │ ├── qunit-composite │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── qunit-composite.css │ │ │ │ │ └── qunit-composite.js │ │ │ │ ├── qunit │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ ├── qunit.css │ │ │ │ │ └── qunit.js │ │ │ │ └── requirejs │ │ │ │ │ └── require.js │ │ │ ├── themes │ │ │ │ └── base │ │ │ │ │ ├── accordion.css │ │ │ │ │ ├── all.css │ │ │ │ │ ├── autocomplete.css │ │ │ │ │ ├── base.css │ │ │ │ │ ├── button.css │ │ │ │ │ ├── checkboxradio.css │ │ │ │ │ ├── controlgroup.css │ │ │ │ │ ├── core.css │ │ │ │ │ ├── datepicker.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── draggable.css │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── menu.css │ │ │ │ │ ├── progressbar.css │ │ │ │ │ ├── resizable.css │ │ │ │ │ ├── selectable.css │ │ │ │ │ ├── selectmenu.css │ │ │ │ │ ├── slider.css │ │ │ │ │ ├── sortable.css │ │ │ │ │ ├── spinner.css │ │ │ │ │ ├── tabs.css │ │ │ │ │ ├── theme.css │ │ │ │ │ └── tooltip.css │ │ │ └── ui │ │ │ │ ├── core.js │ │ │ │ ├── data.js │ │ │ │ ├── disable-selection.js │ │ │ │ ├── effect.js │ │ │ │ ├── effects │ │ │ │ ├── effect-blind.js │ │ │ │ ├── effect-bounce.js │ │ │ │ ├── effect-clip.js │ │ │ │ ├── effect-drop.js │ │ │ │ ├── effect-explode.js │ │ │ │ ├── effect-fade.js │ │ │ │ ├── effect-fold.js │ │ │ │ ├── effect-highlight.js │ │ │ │ ├── effect-puff.js │ │ │ │ ├── effect-pulsate.js │ │ │ │ ├── effect-scale.js │ │ │ │ ├── effect-shake.js │ │ │ │ ├── effect-size.js │ │ │ │ ├── effect-slide.js │ │ │ │ └── effect-transfer.js │ │ │ │ ├── escape-selector.js │ │ │ │ ├── focusable.js │ │ │ │ ├── form-reset-mixin.js │ │ │ │ ├── form.js │ │ │ │ ├── i18n │ │ │ │ ├── datepicker-af.js │ │ │ │ ├── datepicker-ar-DZ.js │ │ │ │ ├── datepicker-ar.js │ │ │ │ ├── datepicker-az.js │ │ │ │ ├── datepicker-be.js │ │ │ │ ├── datepicker-bg.js │ │ │ │ ├── datepicker-bs.js │ │ │ │ ├── datepicker-ca.js │ │ │ │ ├── datepicker-cs.js │ │ │ │ ├── datepicker-cy-GB.js │ │ │ │ ├── datepicker-da.js │ │ │ │ ├── datepicker-de.js │ │ │ │ ├── datepicker-el.js │ │ │ │ ├── datepicker-en-AU.js │ │ │ │ ├── datepicker-en-GB.js │ │ │ │ ├── datepicker-en-NZ.js │ │ │ │ ├── datepicker-eo.js │ │ │ │ ├── datepicker-es.js │ │ │ │ ├── datepicker-et.js │ │ │ │ ├── datepicker-eu.js │ │ │ │ ├── datepicker-fa.js │ │ │ │ ├── datepicker-fi.js │ │ │ │ ├── datepicker-fo.js │ │ │ │ ├── datepicker-fr-CA.js │ │ │ │ ├── datepicker-fr-CH.js │ │ │ │ ├── datepicker-fr.js │ │ │ │ ├── datepicker-gl.js │ │ │ │ ├── datepicker-he.js │ │ │ │ ├── datepicker-hi.js │ │ │ │ ├── datepicker-hr.js │ │ │ │ ├── datepicker-hu.js │ │ │ │ ├── datepicker-hy.js │ │ │ │ ├── datepicker-id.js │ │ │ │ ├── datepicker-is.js │ │ │ │ ├── datepicker-it-CH.js │ │ │ │ ├── datepicker-it.js │ │ │ │ ├── datepicker-ja.js │ │ │ │ ├── datepicker-ka.js │ │ │ │ ├── datepicker-kk.js │ │ │ │ ├── datepicker-km.js │ │ │ │ ├── datepicker-ko.js │ │ │ │ ├── datepicker-ky.js │ │ │ │ ├── datepicker-lb.js │ │ │ │ ├── datepicker-lt.js │ │ │ │ ├── datepicker-lv.js │ │ │ │ ├── datepicker-mk.js │ │ │ │ ├── datepicker-ml.js │ │ │ │ ├── datepicker-ms.js │ │ │ │ ├── datepicker-nb.js │ │ │ │ ├── datepicker-nl-BE.js │ │ │ │ ├── datepicker-nl.js │ │ │ │ ├── datepicker-nn.js │ │ │ │ ├── datepicker-no.js │ │ │ │ ├── datepicker-pl.js │ │ │ │ ├── datepicker-pt-BR.js │ │ │ │ ├── datepicker-pt.js │ │ │ │ ├── datepicker-rm.js │ │ │ │ ├── datepicker-ro.js │ │ │ │ ├── datepicker-ru.js │ │ │ │ ├── datepicker-sk.js │ │ │ │ ├── datepicker-sl.js │ │ │ │ ├── datepicker-sq.js │ │ │ │ ├── datepicker-sr-SR.js │ │ │ │ ├── datepicker-sr.js │ │ │ │ ├── datepicker-sv.js │ │ │ │ ├── datepicker-ta.js │ │ │ │ ├── datepicker-th.js │ │ │ │ ├── datepicker-tj.js │ │ │ │ ├── datepicker-tr.js │ │ │ │ ├── datepicker-uk.js │ │ │ │ ├── datepicker-vi.js │ │ │ │ ├── datepicker-zh-CN.js │ │ │ │ ├── datepicker-zh-HK.js │ │ │ │ └── datepicker-zh-TW.js │ │ │ │ ├── ie.js │ │ │ │ ├── jquery-1-7.js │ │ │ │ ├── keycode.js │ │ │ │ ├── labels.js │ │ │ │ ├── plugin.js │ │ │ │ ├── position.js │ │ │ │ ├── safe-active-element.js │ │ │ │ ├── safe-blur.js │ │ │ │ ├── scroll-parent.js │ │ │ │ ├── tabbable.js │ │ │ │ ├── unique-id.js │ │ │ │ ├── version.js │ │ │ │ ├── widget.js │ │ │ │ └── widgets │ │ │ │ ├── accordion.js │ │ │ │ ├── autocomplete.js │ │ │ │ ├── button.js │ │ │ │ ├── checkboxradio.js │ │ │ │ ├── controlgroup.js │ │ │ │ ├── datepicker.js │ │ │ │ ├── dialog.js │ │ │ │ ├── draggable.js │ │ │ │ ├── droppable.js │ │ │ │ ├── menu.js │ │ │ │ ├── mouse.js │ │ │ │ ├── progressbar.js │ │ │ │ ├── resizable.js │ │ │ │ ├── selectable.js │ │ │ │ ├── selectmenu.js │ │ │ │ ├── slider.js │ │ │ │ ├── sortable.js │ │ │ │ ├── spinner.js │ │ │ │ ├── tabs.js │ │ │ │ └── tooltip.js │ │ ├── jquery.flot │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── component.json │ │ │ ├── excanvas.min.js │ │ │ ├── flot.jquery.json │ │ │ ├── jquery.colorhelpers.js │ │ │ ├── jquery.flot.canvas.js │ │ │ ├── jquery.flot.categories.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.errorbars.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.image.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.symbol.js │ │ │ ├── jquery.flot.threshold.js │ │ │ ├── jquery.flot.time.js │ │ │ └── jquery.js │ │ ├── jquery.maskedinput │ │ │ ├── gruntfile.js │ │ │ ├── jquery.maskedinput.js │ │ │ ├── jquery.maskedinput.nuspec │ │ │ └── lib │ │ │ │ ├── jquery-1.8.3.min.js │ │ │ │ └── jquery-1.9.0.min.js │ │ ├── jquery │ │ │ ├── core.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.slim.min.js │ │ ├── jqvmap │ │ │ ├── jquery.vmap.min.js │ │ │ ├── jqvmap.min.css │ │ │ └── maps │ │ │ │ ├── continents │ │ │ │ ├── jquery.vmap.africa.js │ │ │ │ ├── jquery.vmap.asia.js │ │ │ │ ├── jquery.vmap.australia.js │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ ├── jquery.vmap.north-america.js │ │ │ │ └── jquery.vmap.south-america.js │ │ │ │ ├── jquery.vmap.algeria.js │ │ │ │ ├── jquery.vmap.argentina.js │ │ │ │ ├── jquery.vmap.brazil.js │ │ │ │ ├── jquery.vmap.canada.js │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ ├── jquery.vmap.france.js │ │ │ │ ├── jquery.vmap.germany.js │ │ │ │ ├── jquery.vmap.greece.js │ │ │ │ ├── jquery.vmap.iran.js │ │ │ │ ├── jquery.vmap.iraq.js │ │ │ │ ├── jquery.vmap.russia.js │ │ │ │ ├── jquery.vmap.tunisia.js │ │ │ │ ├── jquery.vmap.turkey.js │ │ │ │ ├── jquery.vmap.usa.js │ │ │ │ └── jquery.vmap.world.js │ │ ├── leaflet │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet-src.esm.js │ │ │ ├── leaflet-src.js │ │ │ ├── leaflet.css │ │ │ └── leaflet.js │ │ ├── lightslider │ │ │ ├── css │ │ │ │ └── lightslider.min.css │ │ │ ├── img │ │ │ │ └── controls.png │ │ │ └── js │ │ │ │ └── lightslider.min.js │ │ ├── line-awesome │ │ │ ├── css │ │ │ │ ├── line-awesome-font-awesome.min.css │ │ │ │ ├── line-awesome.css │ │ │ │ └── line-awesome.min.css │ │ │ └── fonts │ │ │ │ ├── la-brands-400.eot │ │ │ │ ├── la-brands-400.svg │ │ │ │ ├── la-brands-400.ttf │ │ │ │ ├── la-brands-400.woff │ │ │ │ ├── la-brands-400.woff2 │ │ │ │ ├── la-regular-400.eot │ │ │ │ ├── la-regular-400.svg │ │ │ │ ├── la-regular-400.ttf │ │ │ │ ├── la-regular-400.woff │ │ │ │ ├── la-regular-400.woff2 │ │ │ │ ├── la-solid-900.eot │ │ │ │ ├── la-solid-900.svg │ │ │ │ ├── la-solid-900.ttf │ │ │ │ ├── la-solid-900.woff │ │ │ │ ├── la-solid-900.woff2 │ │ │ │ └── line-awesome.svg │ │ ├── materialdesignicons │ │ │ ├── fonts │ │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ │ ├── Material-Design-Iconic-Font.woff2 │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ ├── materialdesignicons-webfont.svg │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ │ └── materialdesignicons.css │ │ ├── moment │ │ │ ├── ender.js │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ └── zh-tw.js │ │ │ ├── min │ │ │ │ ├── locales.min.js │ │ │ │ ├── moment-with-locales.min.js │ │ │ │ └── moment.min.js │ │ │ ├── moment.js │ │ │ └── package.js │ │ ├── morris.js │ │ │ ├── bower.travis.json │ │ │ ├── morris.css │ │ │ └── morris.min.js │ │ ├── mscrollbar │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ └── jquery.mCustomScrollbar.css │ │ ├── multislider │ │ │ ├── multislider.css │ │ │ └── multislider.js │ │ ├── newsticker │ │ │ ├── breaking-news-ticker.css │ │ │ ├── breaking-news-ticker.min.js │ │ │ ├── jquery.jConveyorTicker.css │ │ │ ├── jquery.jConveyorTicker.js │ │ │ └── newsticker.js │ │ ├── notify │ │ │ ├── css │ │ │ │ └── notifIt.css │ │ │ └── js │ │ │ │ ├── notifIt.js │ │ │ │ └── notifit-custom.js │ │ ├── owl-carousel │ │ │ ├── owl-main.js │ │ │ ├── owl.carousel.css │ │ │ └── owl.carousel.js │ │ ├── parsleyjs │ │ │ ├── i18n │ │ │ │ ├── al.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.extra.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.extra.js │ │ │ │ ├── de.js │ │ │ │ ├── el.extra.js │ │ │ │ ├── el.js │ │ │ │ ├── en.extra.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.extra.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.extra.js │ │ │ │ ├── fr.js │ │ │ │ ├── he.extra.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.extra.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.extra.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.extra.js │ │ │ │ ├── id.js │ │ │ │ ├── it.extra.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.extra.js │ │ │ │ ├── ja.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.extra.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.extra.js │ │ │ │ ├── lv.js │ │ │ │ ├── ms.extra.js │ │ │ │ ├── ms.js │ │ │ │ ├── nl.extra.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt-pt.js │ │ │ │ ├── ro.extra.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.extra.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.extra.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.extra.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr.extra.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.extra.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tr.js │ │ │ │ ├── ua.extra.js │ │ │ │ ├── ua.js │ │ │ │ ├── uk.extra.js │ │ │ │ ├── uk.js │ │ │ │ ├── zh_cn.extra.js │ │ │ │ ├── zh_cn.js │ │ │ │ └── zh_tw.js │ │ │ └── parsley.min.js │ │ ├── particles.js-master │ │ │ ├── particles.js │ │ │ ├── particles.json │ │ │ ├── particlesapp_bubble.js │ │ │ ├── particlesapp_default.js │ │ │ ├── particlesapp_default_dots.js │ │ │ ├── particlesapp_direction.js │ │ │ └── particlesapp_snow.js │ │ ├── peity │ │ │ ├── LICENCE │ │ │ └── jquery.peity.min.js │ │ ├── perfect-scrollbar │ │ │ ├── p-scroll.js │ │ │ ├── perfect-scrollbar.common.js │ │ │ ├── perfect-scrollbar.esm.js │ │ │ └── perfect-scrollbar.min.js │ │ ├── pickerjs │ │ │ ├── picker.common.js │ │ │ ├── picker.esm.js │ │ │ ├── picker.min.css │ │ │ └── picker.min.js │ │ ├── popper.js │ │ │ ├── esm │ │ │ │ ├── popper-utils.min.js │ │ │ │ └── popper.min.js │ │ │ ├── popper-utils.min.js │ │ │ ├── popper.min.js │ │ │ └── umd │ │ │ │ ├── popper-utils.min.js │ │ │ │ └── popper.min.js │ │ ├── prism │ │ │ ├── prism.css │ │ │ └── prism.js │ │ ├── prismjs │ │ │ ├── .DS_Store │ │ │ ├── components.js │ │ │ ├── components.json │ │ │ ├── components │ │ │ │ ├── index.js │ │ │ │ ├── prism-abap.min.js │ │ │ │ ├── prism-actionscript.min.js │ │ │ │ ├── prism-ada.min.js │ │ │ │ ├── prism-apacheconf.min.js │ │ │ │ ├── prism-apl.min.js │ │ │ │ ├── prism-applescript.min.js │ │ │ │ ├── prism-arduino.min.js │ │ │ │ ├── prism-arff.min.js │ │ │ │ ├── prism-asciidoc.min.js │ │ │ │ ├── prism-asm6502.min.js │ │ │ │ ├── prism-aspnet.min.js │ │ │ │ ├── prism-autohotkey.min.js │ │ │ │ ├── prism-autoit.min.js │ │ │ │ ├── prism-bash.min.js │ │ │ │ ├── prism-basic.min.js │ │ │ │ ├── prism-batch.min.js │ │ │ │ ├── prism-bison.min.js │ │ │ │ ├── prism-brainfuck.min.js │ │ │ │ ├── prism-bro.min.js │ │ │ │ ├── prism-c.min.js │ │ │ │ ├── prism-clike.min.js │ │ │ │ ├── prism-clojure.min.js │ │ │ │ ├── prism-coffeescript.min.js │ │ │ │ ├── prism-core.min.js │ │ │ │ ├── prism-cpp.min.js │ │ │ │ ├── prism-crystal.min.js │ │ │ │ ├── prism-csharp.min.js │ │ │ │ ├── prism-csp.min.js │ │ │ │ ├── prism-css-extras.min.js │ │ │ │ ├── prism-css.min.js │ │ │ │ ├── prism-d.min.js │ │ │ │ ├── prism-dart.min.js │ │ │ │ ├── prism-diff.min.js │ │ │ │ ├── prism-django.min.js │ │ │ │ ├── prism-docker.min.js │ │ │ │ ├── prism-eiffel.min.js │ │ │ │ ├── prism-elixir.min.js │ │ │ │ ├── prism-elm.min.js │ │ │ │ ├── prism-erb.min.js │ │ │ │ ├── prism-erlang.min.js │ │ │ │ ├── prism-flow.min.js │ │ │ │ ├── prism-fortran.min.js │ │ │ │ ├── prism-fsharp.min.js │ │ │ │ ├── prism-gedcom.min.js │ │ │ │ ├── prism-gherkin.min.js │ │ │ │ ├── prism-git.min.js │ │ │ │ ├── prism-glsl.min.js │ │ │ │ ├── prism-go.min.js │ │ │ │ ├── prism-graphql.min.js │ │ │ │ ├── prism-groovy.min.js │ │ │ │ ├── prism-haml.min.js │ │ │ │ ├── prism-handlebars.min.js │ │ │ │ ├── prism-haskell.min.js │ │ │ │ ├── prism-haxe.min.js │ │ │ │ ├── prism-hpkp.min.js │ │ │ │ ├── prism-hsts.min.js │ │ │ │ ├── prism-http.min.js │ │ │ │ ├── prism-ichigojam.min.js │ │ │ │ ├── prism-icon.min.js │ │ │ │ ├── prism-inform7.min.js │ │ │ │ ├── prism-ini.min.js │ │ │ │ ├── prism-io.min.js │ │ │ │ ├── prism-j.min.js │ │ │ │ ├── prism-java.min.js │ │ │ │ ├── prism-javascript.min.js │ │ │ │ ├── prism-jolie.min.js │ │ │ │ ├── prism-json.min.js │ │ │ │ ├── prism-jsx.min.js │ │ │ │ ├── prism-julia.min.js │ │ │ │ ├── prism-keyman.min.js │ │ │ │ ├── prism-kotlin.min.js │ │ │ │ ├── prism-latex.min.js │ │ │ │ ├── prism-less.min.js │ │ │ │ ├── prism-liquid.min.js │ │ │ │ ├── prism-lisp.min.js │ │ │ │ ├── prism-livescript.min.js │ │ │ │ ├── prism-lolcode.min.js │ │ │ │ ├── prism-lua.min.js │ │ │ │ ├── prism-makefile.min.js │ │ │ │ ├── prism-markdown.min.js │ │ │ │ ├── prism-markup-templating.min.js │ │ │ │ ├── prism-markup.min.js │ │ │ │ ├── prism-matlab.min.js │ │ │ │ ├── prism-mel.min.js │ │ │ │ ├── prism-mizar.min.js │ │ │ │ ├── prism-monkey.min.js │ │ │ │ ├── prism-n4js.min.js │ │ │ │ ├── prism-nasm.min.js │ │ │ │ ├── prism-nginx.min.js │ │ │ │ ├── prism-nim.min.js │ │ │ │ ├── prism-nix.min.js │ │ │ │ ├── prism-nsis.min.js │ │ │ │ ├── prism-objectivec.min.js │ │ │ │ ├── prism-ocaml.min.js │ │ │ │ ├── prism-opencl.min.js │ │ │ │ ├── prism-oz.min.js │ │ │ │ ├── prism-parigp.min.js │ │ │ │ ├── prism-parser.min.js │ │ │ │ ├── prism-pascal.min.js │ │ │ │ ├── prism-perl.min.js │ │ │ │ ├── prism-php-extras.min.js │ │ │ │ ├── prism-php.min.js │ │ │ │ ├── prism-plsql.min.js │ │ │ │ ├── prism-powershell.min.js │ │ │ │ ├── prism-processing.min.js │ │ │ │ ├── prism-prolog.min.js │ │ │ │ ├── prism-properties.min.js │ │ │ │ ├── prism-protobuf.min.js │ │ │ │ ├── prism-pug.min.js │ │ │ │ ├── prism-puppet.min.js │ │ │ │ ├── prism-pure.min.js │ │ │ │ ├── prism-python.min.js │ │ │ │ ├── prism-q.min.js │ │ │ │ ├── prism-qore.min.js │ │ │ │ ├── prism-r.min.js │ │ │ │ ├── prism-reason.min.js │ │ │ │ ├── prism-renpy.min.js │ │ │ │ ├── prism-rest.min.js │ │ │ │ ├── prism-rip.min.js │ │ │ │ ├── prism-roboconf.min.js │ │ │ │ ├── prism-ruby.min.js │ │ │ │ ├── prism-rust.min.js │ │ │ │ ├── prism-sas.min.js │ │ │ │ ├── prism-sass.min.js │ │ │ │ ├── prism-scala.min.js │ │ │ │ ├── prism-scheme.min.js │ │ │ │ ├── prism-scss.min.js │ │ │ │ ├── prism-smalltalk.min.js │ │ │ │ ├── prism-smarty.min.js │ │ │ │ ├── prism-soy.min.js │ │ │ │ ├── prism-sql.min.js │ │ │ │ ├── prism-stylus.min.js │ │ │ │ ├── prism-swift.min.js │ │ │ │ ├── prism-tap.min.js │ │ │ │ ├── prism-tcl.min.js │ │ │ │ ├── prism-textile.min.js │ │ │ │ ├── prism-tsx.min.js │ │ │ │ ├── prism-tt2.min.js │ │ │ │ ├── prism-twig.min.js │ │ │ │ ├── prism-typescript.min.js │ │ │ │ ├── prism-vbnet.min.js │ │ │ │ ├── prism-velocity.min.js │ │ │ │ ├── prism-verilog.min.js │ │ │ │ ├── prism-vhdl.min.js │ │ │ │ ├── prism-vim.min.js │ │ │ │ ├── prism-visual-basic.min.js │ │ │ │ ├── prism-wasm.min.js │ │ │ │ ├── prism-wiki.min.js │ │ │ │ ├── prism-xeora.min.js │ │ │ │ ├── prism-xojo.min.js │ │ │ │ ├── prism-xquery.min.js │ │ │ │ └── prism-yaml.min.js │ │ │ ├── plugins │ │ │ │ ├── autolinker │ │ │ │ │ ├── prism-autolinker.css │ │ │ │ │ └── prism-autolinker.min.js │ │ │ │ ├── autoloader │ │ │ │ │ └── prism-autoloader.min.js │ │ │ │ ├── command-line │ │ │ │ │ ├── prism-command-line.css │ │ │ │ │ └── prism-command-line.min.js │ │ │ │ ├── copy-to-clipboard │ │ │ │ │ └── prism-copy-to-clipboard.min.js │ │ │ │ ├── custom-class │ │ │ │ │ └── prism-custom-class.min.js │ │ │ │ ├── data-uri-highlight │ │ │ │ │ └── prism-data-uri-highlight.min.js │ │ │ │ ├── file-highlight │ │ │ │ │ └── prism-file-highlight.min.js │ │ │ │ ├── highlight-keywords │ │ │ │ │ └── prism-highlight-keywords.min.js │ │ │ │ ├── jsonp-highlight │ │ │ │ │ └── prism-jsonp-highlight.min.js │ │ │ │ ├── keep-markup │ │ │ │ │ └── prism-keep-markup.min.js │ │ │ │ ├── line-highlight │ │ │ │ │ ├── prism-line-highlight.css │ │ │ │ │ └── prism-line-highlight.min.js │ │ │ │ ├── line-numbers │ │ │ │ │ ├── prism-line-numbers.css │ │ │ │ │ └── prism-line-numbers.min.js │ │ │ │ ├── normalize-whitespace │ │ │ │ │ └── prism-normalize-whitespace.min.js │ │ │ │ ├── previewers │ │ │ │ │ ├── prism-previewers.css │ │ │ │ │ └── prism-previewers.min.js │ │ │ │ ├── remove-initial-line-feed │ │ │ │ │ └── prism-remove-initial-line-feed.min.js │ │ │ │ ├── show-invisibles │ │ │ │ │ ├── prism-show-invisibles.css │ │ │ │ │ └── prism-show-invisibles.min.js │ │ │ │ ├── show-language │ │ │ │ │ └── prism-show-language.min.js │ │ │ │ ├── toolbar │ │ │ │ │ ├── prism-toolbar.css │ │ │ │ │ └── prism-toolbar.min.js │ │ │ │ ├── unescaped-markup │ │ │ │ │ ├── prism-unescaped-markup.css │ │ │ │ │ └── prism-unescaped-markup.min.js │ │ │ │ └── wpd │ │ │ │ │ ├── prism-wpd.css │ │ │ │ │ └── prism-wpd.min.js │ │ │ ├── prism.js │ │ │ └── themes │ │ │ │ ├── prism-coy.css │ │ │ │ ├── prism-dark.css │ │ │ │ ├── prism-funky.css │ │ │ │ ├── prism-okaidia.css │ │ │ │ ├── prism-solarizedlight.css │ │ │ │ ├── prism-tomorrow.css │ │ │ │ ├── prism-twilight.css │ │ │ │ ├── prism-vs.css │ │ │ │ └── prism.css │ │ ├── quill │ │ │ ├── quill.bubble.css │ │ │ ├── quill.core.css │ │ │ ├── quill.core.js │ │ │ ├── quill.min.js │ │ │ └── quill.snow.css │ │ ├── raphael │ │ │ ├── dev │ │ │ │ ├── banner.txt │ │ │ │ ├── raphael.amd.js │ │ │ │ ├── raphael.core.js │ │ │ │ ├── raphael.svg.js │ │ │ │ ├── raphael.vml.js │ │ │ │ └── raphaelTest.html │ │ │ ├── license.txt │ │ │ ├── raphael.min.js │ │ │ └── raphael.no-deps.min.js │ │ ├── rating │ │ │ ├── jquery.barrating.js │ │ │ ├── jquery.rating-stars.js │ │ │ ├── jquery.rating-stars.min.js │ │ │ ├── ratings.css │ │ │ ├── ratings.js │ │ │ └── themes │ │ │ │ ├── bars-1to10.css │ │ │ │ ├── bars-horizontal.css │ │ │ │ ├── bars-movie.css │ │ │ │ ├── bars-pill.css │ │ │ │ ├── bars-reversed.css │ │ │ │ ├── bars-square.css │ │ │ │ ├── bootstrap-stars.css │ │ │ │ ├── css-stars.css │ │ │ │ ├── fontawesome-stars-o.css │ │ │ │ └── fontawesome-stars.css │ │ ├── select2 │ │ │ ├── css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ ├── i18n │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bs.js │ │ │ │ ├── build.txt │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── dsb.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hsb.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── ps.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2.full.min.js │ │ │ │ └── select2.min.js │ │ ├── side-menu │ │ │ └── sidemenu.js │ │ ├── sidebar │ │ │ ├── sidebar-custom.js │ │ │ ├── sidebar-rtl.js │ │ │ ├── sidebar.css │ │ │ └── sidebar.js │ │ ├── sidemenu-responsive-tabs │ │ │ ├── css │ │ │ │ └── sidemenu-responsive-tabs.css │ │ │ └── js │ │ │ │ ├── jquery-1.6.3.min.js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ └── sidemenu-responsive-tabs.js │ │ ├── simple-line-icons │ │ │ ├── fonts │ │ │ │ ├── Simple-Line-Icons.eot │ │ │ │ ├── Simple-Line-Icons.svg │ │ │ │ ├── Simple-Line-Icons.ttf │ │ │ │ ├── Simple-Line-Icons.woff │ │ │ │ └── Simple-Line-Icons.woff2 │ │ │ └── simple-line-icons.css │ │ ├── spectrum-colorpicker │ │ │ ├── i18n │ │ │ │ ├── jquery.spectrum-ar.js │ │ │ │ ├── jquery.spectrum-de.js │ │ │ │ ├── jquery.spectrum-dk.js │ │ │ │ ├── jquery.spectrum-es.js │ │ │ │ ├── jquery.spectrum-fa.js │ │ │ │ ├── jquery.spectrum-fi.js │ │ │ │ ├── jquery.spectrum-fr.js │ │ │ │ ├── jquery.spectrum-gr.js │ │ │ │ ├── jquery.spectrum-he.js │ │ │ │ ├── jquery.spectrum-hr.js │ │ │ │ ├── jquery.spectrum-id.js │ │ │ │ ├── jquery.spectrum-it.js │ │ │ │ ├── jquery.spectrum-ja.js │ │ │ │ ├── jquery.spectrum-lt.js │ │ │ │ ├── jquery.spectrum-nl.js │ │ │ │ ├── jquery.spectrum-pl.js │ │ │ │ ├── jquery.spectrum-pt-br.js │ │ │ │ ├── jquery.spectrum-ru.js │ │ │ │ ├── jquery.spectrum-sv.js │ │ │ │ ├── jquery.spectrum-tr.js │ │ │ │ ├── jquery.spectrum-zh-cn.js │ │ │ │ └── jquery.spectrum-zh-tw.js │ │ │ ├── index.html │ │ │ ├── spectrum.css │ │ │ ├── spectrum.js │ │ │ └── themes │ │ │ │ ├── index.html │ │ │ │ └── sp-dark.css │ │ ├── sumoselect │ │ │ ├── jquery.sumoselect.js │ │ │ ├── sumo-select.png │ │ │ ├── sumoselect-rtl.css │ │ │ └── sumoselect.css │ │ ├── sweet-alert │ │ │ ├── dark-jquery.sweet-alert.js │ │ │ ├── jquery.sweet-alert.js │ │ │ ├── sweetalert.css │ │ │ └── sweetalert.min.js │ │ ├── tabs │ │ │ ├── jquery.multipurpose_tabcontent.js │ │ │ └── style.css │ │ ├── telephoneinput │ │ │ ├── img │ │ │ │ ├── flags.png │ │ │ │ └── flags@2x.png │ │ │ ├── inttelephoneinput.js │ │ │ ├── telephoneinput-rtl.css │ │ │ ├── telephoneinput.css │ │ │ ├── telephoneinput.js │ │ │ └── utils.js │ │ ├── themify │ │ │ ├── fonts │ │ │ │ ├── themify.eot │ │ │ │ ├── themify.svg │ │ │ │ ├── themify.ttf │ │ │ │ └── themify.woff │ │ │ ├── themify.css │ │ │ ├── themify.eot │ │ │ ├── themify.svg │ │ │ ├── themify.ttf │ │ │ ├── themify.woff │ │ │ └── typicons.eot │ │ ├── timeline │ │ │ ├── css │ │ │ │ └── timeline.min.css │ │ │ ├── images │ │ │ │ ├── arrow-left.svg │ │ │ │ └── arrow-right.svg │ │ │ └── js │ │ │ │ └── timeline.min.js │ │ ├── treeview │ │ │ ├── treeview-rtl.css │ │ │ ├── treeview.css │ │ │ └── treeview.js │ │ └── typicons.font │ │ │ ├── LICENCE.md │ │ │ ├── typicons.css │ │ │ ├── typicons.eot │ │ │ ├── typicons.svg │ │ │ ├── typicons.ttf │ │ │ └── typicons.woff │ ├── scss-rtl │ │ ├── _variables.scss │ │ ├── bootstrap │ │ │ ├── _accordion.scss │ │ │ ├── _alerts.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _carousel.scss │ │ │ ├── _custom.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _input-group.scss │ │ │ ├── _modals.scss │ │ │ ├── _nav.scss │ │ │ ├── _paginations.scss │ │ │ ├── _popover.scss │ │ │ ├── _progress.scss │ │ │ ├── _tables.scss │ │ │ ├── _tabs.scss │ │ │ ├── _toast.scss │ │ │ └── _tooltip.scss │ │ ├── custom │ │ │ ├── _checkbox.scss │ │ │ ├── _countdown.scss │ │ │ ├── _custom-control.scss │ │ │ ├── _custom-styles.scss │ │ │ ├── _ecommerce.scss │ │ │ ├── _image.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list.scss │ │ │ ├── _listgroup.scss │ │ │ ├── _navbar.scss │ │ │ ├── _p-scroll.scss │ │ │ ├── _radio.scss │ │ │ ├── _ratting.scss │ │ │ ├── _tags.scss │ │ │ ├── _timeline.scss │ │ │ ├── _toggle.scss │ │ │ ├── _widgets.scss │ │ │ └── fonts │ │ │ │ └── _font.scss │ │ ├── layout │ │ │ ├── _footer.scss │ │ │ ├── _header.scss │ │ │ ├── _horizontal-menu.scss │ │ │ ├── _iconbar.scss │ │ │ ├── _maincontent.scss │ │ │ ├── _profile.scss │ │ │ └── _sidebar.scss │ │ ├── lib │ │ │ ├── _chart.scss │ │ │ ├── _datatable.scss │ │ │ ├── _datepicker.scss │ │ │ ├── _datetimepicker.scss │ │ │ ├── _jquerysteps.scss │ │ │ ├── _jqvmap.scss │ │ │ ├── _parsely.scss │ │ │ ├── _rangesliders.scss │ │ │ ├── _select2.scss │ │ │ └── _spectrum.scss │ │ ├── style.css │ │ ├── style.css.map │ │ ├── style.scss │ │ ├── temp │ │ │ ├── _calendar.scss │ │ │ ├── _chat.scss │ │ │ ├── _contact.scss │ │ │ ├── _error.scss │ │ │ ├── _invoice.scss │ │ │ └── _mail.scss │ │ └── util │ │ │ ├── _background.scss │ │ │ ├── _border.scss │ │ │ ├── _height.scss │ │ │ ├── _margin.scss │ │ │ ├── _opacity.scss │ │ │ ├── _padding.scss │ │ │ ├── _position.scss │ │ │ ├── _typography.scss │ │ │ └── _width.scss │ └── scss │ │ ├── _variables.scss │ │ ├── bootstrap │ │ ├── _accordion.scss │ │ ├── _alerts.scss │ │ ├── _badge.scss │ │ ├── _breadcrumbs.scss │ │ ├── _buttons.scss │ │ ├── _cards.scss │ │ ├── _carousel.scss │ │ ├── _custom.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _grid.scss │ │ ├── _input-group.scss │ │ ├── _modals.scss │ │ ├── _nav.scss │ │ ├── _paginations.scss │ │ ├── _popover.scss │ │ ├── _progress.scss │ │ ├── _tables.scss │ │ ├── _tabs.scss │ │ ├── _toast.scss │ │ └── _tooltip.scss │ │ ├── custom │ │ ├── _checkbox.scss │ │ ├── _countdown.scss │ │ ├── _custom-control.scss │ │ ├── _custom-styles.scss │ │ ├── _ecommerce.scss │ │ ├── _image.scss │ │ ├── _jumbotron.scss │ │ ├── _list.scss │ │ ├── _listgroup.scss │ │ ├── _navbar.scss │ │ ├── _p-scroll.scss │ │ ├── _radio.scss │ │ ├── _ratting.scss │ │ ├── _tags.scss │ │ ├── _timeline.scss │ │ ├── _toggle.scss │ │ ├── _widgets.scss │ │ └── fonts │ │ │ └── _font.scss │ │ ├── layout │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _horizontal-menu.scss │ │ ├── _iconbar.scss │ │ ├── _maincontent.scss │ │ ├── _profile.scss │ │ └── _sidebar.scss │ │ ├── lib │ │ ├── _chart.scss │ │ ├── _datatable.scss │ │ ├── _datepicker.scss │ │ ├── _datetimepicker.scss │ │ ├── _jquerysteps.scss │ │ ├── _jqvmap.scss │ │ ├── _parsely.scss │ │ ├── _rangesliders.scss │ │ ├── _select2.scss │ │ └── _spectrum.scss │ │ ├── style.css │ │ ├── style.css.map │ │ ├── style.scss │ │ ├── temp │ │ ├── _calendar.scss │ │ ├── _chat.scss │ │ ├── _contact.scss │ │ ├── _error.scss │ │ ├── _invoice.scss │ │ └── _mail.scss │ │ └── util │ │ ├── _background.scss │ │ ├── _border.scss │ │ ├── _height.scss │ │ ├── _margin.scss │ │ ├── _opacity.scss │ │ ├── _padding.scss │ │ ├── _position.scss │ │ ├── _typography.scss │ │ └── _width.scss ├── favicon.ico ├── index.php ├── robots.txt └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ └── ExampleComponent.vue ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── 404.blade.php │ ├── 500.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── home.blade.php │ ├── invoices │ ├── add_invoice.blade.php │ ├── edit_invoice.blade.php │ ├── invoice_details.blade.php │ ├── invoice_trashed.blade.php │ ├── invoices.blade.php │ ├── invoices_paid.blade.php │ ├── invoices_partial.blade.php │ ├── invoices_unpaid.blade.php │ ├── print_invoice.blade.php │ └── status_update.blade.php │ ├── layouts │ ├── app.blade.php │ ├── footer-scripts.blade.php │ ├── footer.blade.php │ ├── head.blade.php │ ├── main-header.blade.php │ ├── main-sidebar.blade.php │ ├── master.blade.php │ ├── master2.blade.php │ ├── models.blade.php │ └── sidebar.blade.php │ ├── products │ └── products.blade.php │ ├── reports │ ├── customers_report.blade.php │ └── invoices_report.blade.php │ ├── roles │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── sections │ └── sections.blade.php │ └── users │ ├── add_user.blade.php │ ├── edit.blade.php │ ├── show.blade.php │ └── show_users.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/SaeedAhmed99/InvoicesSystem/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exports/InvoiceExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Exports/InvoiceExport.php -------------------------------------------------------------------------------- /app/Exports/InvoicePaidExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Exports/InvoicePaidExport.php -------------------------------------------------------------------------------- /app/Exports/InvoicePartialExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Exports/InvoicePartialExport.php -------------------------------------------------------------------------------- /app/Exports/InvoiceUnPaidExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Exports/InvoiceUnPaidExport.php -------------------------------------------------------------------------------- /app/Http/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/InvoiceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Controllers/InvoiceController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProductsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Controllers/ProductsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Controllers/RoleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SectionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Controllers/SectionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Models/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Models/Invoice.php -------------------------------------------------------------------------------- /app/Models/InvoiceAttachments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Models/InvoiceAttachments.php -------------------------------------------------------------------------------- /app/Models/InvoicesDetials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Models/InvoicesDetials.php -------------------------------------------------------------------------------- /app/Models/Section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Models/Section.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Models/products.php -------------------------------------------------------------------------------- /app/Notifications/AddInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Notifications/AddInvoice.php -------------------------------------------------------------------------------- /app/Notifications/InvoiceEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Notifications/InvoiceEmail.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/database.php -------------------------------------------------------------------------------- /config/excel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/excel.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeders/CreateAdminUserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/database/seeders/CreateAdminUserSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/PermissionTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/database/seeders/PermissionTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/Attachments/invoiceAttachments/pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/Attachments/invoiceAttachments/pic03.png -------------------------------------------------------------------------------- /public/assets/css-rtl/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css-rtl/animate.css -------------------------------------------------------------------------------- /public/assets/css-rtl/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css-rtl/icons.css -------------------------------------------------------------------------------- /public/assets/css-rtl/sidemenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css-rtl/sidemenu.css -------------------------------------------------------------------------------- /public/assets/css-rtl/sidemenu.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css-rtl/sidemenu.css.map -------------------------------------------------------------------------------- /public/assets/css-rtl/sidemenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css-rtl/sidemenu.scss -------------------------------------------------------------------------------- /public/assets/css-rtl/skin-modes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css-rtl/skin-modes.css -------------------------------------------------------------------------------- /public/assets/css-rtl/skin-modes.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css-rtl/skin-modes.css.map -------------------------------------------------------------------------------- /public/assets/css-rtl/skin-modes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css-rtl/skin-modes.scss -------------------------------------------------------------------------------- /public/assets/css-rtl/style-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css-rtl/style-dark.css -------------------------------------------------------------------------------- /public/assets/css-rtl/style-dark.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css-rtl/style-dark.css.map -------------------------------------------------------------------------------- /public/assets/css-rtl/style-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css-rtl/style-dark.scss -------------------------------------------------------------------------------- /public/assets/css-rtl/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css-rtl/style.css -------------------------------------------------------------------------------- /public/assets/css-rtl/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css-rtl/style.css.map -------------------------------------------------------------------------------- /public/assets/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css/animate.css -------------------------------------------------------------------------------- /public/assets/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css/icons.css -------------------------------------------------------------------------------- /public/assets/css/sidemenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css/sidemenu.css -------------------------------------------------------------------------------- /public/assets/css/sidemenu.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css/sidemenu.css.map -------------------------------------------------------------------------------- /public/assets/css/sidemenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css/sidemenu.scss -------------------------------------------------------------------------------- /public/assets/css/skin-modes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css/skin-modes.css -------------------------------------------------------------------------------- /public/assets/css/skin-modes.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css/skin-modes.css.map -------------------------------------------------------------------------------- /public/assets/css/skin-modes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css/skin-modes.scss -------------------------------------------------------------------------------- /public/assets/css/style-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css/style-dark.css -------------------------------------------------------------------------------- /public/assets/css/style-dark.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css/style-dark.css.map -------------------------------------------------------------------------------- /public/assets/css/style-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css/style-dark.scss -------------------------------------------------------------------------------- /public/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css/style.css -------------------------------------------------------------------------------- /public/assets/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/css/style.css.map -------------------------------------------------------------------------------- /public/assets/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/1.jpg -------------------------------------------------------------------------------- /public/assets/img/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/20.jpg -------------------------------------------------------------------------------- /public/assets/img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/6.jpg -------------------------------------------------------------------------------- /public/assets/img/backgrounds/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/backgrounds/01.png -------------------------------------------------------------------------------- /public/assets/img/backgrounds/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/backgrounds/02.png -------------------------------------------------------------------------------- /public/assets/img/backgrounds/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/backgrounds/03.png -------------------------------------------------------------------------------- /public/assets/img/backgrounds/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/backgrounds/04.png -------------------------------------------------------------------------------- /public/assets/img/backgrounds/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/backgrounds/05.png -------------------------------------------------------------------------------- /public/assets/img/brand/favicon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/brand/favicon-white.png -------------------------------------------------------------------------------- /public/assets/img/brand/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/brand/favicon.png -------------------------------------------------------------------------------- /public/assets/img/brand/logo-semiwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/brand/logo-semiwhite.png -------------------------------------------------------------------------------- /public/assets/img/brand/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/brand/logo-white.png -------------------------------------------------------------------------------- /public/assets/img/brand/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/brand/logo.png -------------------------------------------------------------------------------- /public/assets/img/card4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/card4.png -------------------------------------------------------------------------------- /public/assets/img/ecommerce/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/01.jpg -------------------------------------------------------------------------------- /public/assets/img/ecommerce/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/02.jpg -------------------------------------------------------------------------------- /public/assets/img/ecommerce/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/03.jpg -------------------------------------------------------------------------------- /public/assets/img/ecommerce/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/04.jpg -------------------------------------------------------------------------------- /public/assets/img/ecommerce/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/05.jpg -------------------------------------------------------------------------------- /public/assets/img/ecommerce/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/06.jpg -------------------------------------------------------------------------------- /public/assets/img/ecommerce/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/07.jpg -------------------------------------------------------------------------------- /public/assets/img/ecommerce/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/08.jpg -------------------------------------------------------------------------------- /public/assets/img/ecommerce/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/09.jpg -------------------------------------------------------------------------------- /public/assets/img/ecommerce/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/11.jpg -------------------------------------------------------------------------------- /public/assets/img/ecommerce/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/5.jpg -------------------------------------------------------------------------------- /public/assets/img/ecommerce/shirt-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/shirt-1.png -------------------------------------------------------------------------------- /public/assets/img/ecommerce/shirt-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/shirt-2.png -------------------------------------------------------------------------------- /public/assets/img/ecommerce/shirt-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/shirt-3.png -------------------------------------------------------------------------------- /public/assets/img/ecommerce/shirt-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/shirt-4.png -------------------------------------------------------------------------------- /public/assets/img/ecommerce/shirt-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/ecommerce/shirt-5.png -------------------------------------------------------------------------------- /public/assets/img/faces/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/1.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/10.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/11.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/12.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/13.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/14.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/15.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/16.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/17.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/2.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/3.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/4.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/5.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/6.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/7.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/8.jpg -------------------------------------------------------------------------------- /public/assets/img/faces/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/faces/9.jpg -------------------------------------------------------------------------------- /public/assets/img/flags/french_flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/flags/french_flag.jpg -------------------------------------------------------------------------------- /public/assets/img/flags/germany_flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/flags/germany_flag.jpg -------------------------------------------------------------------------------- /public/assets/img/flags/india_flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/flags/india_flag.jpg -------------------------------------------------------------------------------- /public/assets/img/flags/italy_flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/flags/italy_flag.jpg -------------------------------------------------------------------------------- /public/assets/img/flags/russia_flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/flags/russia_flag.jpg -------------------------------------------------------------------------------- /public/assets/img/flags/spain_flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/flags/spain_flag.jpg -------------------------------------------------------------------------------- /public/assets/img/flags/us_flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/flags/us_flag.jpg -------------------------------------------------------------------------------- /public/assets/img/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/loader.svg -------------------------------------------------------------------------------- /public/assets/img/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/mastercard.png -------------------------------------------------------------------------------- /public/assets/img/media/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/1.jpg -------------------------------------------------------------------------------- /public/assets/img/media/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/2.jpg -------------------------------------------------------------------------------- /public/assets/img/media/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/3.jpg -------------------------------------------------------------------------------- /public/assets/img/media/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/4.jpg -------------------------------------------------------------------------------- /public/assets/img/media/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/404.png -------------------------------------------------------------------------------- /public/assets/img/media/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/500.png -------------------------------------------------------------------------------- /public/assets/img/media/authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/authentication.png -------------------------------------------------------------------------------- /public/assets/img/media/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/calendar.png -------------------------------------------------------------------------------- /public/assets/img/media/forgot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/forgot.png -------------------------------------------------------------------------------- /public/assets/img/media/illustrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/illustrate.png -------------------------------------------------------------------------------- /public/assets/img/media/illustrate1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/illustrate1.png -------------------------------------------------------------------------------- /public/assets/img/media/illustrate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/illustrate2.png -------------------------------------------------------------------------------- /public/assets/img/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/image1.png -------------------------------------------------------------------------------- /public/assets/img/media/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/image2.png -------------------------------------------------------------------------------- /public/assets/img/media/lockscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/lockscreen.png -------------------------------------------------------------------------------- /public/assets/img/media/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/login.png -------------------------------------------------------------------------------- /public/assets/img/media/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/pattern.png -------------------------------------------------------------------------------- /public/assets/img/media/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/reset.png -------------------------------------------------------------------------------- /public/assets/img/media/underconstruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/media/underconstruction.png -------------------------------------------------------------------------------- /public/assets/img/photos/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/1.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/10.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/11.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/12.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/13.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/14.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/15.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/16.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/17.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/18.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/19.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/2.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/20.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/21.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/22.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/23.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/24.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/25.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/26.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/3.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/4.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/5.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/6.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/7.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/8.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/9.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/blue.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/compare1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/compare1.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/compare2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/compare2.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/gradient1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/gradient1.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/gradient2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/gradient2.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/gradient3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/gradient3.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/green.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/red - Copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/red - Copy.jpg -------------------------------------------------------------------------------- /public/assets/img/photos/red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/photos/red.jpg -------------------------------------------------------------------------------- /public/assets/img/svgicons/accountant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/accountant.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/banner-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/banner-img.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/booking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/booking.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/briefing.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/svgicons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/calendar.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/calendar1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/calendar1.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/chrome.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/edge.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/email.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/firefox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/firefox.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/imac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/imac.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/invoice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/invoice.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/launch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/launch.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/letter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/letter.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/no-data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/no-data.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/note_taking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/note_taking.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/notification.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/opera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/opera.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/phone-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/phone-book.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/project.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/project2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/project2.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/question.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/report.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/reward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/reward.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/rocket_launch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/rocket_launch.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/safari.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/safari.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/sales-revenue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/sales-revenue.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/settings.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/site.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/site.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/translation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/translation.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/uc-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/uc-browser.svg -------------------------------------------------------------------------------- /public/assets/img/svgicons/wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/svgicons/wave.svg -------------------------------------------------------------------------------- /public/assets/img/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/img/visa.png -------------------------------------------------------------------------------- /public/assets/js/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/accordion.js -------------------------------------------------------------------------------- /public/assets/js/advanced-form-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/advanced-form-elements.js -------------------------------------------------------------------------------- /public/assets/js/apexcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/apexcharts.js -------------------------------------------------------------------------------- /public/assets/js/app-calendar-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/app-calendar-events.js -------------------------------------------------------------------------------- /public/assets/js/app-calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/app-calendar.js -------------------------------------------------------------------------------- /public/assets/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/carousel.js -------------------------------------------------------------------------------- /public/assets/js/chart.chartjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/chart.chartjs.js -------------------------------------------------------------------------------- /public/assets/js/chart.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/chart.flot.js -------------------------------------------------------------------------------- /public/assets/js/chart.flot.sampledata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/chart.flot.sampledata.js -------------------------------------------------------------------------------- /public/assets/js/chart.morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/chart.morris.js -------------------------------------------------------------------------------- /public/assets/js/chart.peity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/chart.peity.js -------------------------------------------------------------------------------- /public/assets/js/chart.sparkline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/chart.sparkline.js -------------------------------------------------------------------------------- /public/assets/js/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/chat.js -------------------------------------------------------------------------------- /public/assets/js/check-all-mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/check-all-mail.js -------------------------------------------------------------------------------- /public/assets/js/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/contact.js -------------------------------------------------------------------------------- /public/assets/js/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/cookie.js -------------------------------------------------------------------------------- /public/assets/js/createWaterBall-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/createWaterBall-jquery.js -------------------------------------------------------------------------------- /public/assets/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/custom.js -------------------------------------------------------------------------------- /public/assets/js/dashboard.sampledata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/dashboard.sampledata.js -------------------------------------------------------------------------------- /public/assets/js/echarts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/echarts.js -------------------------------------------------------------------------------- /public/assets/js/eva-icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/eva-icons.min.js -------------------------------------------------------------------------------- /public/assets/js/form-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/form-editor.js -------------------------------------------------------------------------------- /public/assets/js/form-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/form-elements.js -------------------------------------------------------------------------------- /public/assets/js/form-layouts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/form-layouts.js -------------------------------------------------------------------------------- /public/assets/js/form-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/form-validation.js -------------------------------------------------------------------------------- /public/assets/js/form-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/form-wizard.js -------------------------------------------------------------------------------- /public/assets/js/formelementadvnced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/formelementadvnced.js -------------------------------------------------------------------------------- /public/assets/js/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/gallery.js -------------------------------------------------------------------------------- /public/assets/js/image-comparision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/image-comparision.js -------------------------------------------------------------------------------- /public/assets/js/index-dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/index-dark.js -------------------------------------------------------------------------------- /public/assets/js/index-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/index-map.js -------------------------------------------------------------------------------- /public/assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/index.js -------------------------------------------------------------------------------- /public/assets/js/invoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/invoice.js -------------------------------------------------------------------------------- /public/assets/js/jquery.vmap.sampledata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/jquery.vmap.sampledata.js -------------------------------------------------------------------------------- /public/assets/js/left-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/left-menu.js -------------------------------------------------------------------------------- /public/assets/js/mail-two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/mail-two.js -------------------------------------------------------------------------------- /public/assets/js/map-leafleft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/map-leafleft.js -------------------------------------------------------------------------------- /public/assets/js/map.apple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/map.apple.js -------------------------------------------------------------------------------- /public/assets/js/map.bluewater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/map.bluewater.js -------------------------------------------------------------------------------- /public/assets/js/map.mapbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/map.mapbox.js -------------------------------------------------------------------------------- /public/assets/js/map.shiftworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/map.shiftworker.js -------------------------------------------------------------------------------- /public/assets/js/modal-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/modal-popup.js -------------------------------------------------------------------------------- /public/assets/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/modal.js -------------------------------------------------------------------------------- /public/assets/js/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/navigation.js -------------------------------------------------------------------------------- /public/assets/js/newsticker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/newsticker.js -------------------------------------------------------------------------------- /public/assets/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/popover.js -------------------------------------------------------------------------------- /public/assets/js/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/profile.js -------------------------------------------------------------------------------- /public/assets/js/rangeslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/rangeslider.js -------------------------------------------------------------------------------- /public/assets/js/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/select2.js -------------------------------------------------------------------------------- /public/assets/js/sidemenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/sidemenu.js -------------------------------------------------------------------------------- /public/assets/js/sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/sticky.js -------------------------------------------------------------------------------- /public/assets/js/sweet-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/sweet-alert.js -------------------------------------------------------------------------------- /public/assets/js/table-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/table-data.js -------------------------------------------------------------------------------- /public/assets/js/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/tabs.js -------------------------------------------------------------------------------- /public/assets/js/timline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/timline.js -------------------------------------------------------------------------------- /public/assets/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/tooltip.js -------------------------------------------------------------------------------- /public/assets/js/vector-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/js/vector-map.js -------------------------------------------------------------------------------- /public/assets/plugins/accordion/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/accordion/accordion.css -------------------------------------------------------------------------------- /public/assets/plugins/boxicons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/boxicons/LICENSE.txt -------------------------------------------------------------------------------- /public/assets/plugins/boxicons/css/boxicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/boxicons/css/boxicons.css -------------------------------------------------------------------------------- /public/assets/plugins/chart.js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/chart.js/Chart.min.js -------------------------------------------------------------------------------- /public/assets/plugins/chart.js/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/chart.js/excanvas.js -------------------------------------------------------------------------------- /public/assets/plugins/chart.js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/chart.js/utils.js -------------------------------------------------------------------------------- /public/assets/plugins/clipboard/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/clipboard/clipboard.js -------------------------------------------------------------------------------- /public/assets/plugins/counters/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/counters/counter.js -------------------------------------------------------------------------------- /public/assets/plugins/counters/counterup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/counters/counterup.min.js -------------------------------------------------------------------------------- /public/assets/plugins/counters/waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/counters/waypoints.min.js -------------------------------------------------------------------------------- /public/assets/plugins/cryptofont/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/cryptofont/component.json -------------------------------------------------------------------------------- /public/assets/plugins/darggable/darggable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/darggable/darggable.js -------------------------------------------------------------------------------- /public/assets/plugins/datatable/js/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/datatable/js/jszip.min.js -------------------------------------------------------------------------------- /public/assets/plugins/datatable/js/vfs_fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/datatable/js/vfs_fonts.js -------------------------------------------------------------------------------- /public/assets/plugins/echart/echart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/echart/echart.js -------------------------------------------------------------------------------- /public/assets/plugins/echart/echarts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/echart/echarts.js -------------------------------------------------------------------------------- /public/assets/plugins/feather/feather.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/feather/feather.css -------------------------------------------------------------------------------- /public/assets/plugins/flag-icon-css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/flag-icon-css/index.html -------------------------------------------------------------------------------- /public/assets/plugins/flag-icon-css/svgo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/flag-icon-css/svgo.yaml -------------------------------------------------------------------------------- /public/assets/plugins/gallery/fonts/lg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gallery/fonts/lg.eot -------------------------------------------------------------------------------- /public/assets/plugins/gallery/fonts/lg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gallery/fonts/lg.svg -------------------------------------------------------------------------------- /public/assets/plugins/gallery/fonts/lg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gallery/fonts/lg.ttf -------------------------------------------------------------------------------- /public/assets/plugins/gallery/fonts/lg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gallery/fonts/lg.woff -------------------------------------------------------------------------------- /public/assets/plugins/gallery/gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gallery/gallery.css -------------------------------------------------------------------------------- /public/assets/plugins/gallery/lg-autoplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gallery/lg-autoplay.js -------------------------------------------------------------------------------- /public/assets/plugins/gallery/lg-hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gallery/lg-hash.js -------------------------------------------------------------------------------- /public/assets/plugins/gallery/lg-pager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gallery/lg-pager.js -------------------------------------------------------------------------------- /public/assets/plugins/gallery/lg-share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gallery/lg-share.js -------------------------------------------------------------------------------- /public/assets/plugins/gallery/lg-zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gallery/lg-zoom.js -------------------------------------------------------------------------------- /public/assets/plugins/gallery/lightgallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gallery/lightgallery.js -------------------------------------------------------------------------------- /public/assets/plugins/gallery/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gallery/loading.gif -------------------------------------------------------------------------------- /public/assets/plugins/gallery/picturefill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gallery/picturefill.js -------------------------------------------------------------------------------- /public/assets/plugins/gmaps/gmaps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gmaps/gmaps.min.js -------------------------------------------------------------------------------- /public/assets/plugins/gmaps/jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gmaps/jsdoc.json -------------------------------------------------------------------------------- /public/assets/plugins/gmaps/lib/gmaps.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gmaps/lib/gmaps.core.js -------------------------------------------------------------------------------- /public/assets/plugins/gmaps/umd.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/gmaps/umd.hbs -------------------------------------------------------------------------------- /public/assets/plugins/inputtags/inputtags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/inputtags/inputtags.css -------------------------------------------------------------------------------- /public/assets/plugins/inputtags/inputtags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/inputtags/inputtags.js -------------------------------------------------------------------------------- /public/assets/plugins/ionicons/collection/interface.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/ionicons/esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/ionicons/esm/index.js -------------------------------------------------------------------------------- /public/assets/plugins/ionicons/index.js: -------------------------------------------------------------------------------- 1 | // ionicons: CommonJS Main -------------------------------------------------------------------------------- /public/assets/plugins/ionicons/ionicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/ionicons/ionicons.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery-ui/AUTHORS.txt -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery-ui/LICENSE.txt -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/build/themes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery-ui/build/themes -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/ui/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery-ui/ui/core.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/ui/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery-ui/ui/data.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/ui/effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery-ui/ui/effect.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/ui/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery-ui/ui/form.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/ui/ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery-ui/ui/ie.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/ui/keycode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery-ui/ui/keycode.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/ui/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery-ui/ui/labels.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/ui/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery-ui/ui/plugin.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/ui/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery-ui/ui/version.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery-ui/ui/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery-ui/ui/widget.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery.flot/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery.flot/LICENSE.txt -------------------------------------------------------------------------------- /public/assets/plugins/jquery.flot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery.flot/Makefile -------------------------------------------------------------------------------- /public/assets/plugins/jquery.flot/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery.flot/jquery.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery/core.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jquery/jquery.min.js -------------------------------------------------------------------------------- /public/assets/plugins/jqvmap/jqvmap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/jqvmap/jqvmap.min.css -------------------------------------------------------------------------------- /public/assets/plugins/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /public/assets/plugins/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/leaflet/leaflet.css -------------------------------------------------------------------------------- /public/assets/plugins/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/leaflet/leaflet.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/ender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/ender.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/af.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ar-dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ar-dz.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ar-kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ar-kw.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ar-ly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ar-ly.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ar-ma.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ar-sa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ar-sa.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ar-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ar-tn.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ar.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/az.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/be.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/bg.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/bm.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/bn.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/bo.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/br.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/bs.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ca.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/cs.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/cv.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/cy.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/da.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/de-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/de-at.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/de-ch.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/de.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/dv.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/el.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/en-au.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/en-ca.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/en-gb.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/en-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/en-ie.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/en-il.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/en-il.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/en-nz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/en-nz.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/eo.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/es-do.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/es-do.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/es-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/es-us.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/es.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/et.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/eu.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/fa.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/fi.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/fo.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/fr-ca.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/fr-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/fr-ch.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/fr.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/fy.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/gd.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/gl.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/gu.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/he.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/hi.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/hr.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/hu.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/hy-am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/hy-am.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/id.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/is.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/it.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ja.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/jv.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ka.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/kk.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/km.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/kn.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ko.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ky.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/lb.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/lo.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/lt.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/lv.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/me.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/mi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/mi.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/mk.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ml.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/mn.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/mr.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ms-my.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ms.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/mt.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/my.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/nb.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ne.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/nl-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/nl-be.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/nl.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/nn.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/pa-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/pa-in.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/pl.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/pt-br.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/pt.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ro.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ru.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/sd.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/se.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/si.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/sk.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/sl.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/sq.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/sr.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ss.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/sv.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/sw.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ta.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/te.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/tet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/tet.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/tg.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/th.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/tl-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/tl-ph.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/tlh.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/tr.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/tzl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/tzl.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/tzm.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ug-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ug-cn.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/uk.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/ur.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/uz.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/vi.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/yo.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/zh-cn.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/zh-hk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/zh-hk.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/locale/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/locale/zh-tw.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/moment.js -------------------------------------------------------------------------------- /public/assets/plugins/moment/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/moment/package.js -------------------------------------------------------------------------------- /public/assets/plugins/morris.js/morris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/morris.js/morris.css -------------------------------------------------------------------------------- /public/assets/plugins/morris.js/morris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/morris.js/morris.min.js -------------------------------------------------------------------------------- /public/assets/plugins/notify/css/notifIt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/notify/css/notifIt.css -------------------------------------------------------------------------------- /public/assets/plugins/notify/js/notifIt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/notify/js/notifIt.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/al.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/al.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/ar.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/bg.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/ca.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/cs.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/da.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/de.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/el.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/en.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/es.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/et.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/eu.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/fa.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/fi.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/fr.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/he.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/hr.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/hu.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/id.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/it.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/ja.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/ko.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/lt.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/lv.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/ms.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/nl.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/no.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/pl.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/pt-br.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/pt-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/pt-pt.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/ro.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/ru.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/sk.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/sl.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/sq.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/sr.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/sv.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/th.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/tk.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/tr.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/ua.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/uk.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/zh_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/zh_cn.js -------------------------------------------------------------------------------- /public/assets/plugins/parsleyjs/i18n/zh_tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/parsleyjs/i18n/zh_tw.js -------------------------------------------------------------------------------- /public/assets/plugins/peity/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/peity/LICENCE -------------------------------------------------------------------------------- /public/assets/plugins/pickerjs/picker.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/pickerjs/picker.esm.js -------------------------------------------------------------------------------- /public/assets/plugins/pickerjs/picker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/pickerjs/picker.min.css -------------------------------------------------------------------------------- /public/assets/plugins/pickerjs/picker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/pickerjs/picker.min.js -------------------------------------------------------------------------------- /public/assets/plugins/popper.js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/popper.js/popper.min.js -------------------------------------------------------------------------------- /public/assets/plugins/prism/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/prism/prism.css -------------------------------------------------------------------------------- /public/assets/plugins/prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/prism/prism.js -------------------------------------------------------------------------------- /public/assets/plugins/prismjs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/prismjs/.DS_Store -------------------------------------------------------------------------------- /public/assets/plugins/prismjs/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/prismjs/components.js -------------------------------------------------------------------------------- /public/assets/plugins/prismjs/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/prismjs/components.json -------------------------------------------------------------------------------- /public/assets/plugins/prismjs/plugins/autolinker/prism-autolinker.css: -------------------------------------------------------------------------------- 1 | .token a { 2 | color: inherit; 3 | } -------------------------------------------------------------------------------- /public/assets/plugins/prismjs/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/prismjs/prism.js -------------------------------------------------------------------------------- /public/assets/plugins/quill/quill.bubble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/quill/quill.bubble.css -------------------------------------------------------------------------------- /public/assets/plugins/quill/quill.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/quill/quill.core.css -------------------------------------------------------------------------------- /public/assets/plugins/quill/quill.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/quill/quill.core.js -------------------------------------------------------------------------------- /public/assets/plugins/quill/quill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/quill/quill.min.js -------------------------------------------------------------------------------- /public/assets/plugins/quill/quill.snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/quill/quill.snow.css -------------------------------------------------------------------------------- /public/assets/plugins/raphael/dev/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/raphael/dev/banner.txt -------------------------------------------------------------------------------- /public/assets/plugins/raphael/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/raphael/license.txt -------------------------------------------------------------------------------- /public/assets/plugins/raphael/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/raphael/raphael.min.js -------------------------------------------------------------------------------- /public/assets/plugins/rating/ratings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/rating/ratings.css -------------------------------------------------------------------------------- /public/assets/plugins/rating/ratings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/rating/ratings.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/af.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/ar.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/az.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/bg.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/bs.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/ca.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/cs.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/da.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/de.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/dsb.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/el.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/en.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/es.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/et.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/eu.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/fa.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/fi.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/fr.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/gl.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/he.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/hi.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/hr.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/hsb.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/hu.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/hy.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/id.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/is.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/it.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/ja.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/km.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/ko.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/lt.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/lv.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/mk.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/ms.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/nb.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/nl.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/pl.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/ps.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/pt.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/ro.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/ru.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/sk.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/sl.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/sr.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/sv.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/th.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/tk.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/tr.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/uk.js -------------------------------------------------------------------------------- /public/assets/plugins/select2/js/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/select2/js/i18n/vi.js -------------------------------------------------------------------------------- /public/assets/plugins/side-menu/sidemenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/side-menu/sidemenu.js -------------------------------------------------------------------------------- /public/assets/plugins/sidebar/sidebar-rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/sidebar/sidebar-rtl.js -------------------------------------------------------------------------------- /public/assets/plugins/sidebar/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/sidebar/sidebar.css -------------------------------------------------------------------------------- /public/assets/plugins/sidebar/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/sidebar/sidebar.js -------------------------------------------------------------------------------- /public/assets/plugins/tabs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/tabs/style.css -------------------------------------------------------------------------------- /public/assets/plugins/telephoneinput/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/telephoneinput/utils.js -------------------------------------------------------------------------------- /public/assets/plugins/themify/themify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/themify/themify.css -------------------------------------------------------------------------------- /public/assets/plugins/themify/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/themify/themify.eot -------------------------------------------------------------------------------- /public/assets/plugins/themify/themify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/themify/themify.svg -------------------------------------------------------------------------------- /public/assets/plugins/themify/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/themify/themify.ttf -------------------------------------------------------------------------------- /public/assets/plugins/themify/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/themify/themify.woff -------------------------------------------------------------------------------- /public/assets/plugins/themify/typicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/themify/typicons.eot -------------------------------------------------------------------------------- /public/assets/plugins/treeview/treeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/treeview/treeview.css -------------------------------------------------------------------------------- /public/assets/plugins/treeview/treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/plugins/treeview/treeview.js -------------------------------------------------------------------------------- /public/assets/scss-rtl/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/_variables.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/bootstrap/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/bootstrap/_alerts.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/bootstrap/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/bootstrap/_badge.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/bootstrap/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/bootstrap/_cards.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/bootstrap/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/bootstrap/_custom.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/bootstrap/_forms.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/bootstrap/_grid.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/bootstrap/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/bootstrap/_modals.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/bootstrap/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/bootstrap/_nav.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/bootstrap/_tables.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/bootstrap/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/bootstrap/_tabs.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/bootstrap/_toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/bootstrap/_toast.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_checkbox.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_countdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_countdown.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_ecommerce.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_ecommerce.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_image.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_jumbotron.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_list.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_listgroup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_listgroup.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_navbar.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_p-scroll.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_p-scroll.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_radio.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_ratting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_ratting.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_tags.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_timeline.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_toggle.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/custom/_widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/custom/_widgets.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/layout/_footer.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/layout/_header.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/layout/_iconbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/layout/_iconbar.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/layout/_profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/layout/_profile.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/layout/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/layout/_sidebar.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/lib/_chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/lib/_chart.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/lib/_datatable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/lib/_datatable.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/lib/_datepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/lib/_datepicker.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/lib/_jquerysteps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/lib/_jquerysteps.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/lib/_jqvmap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/lib/_jqvmap.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/lib/_parsely.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/lib/_parsely.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/lib/_rangesliders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/lib/_rangesliders.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/lib/_select2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/lib/_select2.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/lib/_spectrum.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/lib/_spectrum.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/style.css -------------------------------------------------------------------------------- /public/assets/scss-rtl/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/style.css.map -------------------------------------------------------------------------------- /public/assets/scss-rtl/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/style.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/temp/_calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/temp/_calendar.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/temp/_chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/temp/_chat.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/temp/_contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/temp/_contact.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/temp/_error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/temp/_error.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/temp/_invoice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/temp/_invoice.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/temp/_mail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/temp/_mail.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/util/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/util/_background.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/util/_border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/util/_border.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/util/_height.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/util/_height.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/util/_margin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/util/_margin.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/util/_opacity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/util/_opacity.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/util/_padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/util/_padding.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/util/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/util/_position.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/util/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/util/_typography.scss -------------------------------------------------------------------------------- /public/assets/scss-rtl/util/_width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss-rtl/util/_width.scss -------------------------------------------------------------------------------- /public/assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/_variables.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_accordion.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_alerts.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_badge.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_cards.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_custom.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_dropdown.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_forms.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_grid.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_modals.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_nav.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_popover.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_progress.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_tables.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_tabs.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_toast.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_checkbox.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_countdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_countdown.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_custom-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_custom-styles.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_ecommerce.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_ecommerce.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_image.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_jumbotron.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_list.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_listgroup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_listgroup.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_navbar.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_p-scroll.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_p-scroll.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_radio.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_ratting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_ratting.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_tags.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_timeline.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_toggle.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/_widgets.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/fonts/_font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/custom/fonts/_font.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/layout/_footer.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/layout/_header.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/_iconbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/layout/_iconbar.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/_maincontent.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/layout/_maincontent.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/_profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/layout/_profile.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/layout/_sidebar.scss -------------------------------------------------------------------------------- /public/assets/scss/lib/_chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/lib/_chart.scss -------------------------------------------------------------------------------- /public/assets/scss/lib/_datatable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/lib/_datatable.scss -------------------------------------------------------------------------------- /public/assets/scss/lib/_datepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/lib/_datepicker.scss -------------------------------------------------------------------------------- /public/assets/scss/lib/_datetimepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/lib/_datetimepicker.scss -------------------------------------------------------------------------------- /public/assets/scss/lib/_jquerysteps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/lib/_jquerysteps.scss -------------------------------------------------------------------------------- /public/assets/scss/lib/_jqvmap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/lib/_jqvmap.scss -------------------------------------------------------------------------------- /public/assets/scss/lib/_parsely.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/lib/_parsely.scss -------------------------------------------------------------------------------- /public/assets/scss/lib/_rangesliders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/lib/_rangesliders.scss -------------------------------------------------------------------------------- /public/assets/scss/lib/_select2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/lib/_select2.scss -------------------------------------------------------------------------------- /public/assets/scss/lib/_spectrum.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/lib/_spectrum.scss -------------------------------------------------------------------------------- /public/assets/scss/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/style.css -------------------------------------------------------------------------------- /public/assets/scss/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/style.css.map -------------------------------------------------------------------------------- /public/assets/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/style.scss -------------------------------------------------------------------------------- /public/assets/scss/temp/_calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/temp/_calendar.scss -------------------------------------------------------------------------------- /public/assets/scss/temp/_chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/temp/_chat.scss -------------------------------------------------------------------------------- /public/assets/scss/temp/_contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/temp/_contact.scss -------------------------------------------------------------------------------- /public/assets/scss/temp/_error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/temp/_error.scss -------------------------------------------------------------------------------- /public/assets/scss/temp/_invoice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/temp/_invoice.scss -------------------------------------------------------------------------------- /public/assets/scss/temp/_mail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/temp/_mail.scss -------------------------------------------------------------------------------- /public/assets/scss/util/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/util/_background.scss -------------------------------------------------------------------------------- /public/assets/scss/util/_border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/util/_border.scss -------------------------------------------------------------------------------- /public/assets/scss/util/_height.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/util/_height.scss -------------------------------------------------------------------------------- /public/assets/scss/util/_margin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/util/_margin.scss -------------------------------------------------------------------------------- /public/assets/scss/util/_opacity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/util/_opacity.scss -------------------------------------------------------------------------------- /public/assets/scss/util/_padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/util/_padding.scss -------------------------------------------------------------------------------- /public/assets/scss/util/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/util/_position.scss -------------------------------------------------------------------------------- /public/assets/scss/util/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/util/_typography.scss -------------------------------------------------------------------------------- /public/assets/scss/util/_width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/assets/scss/util/_width.scss -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/404.blade.php -------------------------------------------------------------------------------- /resources/views/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/500.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/invoices/invoices.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/invoices/invoices.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/layouts/footer.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/head.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/layouts/head.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/main-header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/layouts/main-header.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/layouts/master.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/master2.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/layouts/master2.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/models.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/layouts/models.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/layouts/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/products/products.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/products/products.blade.php -------------------------------------------------------------------------------- /resources/views/roles/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/roles/create.blade.php -------------------------------------------------------------------------------- /resources/views/roles/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/roles/edit.blade.php -------------------------------------------------------------------------------- /resources/views/roles/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/roles/index.blade.php -------------------------------------------------------------------------------- /resources/views/roles/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/roles/show.blade.php -------------------------------------------------------------------------------- /resources/views/sections/sections.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/sections/sections.blade.php -------------------------------------------------------------------------------- /resources/views/users/add_user.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/users/add_user.blade.php -------------------------------------------------------------------------------- /resources/views/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/users/edit.blade.php -------------------------------------------------------------------------------- /resources/views/users/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/users/show.blade.php -------------------------------------------------------------------------------- /resources/views/users/show_users.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/resources/views/users/show_users.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/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/SaeedAhmed99/InvoicesSystem/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/SaeedAhmed99/InvoicesSystem/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaeedAhmed99/InvoicesSystem/HEAD/webpack.mix.js --------------------------------------------------------------------------------