├── .env.e2e.example ├── .env.example ├── .htaccess ├── README.md ├── app ├── Console │ ├── Commands │ │ ├── CleanupExpiredOtpTokens.php │ │ ├── ClearProfilCache.php │ │ ├── InstallDev.php │ │ └── SyncWidgets.php │ └── Kernel.php ├── Enums │ ├── Anonim.php │ ├── JenisJabatan.php │ ├── KonversiHariFormDokumen.php │ ├── LabelStatistik.php │ ├── LogVerifikasiSurat.php │ ├── MenuTipe.php │ ├── Status.php │ ├── StatusFormDokumen.php │ ├── StatusSurat.php │ ├── StatusVerifikasiSurat.php │ ├── SurveiEnum.php │ ├── Tema.php │ ├── TipeWaktuFormDokumen.php │ └── VisitorFilterEnum.php ├── Exceptions │ └── Handler.php ├── Exports │ ├── CounterVisitorExport.php │ ├── ExportAKIAKB.php │ ├── ExportAnggaranDesa.php │ ├── ExportAnggaranRealisasi.php │ ├── ExportDataDesa.php │ ├── ExportEpidemiPenyakit.php │ ├── ExportFasilitasPaud.php │ ├── ExportImunisasi.php │ ├── ExportKeluarga.php │ ├── ExportLaporanApbdes.php │ ├── ExportPembangunan.php │ ├── ExportPenduduk.php │ ├── ExportProgramBantuan.php │ ├── ExportPutusSekolah.php │ ├── ExportSuplemen.php │ ├── ExportSuplemenTerdata.php │ ├── ExportTingkatPendidikan.php │ ├── ExportToiletSanitasi.php │ ├── LaporanPendudukByIdExport.php │ └── LaporanPendudukExport.php ├── Facades │ └── Counter.php ├── Helpers │ ├── Counter.php │ └── SystemRequirementsChecker.php ├── Http │ ├── Controllers │ │ ├── Api │ │ │ ├── Auth │ │ │ │ └── AuthController.php │ │ │ ├── Frontend │ │ │ │ ├── AlbumController.php │ │ │ │ ├── AnggaranDesaController.php │ │ │ │ ├── AnggaranRealisasiController.php │ │ │ │ ├── ArtikelController.php │ │ │ │ ├── BaseController.php │ │ │ │ ├── DesaController.php │ │ │ │ ├── FaqController.php │ │ │ │ ├── FormDokumenController.php │ │ │ │ ├── GaleriController.php │ │ │ │ ├── KategoriController.php │ │ │ │ ├── KesehatanController.php │ │ │ │ ├── KomplainController.php │ │ │ │ ├── PendidikanController.php │ │ │ │ ├── PotensiController.php │ │ │ │ ├── ProfilController.php │ │ │ │ ├── ProgramBantuanController.php │ │ │ │ ├── RegulasiController.php │ │ │ │ ├── StatistikPendudukController.php │ │ │ │ └── WebsiteController.php │ │ │ ├── LaporanApbdesController.php │ │ │ ├── LaporanPendudukController.php │ │ │ ├── PembangunanController.php │ │ │ ├── PendudukController.php │ │ │ ├── PesanController.php │ │ │ ├── ProfilDesaController.php │ │ │ ├── ProgamBantuanController.php │ │ │ ├── SuratController.php │ │ │ └── TokenController.php │ │ ├── Auth │ │ │ ├── ChangeDefaultController.php │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── OtpController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ ├── TwoFactorAuthController.php │ │ │ ├── TwoFactorController.php │ │ │ └── VerificationController.php │ │ ├── BackEnd │ │ │ ├── EventController.php │ │ │ └── ThemesController.php │ │ ├── BackEndController.php │ │ ├── Controller.php │ │ ├── Counter │ │ │ └── CounterController.php │ │ ├── DashboardController.php │ │ ├── Data │ │ │ ├── AKIAKBController.php │ │ │ ├── AdminKomplainController.php │ │ │ ├── AnggaranDesaController.php │ │ │ ├── AnggaranRealisasiController.php │ │ │ ├── ArsipController.php │ │ │ ├── DataDesaController.php │ │ │ ├── DataPembangunanController.php │ │ │ ├── DataUmumController.php │ │ │ ├── EpidemiPenyakitController.php │ │ │ ├── FasilitasPaudController.php │ │ │ ├── ImunisasiController.php │ │ │ ├── JabatanController.php │ │ │ ├── KategoriLembagaController.php │ │ │ ├── KeluargaController.php │ │ │ ├── LaporanApbdesController.php │ │ │ ├── LaporanPendudukController.php │ │ │ ├── LembagaAnggotaController.php │ │ │ ├── LembagaController.php │ │ │ ├── PendudukController.php │ │ │ ├── PengurusController.php │ │ │ ├── ProfilController.php │ │ │ ├── ProgramBantuanController.php │ │ │ ├── PutusSekolahController.php │ │ │ ├── SuplemenController.php │ │ │ ├── TingkatPendidikanController.php │ │ │ └── ToiletSanitasiController.php │ │ ├── FrontEnd │ │ │ ├── AnggaranDesaController.php │ │ │ ├── AnggaranRealisasiController.php │ │ │ ├── DownloadController.php │ │ │ ├── KependudukanController.php │ │ │ ├── KesehatanController.php │ │ │ ├── PageController.php │ │ │ ├── PendidikanController.php │ │ │ ├── ProfilController.php │ │ │ ├── ProgramBantuanController.php │ │ │ ├── PublikasiController.php │ │ │ ├── SistemKomplainController.php │ │ │ └── WebFaqController.php │ │ ├── FrontEndController.php │ │ ├── Helpers │ │ │ └── Parsedown.php │ │ ├── HomeController.php │ │ ├── Informasi │ │ │ ├── ArtikelController.php │ │ │ ├── ArtikelKategoriController.php │ │ │ ├── FaqController.php │ │ │ ├── FormDokumenController.php │ │ │ ├── InformasiController.php │ │ │ ├── KomentarArtikelController.php │ │ │ ├── MediaSosialController.php │ │ │ ├── PotensiController.php │ │ │ ├── ProsedurController.php │ │ │ ├── RegulasiController.php │ │ │ └── SinergiProgramController.php │ │ ├── Installer │ │ │ └── InstallerController.php │ │ ├── Kerjasama │ │ │ └── PendaftaranKerjasamaController.php │ │ ├── LogViewerController.php │ │ ├── Page │ │ │ └── AnggaranRealisasiController.php │ │ ├── Pesan │ │ │ └── PesanController.php │ │ ├── Publikasi │ │ │ ├── AlbumController.php │ │ │ └── GaleriController.php │ │ ├── Role │ │ │ └── RoleController.php │ │ ├── Setting │ │ │ ├── AplikasiController.php │ │ │ ├── COAController.php │ │ │ ├── JenisDokumenController.php │ │ │ ├── JenisPenyakitController.php │ │ │ ├── KategoriKomplainController.php │ │ │ ├── NavMenuController.php │ │ │ ├── NavigationController.php │ │ │ ├── PengaturanDatabaseController.php │ │ │ ├── SlideController.php │ │ │ ├── TipePotensiController.php │ │ │ └── TipeRegulasiController.php │ │ ├── SitemapController.php │ │ ├── Surat │ │ │ ├── PermohonanController.php │ │ │ └── SuratController.php │ │ ├── TestEmailController.php │ │ └── User │ │ │ └── UserController.php │ ├── Kernel.php │ ├── Livewire │ │ ├── BaseComponent.php │ │ ├── Components │ │ │ └── Alert.php │ │ ├── Informasi │ │ │ └── MediaTerkaitController.php │ │ ├── Kerjasama │ │ │ └── PendaftaranKerjasama.php │ │ └── Widget │ │ │ └── WidgetController.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── CheckOtpEnabled.php │ │ ├── CompleteProfile.php │ │ ├── CustomForms.php │ │ ├── EncryptCookies.php │ │ ├── GlobalShareMiddleware.php │ │ ├── KDInstalled.php │ │ ├── MaintenanceMode.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SecurityHeaders.php │ │ ├── ThemeApiMiddleware.php │ │ ├── TokenRegistered.php │ │ ├── TrackVisitors.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ ├── VerifyCsrfToken.php │ │ └── XssSanitization.php │ ├── Requests │ │ ├── AlbumRequest.php │ │ ├── AnggaranDesaRequest.php │ │ ├── Api │ │ │ └── Frontend │ │ │ │ ├── StoreCommentRequest.php │ │ │ │ └── StoreKomplainRequest.php │ │ ├── ArtikelRequest.php │ │ ├── ChangeRequest.php │ │ ├── DataUmumRequest.php │ │ ├── DesaRequest.php │ │ ├── DocumentRequest.php │ │ ├── DokumenRequest.php │ │ ├── EmailSmtpRequest.php │ │ ├── EventRequest.php │ │ ├── FaqRequest.php │ │ ├── GaleriRequest.php │ │ ├── GetPesanRequest.php │ │ ├── JabatanRequest.php │ │ ├── JenisDocumentRequest.php │ │ ├── JenisDokumenRequest.php │ │ ├── JenisPenyakitRequest.php │ │ ├── KategoriKomplainRequest.php │ │ ├── KategoriLembagaRequest.php │ │ ├── LaporanApbdesRequest.php │ │ ├── LaporanPendudukRequest.php │ │ ├── MediaSosialRequest.php │ │ ├── NavigationRequest.php │ │ ├── PembangunanDokumentasiRequest.php │ │ ├── PembangunanRequest.php │ │ ├── PendudukRequest.php │ │ ├── PengaturanSuratRequest.php │ │ ├── PengurusRequest.php │ │ ├── PesanRequest.php │ │ ├── PotensiRequest.php │ │ ├── ProfilDesaRequest.php │ │ ├── ProfilRequest.php │ │ ├── ProgramBantuanRequest.php │ │ ├── ProsedurRequest.php │ │ ├── RegulasiRequest.php │ │ ├── RegulasiUpdateRequest.php │ │ ├── RoleRequest.php │ │ ├── SinergiProgramRequest.php │ │ ├── SlideRequest.php │ │ ├── StoreLembagaAnggotaRequest.php │ │ ├── StoreLembagaRequest.php │ │ ├── SurveiRequest.php │ │ ├── TingkatPendidikanRequest.php │ │ ├── TipePotensiRequest.php │ │ ├── TipeRegulasiRequest.php │ │ ├── UpdateLembagaAnggotaRequest.php │ │ ├── UpdateLembagaRequest.php │ │ └── UserRequest.php │ └── Resources │ │ └── SuratResource.php ├── Imports │ ├── ImporAKIAKB.php │ ├── ImporAPBDesa.php │ ├── ImporAnggaranRealisasi.php │ ├── ImporEpidemiPenyakit.php │ ├── ImporFasilitasPaud.php │ ├── ImporImunisasi.php │ ├── ImporLaporanApbdes.php │ ├── ImporLaporanPenduduk.php │ ├── ImporPendudukKeluarga.php │ ├── ImporPutusSekolah.php │ ├── ImporTingkatPendidikan.php │ ├── ImporToiletSanitasi.php │ ├── SinkronBantuan.php │ ├── SinkronPembangunan.php │ ├── SinkronPembangunanDokumentasi.php │ ├── SinkronPenduduk.php │ └── SinkronPesertaBantuan.php ├── Jobs │ ├── LaporanApbdesQueueJob.php │ ├── LaporanPendudukQueueJob.php │ └── PendudukQueueJob.php ├── Mail │ ├── OtpMail.php │ └── SmtpTestEmail.php ├── Models │ ├── Agama.php │ ├── AkiAkb.php │ ├── Album.php │ ├── AnggaranDesa.php │ ├── AnggaranRealisasi.php │ ├── Artikel.php │ ├── ArtikelKategori.php │ ├── Cacat.php │ ├── CaraKB.php │ ├── Coa.php │ ├── CoaType.php │ ├── Comment.php │ ├── CounterPage.php │ ├── CounterVisitor.php │ ├── DataDesa.php │ ├── DataUmum.php │ ├── Document.php │ ├── EmailSmtp.php │ ├── EpidemiPenyakit.php │ ├── Event.php │ ├── Faq.php │ ├── FasilitasPAUD.php │ ├── FormDokumen.php │ ├── Galeri.php │ ├── GolonganDarah.php │ ├── HubunganKeluarga.php │ ├── Imunisasi.php │ ├── Jabatan.php │ ├── JawabKomplain.php │ ├── JenisDokumen.php │ ├── JenisPenyakit.php │ ├── JenisSurat.php │ ├── Kategori.php │ ├── KategoriKomplain.php │ ├── KategoriLembaga.php │ ├── Kawin.php │ ├── Keluarga.php │ ├── Komplain.php │ ├── LaporanApbdes.php │ ├── LaporanPenduduk.php │ ├── Lembaga.php │ ├── LembagaAnggota.php │ ├── LogImport.php │ ├── LogTte.php │ ├── MediaSosial.php │ ├── MediaTerkait.php │ ├── Menu.php │ ├── NavMenu.php │ ├── Navigation.php │ ├── OtpToken.php │ ├── Pekerjaan.php │ ├── Pembangunan.php │ ├── PembangunanDokumentasi.php │ ├── Pendidikan.php │ ├── PendidikanKK.php │ ├── Penduduk.php │ ├── PendudukSex.php │ ├── Pengurus.php │ ├── Pesan.php │ ├── PesanDetail.php │ ├── PesertaProgram.php │ ├── Potensi.php │ ├── Profil.php │ ├── Program.php │ ├── Prosedur.php │ ├── PutusSekolah.php │ ├── Regulasi.php │ ├── SakitMenahun.php │ ├── SettingAplikasi.php │ ├── SinergiProgram.php │ ├── Slide.php │ ├── SubCoa.php │ ├── SubSubCoa.php │ ├── Suplemen.php │ ├── SuplemenTerdata.php │ ├── Surat.php │ ├── Survei.php │ ├── Themes.php │ ├── TingkatPendidikan.php │ ├── TipePotensi.php │ ├── TipeRegulasi.php │ ├── ToiletSanitasi.php │ ├── Umur.php │ ├── User.php │ ├── Visitor.php │ ├── Warganegara.php │ ├── Widget.php │ └── WilClusterDesa.php ├── Notifications │ ├── SendToken2FA.php │ └── TestEmail.php ├── Observers │ ├── AlbumObserver.php │ ├── GaleriObserver.php │ ├── MediaSosialObserver.php │ ├── MediaTerkaitObserver.php │ └── WidgetObserver.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EmailTwoFactorProvider.php │ ├── EventServiceProvider.php │ ├── KDServiceProvider.php │ ├── RouteServiceProvider.php │ └── SmtpServiceProvider.php ├── Repositories │ ├── AlbumApiRepository.php │ ├── ArtikelApiRepository.php │ ├── BaseApiRepository.php │ ├── BaseRepository.php │ ├── Contracts │ │ └── BaseRepositoryInterface.php │ ├── DesaApiRepository.php │ ├── FaqApiRepository.php │ ├── FormDokumenApiRepository.php │ ├── GaleriApiRepository.php │ ├── KategoriApiRepository.php │ ├── KomplainApiRepository.php │ ├── PotensiApiRepository.php │ ├── ProfilApiRepository.php │ ├── RegulasiApiRepository.php │ ├── StatistikPendudukApiRepository.php │ └── WebsiteApiRepository.php ├── Rules │ ├── CekDesa.php │ ├── Password.php │ ├── ValidDesa.php │ └── ValidasiNikRule.php ├── Services │ ├── AnggaranRealisasiChartService.php │ ├── ApiService.php │ ├── BantuanService.php │ ├── BaseApiService.php │ ├── DesaService.php │ ├── KeluargaService.php │ ├── KesehatanChartAKIAKBService.php │ ├── KesehatanChartEpidemiPenyakitService.php │ ├── KesehatanChartImunisasiService.php │ ├── KesehatanChartToiletSanitasiService.php │ ├── LaporanPendudukService.php │ ├── OtpService.php │ ├── PendidikanChartFasilitasPAUDService.php │ ├── PendidikanChartPutusSekolahService.php │ ├── PendudukService.php │ ├── ProgramBantuanService.php │ ├── StatistikChartAnggaranDesaService.php │ ├── StatistikChartBantuanKeluargaService.php │ ├── StatistikChartBantuanPendudukService.php │ ├── StatistikChartPendudukAgamaService.php │ ├── StatistikChartPendudukGolDarahService.php │ ├── StatistikChartPendudukPendidikanService.php │ ├── StatistikChartPendudukPerkawinanService.php │ ├── StatistikChartPendudukService.php │ ├── StatistikChartPendudukUsiaService.php │ ├── StatistikChartTingkatPendidikanService.php │ └── StatistikPendudukService.php ├── Support │ └── Collection.php ├── Traits │ ├── BaganTrait.php │ ├── HandlesFileUpload.php │ └── HandlesResourceDeletion.php └── Transformers │ ├── AlbumTransformer.php │ ├── ArtikelKategoriTransformer.php │ ├── ArtikelTransformer.php │ ├── CommentTransformer.php │ ├── DataDesaTransformer.php │ ├── DataUmumTransformer.php │ ├── FaqTransformer.php │ ├── FormDokumenTransformer.php │ ├── GaleriTransformer.php │ ├── JawabKomplainTransformer.php │ ├── KomplainTransformer.php │ ├── PotensiTransformer.php │ ├── ProfilTransformer.php │ ├── RegulasiTransformer.php │ ├── StatistikPendudukTransformer.php │ ├── TipePotensiTransformer.php │ ├── WebsiteTransformer.php │ └── YearsListTransformer.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── catatan_rilis.md ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── backup.php ├── broadcasting.php ├── cache.php ├── captcha.php ├── cors.php ├── database.php ├── datatables.php ├── debugbar.php ├── excel.php ├── feeds.php ├── filesystems.php ├── hashing.php ├── image.php ├── installer.php ├── json-api-paginate.php ├── jsvalidation.php ├── jwt.php ├── lfm.php ├── livewire.php ├── logging.php ├── mail.php ├── otp.php ├── permission.php ├── query-builder.php ├── querydetector.php ├── queue.php ├── recaptchav3.php ├── scribe.php ├── sentry.php ├── services.php ├── session.php ├── sluggable.php ├── theme-api.php ├── themes-manager.php ├── tinker.php ├── twofactor-auth.php └── view.php ├── database ├── .gitignore ├── database_test.sql.tar.gz ├── factories │ ├── AkiAkbFactory.php │ ├── AlbumFactory.php │ ├── AnggaranDesaFactory.php │ ├── AnggaranRealisasiFactory.php │ ├── ArtikelFactory.php │ ├── ArtikelKategoriFactory.php │ ├── DataDesaFactory.php │ ├── EpidemiPenyakitFactory.php │ ├── EventFactory.php │ ├── FasilitasPAUDFactory.php │ ├── ImunisasiFactory.php │ ├── JabatanFactory.php │ ├── JawabKomplainFactory.php │ ├── JenisDokumenFactory.php │ ├── JenisPenyakitFactory.php │ ├── KategoriFactory.php │ ├── KategoriKomplainFactory.php │ ├── KategoriLembagaFactory.php │ ├── KeluargaFactory.php │ ├── KomplainFactory.php │ ├── LaporanApbdesFactory.php │ ├── LaporanPendudukFactory.php │ ├── LembagaAnggotaFactory.php │ ├── LembagaFactory.php │ ├── MediaSosialFactory.php │ ├── NavMenuFactory.php │ ├── PembangunanFactory.php │ ├── PendudukFactory.php │ ├── PengurusFactory.php │ ├── PesanFactory.php │ ├── ProgramFactory.php │ ├── PutusSekolahFactory.php │ ├── SettingAplikasiFactory.php │ ├── SinergiProgramFactory.php │ ├── SuplemenFactory.php │ ├── SuplemenTerdataFactory.php │ ├── SuratFactory.php │ ├── TingkatPendidikanFactory.php │ ├── ToiletSanitasiFactory.php │ └── UserFactory.php ├── migrations │ ├── .gitkeep │ ├── 2014_07_02_230147_migration_cartalyst_sentinel.php │ ├── 2017_10_31_165346_create_menus_tables.php │ ├── 2017_10_31_165347_create_nav_menus_table.php │ ├── 2018_01_19_231052_create_prosedur_table.php │ ├── 2018_01_21_194204_create_faq_table.php │ ├── 2018_01_22_113639_create_events_table.php │ ├── 2018_01_24_183803_create_regulasi_table.php │ ├── 2018_01_27_084715_create_kecamatan_table.php │ ├── 2018_01_27_084807_create_provinsi_table.php │ ├── 2018_01_27_084828_create_kabupaten_table.php │ ├── 2018_01_27_091024_create_desa_table.php │ ├── 2018_01_27_143943_create_profils_table.php │ ├── 2018_02_01_083021_create_data_umum_table.php │ ├── 2018_02_07_041730_create_penduduk_table.php │ ├── 2018_02_07_044425_create_pekerjaan_table.php │ ├── 2018_02_07_061956_create_agama_table.php │ ├── 2018_02_07_081809_create_kawin_table.php │ ├── 2018_02_07_120658_create_hubungan_keluarga_table.php │ ├── 2018_02_07_132847_create_pendidikan_kk_table.php │ ├── 2018_02_07_132956_create_pendidikan_table.php │ ├── 2018_02_07_141701_create_warganegara_table.php │ ├── 2018_02_07_161046_create_golongan_darah_table.php │ ├── 2018_02_07_161652_create_cacat_table.php │ ├── 2018_02_07_162450_create_sakit_menahun_table.php │ ├── 2018_02_07_163236_create_cara_kb_table.php │ ├── 2018_02_11_173433_create_proses_ektp_table.php │ ├── 2018_02_13_043336_create_proses_kk_table.php │ ├── 2018_02_13_065923_create_proses_akta_lahir_table.php │ ├── 2018_02_13_111006_create_proses_domisili_table.php │ ├── 2018_02_27_030954_create_keluarga_table.php │ ├── 2018_02_27_033644_create_wil_clusterdesa_table.php │ ├── 2018_02_28_094700_create_umur_table.php │ ├── 2018_04_11_164146_create_komplain_table.php │ ├── 2018_04_19_131534_create_kategori_komplain_table.php │ ├── 2018_04_25_183835_create_tipe_regulasi_table.php │ ├── 2018_04_28_053520_create_counter_page_table.php │ ├── 2018_04_28_053738_create_counter_visitor_table.php │ ├── 2018_04_28_053847_create_counter_page_visitor.php │ ├── 2018_05_03_101258_create_form_dokumen_table.php │ ├── 2018_05_04_232147_create_data_desa_table.php │ ├── 2018_05_10_054617_create_akib_table.php │ ├── 2018_05_10_125321_create_imunisasi_table.php │ ├── 2018_05_10_192220_create_penyakit_table.php │ ├── 2018_05_11_045417_create_epidemi_penyakit_table.php │ ├── 2018_05_11_062834_create_toilet_sanitasi_table.php │ ├── 2018_05_15_175503_create_tingkat_pendidikan_table.php │ ├── 2018_05_15_180306_create_failitas_paud_table.php │ ├── 2018_05_22_154137_create_jawab_komplain_table.php │ ├── 2018_05_23_002258_create_coa_type_table.php │ ├── 2018_05_23_002514_create_sub_coa_table.php │ ├── 2018_05_23_002657_create_sub_sub_coa_table.php │ ├── 2018_05_23_002747_create_coa_table.php │ ├── 2018_05_29_145439_create_putus_sekolah_table.php │ ├── 2018_05_31_094821_create_potensi_table.php │ ├── 2018_06_01_021440_create_anggaran_realisasi_table.php │ ├── 2018_06_01_221500_create_anggaran_desa_table.php │ ├── 2018_06_04_042538_create_log_penduduk_table.php │ ├── 2018_06_05_013340_create_program_table.php │ ├── 2018_06_05_014323_create_peserta_program_table.php │ ├── 2018_07_07_143736_create_tipe_potensis_table.php │ ├── 2018_07_12_020005_create_log_imports_table.php │ ├── 2019_05_29_214911_add_fields_penduduk_table.php │ ├── 2019_07_19_220717_create_wilayahs_table.php │ ├── 2019_07_19_223025_alter_table_profile.php │ ├── 2019_07_19_223731_alter_table_data_umum.php │ ├── 2019_07_19_224320_alter_table_data_desa.php │ ├── 2019_07_19_225118_alter_table_penduduk.php │ ├── 2019_07_19_225315_alter_table_keluarga.php │ ├── 2019_07_19_233413_alter_table_aki_akb.php │ ├── 2019_07_19_234452_alter_table_imunisasi.php │ ├── 2019_07_19_234613_alter_table_epidemi_penyakit.php │ ├── 2019_07_19_234748_alter_table_toilet_sanitasi.php │ ├── 2019_07_19_235703_alter_table_tingkat_pendidikan.php │ ├── 2019_07_20_001401_alter_table_putus_sekolah.php │ ├── 2019_07_20_001605_alter_table_fasilitas_paud.php │ ├── 2019_07_20_002322_alter_table_anggaran_realisasi.php │ ├── 2020_11_21_185545_drop_tabel_ref_desa.php │ ├── 2020_11_21_185837_drop_tabel_ref_kecamatan.php │ ├── 2020_11_21_185950_drop_tabel_ref_kabupaten.php │ ├── 2020_11_21_190021_drop_tabel_ref_provinsi.php │ ├── 2020_11_28_205956_create_jobs_table.php │ ├── 2020_11_28_210237_create_failed_jobs_table.php │ ├── 2020_11_29_183342_alter_table_profil.php │ ├── 2020_12_08_101049_alter_table_log_impor.php │ ├── 2020_12_14_155941_alter_table_das_penduduk.php │ ├── 2020_12_30_141825_alter__table_das_profil.php │ ├── 2020_12_30_205207_create_slides_table.php │ ├── 2021_01_02_055931_dropcolomn_data_umum_table.php │ ├── 2021_06_28_142557_create_setting_aplikasis_table.php │ ├── 2021_07_09_014633_create_apbdes_table.php │ ├── 2021_07_12_190018_alter_das_regulasi_table.php │ ├── 2021_07_13_164303_drop_layanan_kecamatan_table.php │ ├── 2021_07_15_214814_add_field_sumber_luas_wilayah.php │ ├── 2021_07_19_095319_alter_table_user.php │ ├── 2021_08_28_153130_crete_laporan_penduduk_table.php │ ├── 2021_09_22_235156_alter_table_das_profil_add_name.php │ ├── 2021_09_23_070308_drop_table_ref_wilayah.php │ ├── 2021_10_07_130420_add_slug_event.php │ ├── 2021_10_12_081718_alter_table_das_data_umum.php │ ├── 2021_10_12_083709_alter_table_das_data_desa.php │ ├── 2021_10_12_110152_alter_table_das_regulasi.php │ ├── 2021_10_13_112449_alter_table_das_keluarga.php │ ├── 2021_10_14_075357_alter_table_das_akib.php │ ├── 2021_10_14_081042_alter_table_das_imunisasi.php │ ├── 2021_10_14_083252_alter_table_das_epidemi_penyakit.php │ ├── 2021_10_14_084924_alter_table_das_toilet_sanitasi.php │ ├── 2021_10_14_090123_alter_table_das_tingkat_pendidikan.php │ ├── 2021_10_14_100339_alter_table_das_putus_sekolah.php │ ├── 2021_10_14_101450_alter_table_das_fasilitas_paud.php │ ├── 2021_10_14_105228_alter_table_das_anggaran_realisasi.php │ ├── 2021_10_15_100729_create_kategoris_table.php │ ├── 2021_10_15_100730_create_das_artikel_table.php │ ├── 2021_11_17_123148_alter_table_dash_penduduk.php │ ├── 2021_11_17_203124_alter_table_artike_change_field_gambar.php │ ├── 2021_12_06_071737_alter_table_das_keluarga_remove_fields.php │ ├── 2022_01_09_190536_modify_fields_das_tingkat_pendidikan.php │ ├── 2022_01_12_004443_alter_dasar_pembentukan_table_das_profil.php │ ├── 2022_02_08_000016_tambahkan_data_setting_aplikasi.php │ ├── 2022_03_09_134418_create_permission_tables.php │ ├── 2022_03_13_103220_add_remember_user.php │ ├── 2022_04_12_103357_alter_table_das_faq.php │ ├── 2022_04_12_194536_alter_table_das_data_umum_modify_tipologi.php │ ├── 2022_04_17_002342_tambah_kolom_desa.php │ ├── 2022_04_17_203223_import_log_nullable.php │ ├── 2022_04_17_225617_create_table_das_pembangunan.php │ ├── 2022_04_18_070823_create_table_das_pembangunan_dokumentasi.php │ ├── 2022_04_19_074746_create_role_api.php │ ├── 2022_04_20_105732_tambahkan_kolom_programbantuan.php │ ├── 2022_04_20_115358_alter_programbantuan.php │ ├── 2022_04_20_122309_add_kolom_daspesertabantuan.php │ ├── 2022_04_21_224806_data_umum_path.php │ ├── 2022_04_22_230021_add_path_desa.php │ ├── 2022_04_24_144702_role_kontributor_artikel.php │ ├── 2022_04_25_202316_create_table_pesan.php │ ├── 2022_04_25_202406_create_table_detail_pesan.php │ ├── 2022_05_15_121032_default_sebutan_desa.php │ ├── 2022_06_22_205014_add_slug_prosedur.php │ ├── 2022_07_14_102805_create_media_sosial_table.php │ ├── 2022_07_18_040936_create_suplemen_table.php │ ├── 2022_07_18_044041_create_suplemen_terdata_table.php │ ├── 2022_08_22_062136_create_sinergi_program_table.php │ ├── 2022_11_06_191838_create_ref_jabatan_table.php │ ├── 2022_11_09_143029_create_pengurus_table.php │ ├── 2022_11_14_131235_add_pengurus_user.php │ ├── 2022_11_24_181234_update_id_kartu_program_bantuan.php │ ├── 2022_11_26_160652_delete_perangkat_profil.php │ ├── 2022_12_15_195013_add_tte_setting.php │ ├── 2022_12_16_182906_create_log_surat_table.php │ ├── 2023_01_12_151140_change_slug_prosedur.php │ ├── 2023_01_17_154739_create_log_tte_table.php │ ├── 2023_01_20_153011_change_pengurus_nik_type.php │ ├── 2023_02_06_061656_add_back_missing_das_pengurus_columns.php │ ├── 2023_02_27_122959_rename_data_umum_tipologi.php │ ├── 2023_03_29_224214_delete_duplicate_penduduk.php │ ├── 2023_04_18_131637_update_status_keluhan.php │ ├── 2023_10_19_154602_maintenance_mode.php │ ├── 2024_02_02_131925_add_lat_lng_data_umum.php │ ├── 2024_06_03_042202_create_themes.php │ ├── 2024_06_25_131925_add_tipologi_data_umum.php │ ├── 2024_07_01_101314_create_navigations_table.php │ ├── 2024_07_21_024936_delete_socialmedia_tbl_profil.php │ ├── 2024_08_18_155051_update_komplain_anonim.php │ ├── 2024_08_22_213619_add_type_das_navigation.php │ ├── 2024_08_23_222334_create_das_artikel_comment_table.php │ ├── 2024_08_26_071006_delete_duplicate_penduduk_by_nik.php │ ├── 2024_09_09_105521_create_albums_table.php │ ├── 2024_09_09_121409_create_galeris_table.php │ ├── 2024_09_10_141546_add_ip_and_device_to_das_artikel_comment__table.php │ ├── 2024_09_30_112202_create_artikel_kategoris_table.php │ ├── 2024_10_03_113405_add_id_kategori_to_das_artikel_table.php │ ├── 2024_10_03_203704_add_field_kategori_id_in_table_artikel.php │ ├── 2024_10_04_101813_add_field_type_in_table_nav_menus.php │ ├── 2024_10_22_120555_add_menu_dinamis.php │ ├── 2024_11_01_161123_remove_foreign_key_kategori.php │ ├── 2024_11_20_163753_create_kategori_lembagas_table.php │ ├── 2024_11_23_114706_create_lembaga_table.php │ ├── 2024_11_23_114718_create_lembaga_anggota_table.php │ ├── 2024_11_25_133116_create_penduduk_sex_table.php │ ├── 2025_01_16_162721_create_setting_sinkronisasi.php │ ├── 2025_02_20_073828_create_widgets_table.php │ ├── 2025_03_04_132643_remove_data_publikasi_galeri_table_das_counter_page.php │ ├── 2025_03_07_090812_add_mobile_to_users_table.php │ ├── 2025_03_07_090812_create_two_factor_auths_table.php │ ├── 2025_03_07_091749_create_setting_2fa.php │ ├── 2025_03_07_144327_create_setting_capctha.php │ ├── 2025_03_18_095947_add_column_detail_penduduk_table_das_komplain.php │ ├── 2025_03_27_085103_setting_mapbox.php │ ├── 2025_03_28_204738_add_bagan_fields_to_das_pengurus_table.php │ ├── 2025_03_28_235514_add_atasan_to_das_pengurus_table.php │ ├── 2025_04_02_163116_create_jenis_dokumen_table.php │ ├── 2025_04_03_175912_create_documents_table.php │ ├── 2025_04_04_142924_add_multiple_column_to_form_dokumen_table.php │ ├── 2025_04_06_121528_update_enum_type_in_table_nav_menus.php │ ├── 2025_04_08_135038_create_email_smtps_table.php │ ├── 2025_04_10_223421_add_foreign_constraint_form_dokumen_table.php │ ├── 2025_04_21_142410_create_visitors_table.php │ ├── 2025_04_21_163846_add_page_views_to_visitors_table.php │ ├── 2025_05_07_192008_create_jenis_surat_table.php │ ├── 2025_05_24_130856_create_surveis_table.php │ ├── 2025_06_11_102702_create_maintenance_mode_if_not_exists.php │ ├── 2025_06_16_133818_add_survei_ikm_to_setting_aplikasi.php │ ├── 2025_06_16_144033_create_setting_layanan_opendesa_token.php │ ├── 2025_07_04_065206_create_media_terkaits_table.php │ ├── 2025_08_13_142347_add_setting_sebutan_desa.php │ ├── 2025_08_26_142311_add_column_nama_penduduk_log_surat.php │ ├── 2025_09_19_141128_add_setting_show_accessibility.php │ ├── 2025_09_27_143311_modify_pesan_table_change_desa_id_to_kode_desa.php │ ├── 2025_10_07_000001_add_otp_fields_to_users_table.php │ ├── 2025_10_07_000002_create_otp_tokens_table.php │ ├── 2025_10_08_000003_add_otp_login_setting.php │ ├── 2025_10_11_000004_string_purpose_otp_tokens.php │ ├── 2025_10_11_000005_2fa_enabled_users.php │ ├── 2025_10_20_000005_modify_2fa_setting.php │ ├── 2025_10_22_000001_update_users_for_telegram_id.php │ ├── 2025_10_22_000002_remove_login_otp_setting.php │ └── 2025_10_22_000003_add_otp_verified_to_users.php └── seeders │ ├── DasDataUmumTableSeeder.php │ ├── DasKategoriKomplainTableSeeder.php │ ├── DasMenuTableSeeder.php │ ├── DasNavigationTableSeeder.php │ ├── DasProfilTableSeeder.php │ ├── DasSettingTableSeeder.php │ ├── DasTipeRegulasiTableSeeder.php │ ├── DatabaseSeeder.php │ ├── Demo │ ├── DemoAKIAKBSeeder.php │ ├── DemoAPBDesaSeeder.php │ ├── DemoAnggaranRealisasiSeeder.php │ ├── DemoArtikelSeeder.php │ ├── DemoDasDataDesaTableSeeder.php │ ├── DemoDasDataUmumTableSeeder.php │ ├── DemoDasNavigationTableSeeder.php │ ├── DemoDasPengurusTableSeeder.php │ ├── DemoDasProfilTableSeeder.php │ ├── DemoDokumenSeeder.php │ ├── DemoEpidemiPenyakitSeeder.php │ ├── DemoEventSeeder.php │ ├── DemoFaqSeeder.php │ ├── DemoFasilitasPaudSeeder.php │ ├── DemoImunisasiSeeder.php │ ├── DemoMediaSosialSeeder.php │ ├── DemoPendudukKeluargaSeeder.php │ ├── DemoPesanDetailSeeder.php │ ├── DemoPesanSeeder.php │ ├── DemoPotensiSeeder.php │ ├── DemoProgramBantuanSeeder.php │ ├── DemoProsedurSeeder.php │ ├── DemoPutusSekolahSeeder.php │ ├── DemoRegulasiSeeder.php │ ├── DemoSinergiProgramSeeder.php │ ├── DemoSliderSeeder.php │ ├── DemoTingkatPendidikanSeeder.php │ └── DemoToiletSanitasiSeeder.php │ ├── DemoDatabaseSeeder.php │ ├── JenisSuratSeeder.php │ ├── PendudukSexSeeder.php │ ├── RefAgamaTableSeeder.php │ ├── RefCacatTableSeeder.php │ ├── RefCaraKbTableSeeder.php │ ├── RefCoaTableSeeder.php │ ├── RefCoaTypeTableSeeder.php │ ├── RefGolonganDarahTableSeeder.php │ ├── RefHubunganKeluargaTableSeeder.php │ ├── RefKategori.php │ ├── RefKawinTableSeeder.php │ ├── RefPekerjaanTableSeeder.php │ ├── RefPendidikanKkTableSeeder.php │ ├── RefPendidikanTableSeeder.php │ ├── RefPenyakitTableSeeder.php │ ├── RefSakitMenahunTableSeeder.php │ ├── RefSubCoaTableSeeder.php │ ├── RefSubSubCoaTableSeeder.php │ ├── RefUmurTableSeeder.php │ ├── RefWarganegaraTableSeeder.php │ └── RoleSpatieSeeder.php ├── helpers └── general_helper.php ├── lang └── en │ ├── auth.php │ ├── installer_messages.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── playwright.config.js ├── public ├── .htaccess ├── bower_components │ ├── Flot │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── API.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── PLUGINS.md │ │ ├── README.md │ │ ├── component.json │ │ ├── examples │ │ │ ├── ajax │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ └── index.html │ │ │ ├── annotating │ │ │ │ └── index.html │ │ │ ├── axes-interacting │ │ │ │ └── index.html │ │ │ ├── axes-multiple │ │ │ │ └── index.html │ │ │ ├── axes-time-zones │ │ │ │ ├── date.js │ │ │ │ ├── index.html │ │ │ │ └── tz │ │ │ │ │ ├── africa │ │ │ │ │ ├── antarctica │ │ │ │ │ ├── asia │ │ │ │ │ ├── australasia │ │ │ │ │ ├── backward │ │ │ │ │ ├── etcetera │ │ │ │ │ ├── europe │ │ │ │ │ ├── factory │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ ├── leapseconds │ │ │ │ │ ├── northamerica │ │ │ │ │ ├── pacificnew │ │ │ │ │ ├── solar87 │ │ │ │ │ ├── solar88 │ │ │ │ │ ├── solar89 │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── systemv │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ └── zone.tab │ │ │ ├── axes-time │ │ │ │ └── index.html │ │ │ ├── background.png │ │ │ ├── basic-options │ │ │ │ └── index.html │ │ │ ├── basic-usage │ │ │ │ └── index.html │ │ │ ├── canvas │ │ │ │ └── index.html │ │ │ ├── categories │ │ │ │ └── index.html │ │ │ ├── examples.css │ │ │ ├── image │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interacting │ │ │ │ └── index.html │ │ │ ├── navigate │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ ├── arrow-right.gif │ │ │ │ ├── arrow-up.gif │ │ │ │ └── index.html │ │ │ ├── percentiles │ │ │ │ └── index.html │ │ │ ├── realtime │ │ │ │ └── index.html │ │ │ ├── resize │ │ │ │ └── index.html │ │ │ ├── selection │ │ │ │ └── index.html │ │ │ ├── series-errorbars │ │ │ │ └── index.html │ │ │ ├── series-pie │ │ │ │ └── index.html │ │ │ ├── series-toggle │ │ │ │ └── index.html │ │ │ ├── series-types │ │ │ │ └── index.html │ │ │ ├── shared │ │ │ │ └── jquery-ui │ │ │ │ │ └── jquery-ui.min.css │ │ │ ├── stacking │ │ │ │ └── index.html │ │ │ ├── symbols │ │ │ │ └── index.html │ │ │ ├── threshold │ │ │ │ └── index.html │ │ │ ├── tracking │ │ │ │ └── index.html │ │ │ ├── visitors │ │ │ │ └── index.html │ │ │ └── zooming │ │ │ │ └── index.html │ │ ├── excanvas.js │ │ ├── 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 │ │ └── package.json │ ├── Ionicons │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── cheatsheet.html │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── ionicons.css │ │ │ └── ionicons.min.css │ │ ├── fonts │ │ │ ├── ionicons.eot │ │ │ ├── ionicons.svg │ │ │ ├── ionicons.ttf │ │ │ └── ionicons.woff │ │ ├── less │ │ │ ├── _ionicons-font.less │ │ │ ├── _ionicons-icons.less │ │ │ ├── _ionicons-variables.less │ │ │ └── ionicons.less │ │ ├── png │ │ │ └── 512 │ │ │ │ ├── alert-circled.png │ │ │ │ ├── alert.png │ │ │ │ ├── android-add-contact.png │ │ │ │ ├── android-add.png │ │ │ │ ├── android-alarm.png │ │ │ │ ├── android-archive.png │ │ │ │ ├── android-arrow-back.png │ │ │ │ ├── android-arrow-down-left.png │ │ │ │ ├── android-arrow-down-right.png │ │ │ │ ├── android-arrow-forward.png │ │ │ │ ├── android-arrow-up-left.png │ │ │ │ ├── android-arrow-up-right.png │ │ │ │ ├── android-battery.png │ │ │ │ ├── android-book.png │ │ │ │ ├── android-calendar.png │ │ │ │ ├── android-call.png │ │ │ │ ├── android-camera.png │ │ │ │ ├── android-chat.png │ │ │ │ ├── android-checkmark.png │ │ │ │ ├── android-clock.png │ │ │ │ ├── android-close.png │ │ │ │ ├── android-contact.png │ │ │ │ ├── android-contacts.png │ │ │ │ ├── android-data.png │ │ │ │ ├── android-developer.png │ │ │ │ ├── android-display.png │ │ │ │ ├── android-download.png │ │ │ │ ├── android-drawer.png │ │ │ │ ├── android-dropdown.png │ │ │ │ ├── android-earth.png │ │ │ │ ├── android-folder.png │ │ │ │ ├── android-forums.png │ │ │ │ ├── android-friends.png │ │ │ │ ├── android-hand.png │ │ │ │ ├── android-image.png │ │ │ │ ├── android-inbox.png │ │ │ │ ├── android-information.png │ │ │ │ ├── android-keypad.png │ │ │ │ ├── android-lightbulb.png │ │ │ │ ├── android-locate.png │ │ │ │ ├── android-location.png │ │ │ │ ├── android-mail.png │ │ │ │ ├── android-microphone.png │ │ │ │ ├── android-mixer.png │ │ │ │ ├── android-more.png │ │ │ │ ├── android-note.png │ │ │ │ ├── android-playstore.png │ │ │ │ ├── android-printer.png │ │ │ │ ├── android-promotion.png │ │ │ │ ├── android-reminder.png │ │ │ │ ├── android-remove.png │ │ │ │ ├── android-search.png │ │ │ │ ├── android-send.png │ │ │ │ ├── android-settings.png │ │ │ │ ├── android-share.png │ │ │ │ ├── android-social-user.png │ │ │ │ ├── android-social.png │ │ │ │ ├── android-sort.png │ │ │ │ ├── android-stair-drawer.png │ │ │ │ ├── android-star.png │ │ │ │ ├── android-stopwatch.png │ │ │ │ ├── android-storage.png │ │ │ │ ├── android-system-back.png │ │ │ │ ├── android-system-home.png │ │ │ │ ├── android-system-windows.png │ │ │ │ ├── android-timer.png │ │ │ │ ├── android-trash.png │ │ │ │ ├── android-user-menu.png │ │ │ │ ├── android-volume.png │ │ │ │ ├── android-wifi.png │ │ │ │ ├── aperture.png │ │ │ │ ├── archive.png │ │ │ │ ├── arrow-down-a.png │ │ │ │ ├── arrow-down-b.png │ │ │ │ ├── arrow-down-c.png │ │ │ │ ├── arrow-expand.png │ │ │ │ ├── arrow-graph-down-left.png │ │ │ │ ├── arrow-graph-down-right.png │ │ │ │ ├── arrow-graph-up-left.png │ │ │ │ ├── arrow-graph-up-right.png │ │ │ │ ├── arrow-left-a.png │ │ │ │ ├── arrow-left-b.png │ │ │ │ ├── arrow-left-c.png │ │ │ │ ├── arrow-move.png │ │ │ │ ├── arrow-resize.png │ │ │ │ ├── arrow-return-left.png │ │ │ │ ├── arrow-return-right.png │ │ │ │ ├── arrow-right-a.png │ │ │ │ ├── arrow-right-b.png │ │ │ │ ├── arrow-right-c.png │ │ │ │ ├── arrow-shrink.png │ │ │ │ ├── arrow-swap.png │ │ │ │ ├── arrow-up-a.png │ │ │ │ ├── arrow-up-b.png │ │ │ │ ├── arrow-up-c.png │ │ │ │ ├── asterisk.png │ │ │ │ ├── at.png │ │ │ │ ├── bag.png │ │ │ │ ├── battery-charging.png │ │ │ │ ├── battery-empty.png │ │ │ │ ├── battery-full.png │ │ │ │ ├── battery-half.png │ │ │ │ ├── battery-low.png │ │ │ │ ├── beaker.png │ │ │ │ ├── beer.png │ │ │ │ ├── bluetooth.png │ │ │ │ ├── bonfire.png │ │ │ │ ├── bookmark.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── bug.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camera.png │ │ │ │ ├── card.png │ │ │ │ ├── cash.png │ │ │ │ ├── chatbox-working.png │ │ │ │ ├── chatbox.png │ │ │ │ ├── chatboxes.png │ │ │ │ ├── chatbubble-working.png │ │ │ │ ├── chatbubble.png │ │ │ │ ├── chatbubbles.png │ │ │ │ ├── checkmark-circled.png │ │ │ │ ├── checkmark-round.png │ │ │ │ ├── checkmark.png │ │ │ │ ├── chevron-down.png │ │ │ │ ├── chevron-left.png │ │ │ │ ├── chevron-right.png │ │ │ │ ├── chevron-up.png │ │ │ │ ├── clipboard.png │ │ │ │ ├── clock.png │ │ │ │ ├── close-circled.png │ │ │ │ ├── close-round.png │ │ │ │ ├── close.png │ │ │ │ ├── closed-captioning.png │ │ │ │ ├── cloud.png │ │ │ │ ├── code-download.png │ │ │ │ ├── code-working.png │ │ │ │ ├── code.png │ │ │ │ ├── coffee.png │ │ │ │ ├── compass.png │ │ │ │ ├── compose.png │ │ │ │ ├── connection-bars.png │ │ │ │ ├── contrast.png │ │ │ │ ├── cube.png │ │ │ │ ├── disc.png │ │ │ │ ├── document-text.png │ │ │ │ ├── document.png │ │ │ │ ├── drag.png │ │ │ │ ├── earth.png │ │ │ │ ├── edit.png │ │ │ │ ├── egg.png │ │ │ │ ├── eject.png │ │ │ │ ├── email.png │ │ │ │ ├── eye-disabled.png │ │ │ │ ├── eye.png │ │ │ │ ├── female.png │ │ │ │ ├── filing.png │ │ │ │ ├── film-marker.png │ │ │ │ ├── fireball.png │ │ │ │ ├── flag.png │ │ │ │ ├── flame.png │ │ │ │ ├── flash-off.png │ │ │ │ ├── flash.png │ │ │ │ ├── flask.png │ │ │ │ ├── folder.png │ │ │ │ ├── fork-repo.png │ │ │ │ ├── fork.png │ │ │ │ ├── forward.png │ │ │ │ ├── funnel.png │ │ │ │ ├── game-controller-a.png │ │ │ │ ├── game-controller-b.png │ │ │ │ ├── gear-a.png │ │ │ │ ├── gear-b.png │ │ │ │ ├── grid.png │ │ │ │ ├── hammer.png │ │ │ │ ├── happy.png │ │ │ │ ├── headphone.png │ │ │ │ ├── heart-broken.png │ │ │ │ ├── heart.png │ │ │ │ ├── help-buoy.png │ │ │ │ ├── help-circled.png │ │ │ │ ├── help.png │ │ │ │ ├── home.png │ │ │ │ ├── icecream.png │ │ │ │ ├── icon-social-google-plus-outline.png │ │ │ │ ├── icon-social-google-plus.png │ │ │ │ ├── image.png │ │ │ │ ├── images.png │ │ │ │ ├── information-circled.png │ │ │ │ ├── information.png │ │ │ │ ├── ionic.png │ │ │ │ ├── ios7-alarm-outline.png │ │ │ │ ├── ios7-alarm.png │ │ │ │ ├── ios7-albums-outline.png │ │ │ │ ├── ios7-albums.png │ │ │ │ ├── ios7-americanfootball-outline.png │ │ │ │ ├── ios7-americanfootball.png │ │ │ │ ├── ios7-analytics-outline.png │ │ │ │ ├── ios7-analytics.png │ │ │ │ ├── ios7-arrow-back.png │ │ │ │ ├── ios7-arrow-down.png │ │ │ │ ├── ios7-arrow-forward.png │ │ │ │ ├── ios7-arrow-left.png │ │ │ │ ├── ios7-arrow-right.png │ │ │ │ ├── ios7-arrow-thin-down.png │ │ │ │ ├── ios7-arrow-thin-left.png │ │ │ │ ├── ios7-arrow-thin-right.png │ │ │ │ ├── ios7-arrow-thin-up.png │ │ │ │ ├── ios7-arrow-up.png │ │ │ │ ├── ios7-at-outline.png │ │ │ │ ├── ios7-at.png │ │ │ │ ├── ios7-barcode-outline.png │ │ │ │ ├── ios7-barcode.png │ │ │ │ ├── ios7-baseball-outline.png │ │ │ │ ├── ios7-baseball.png │ │ │ │ ├── ios7-basketball-outline.png │ │ │ │ ├── ios7-basketball.png │ │ │ │ ├── ios7-bell-outline.png │ │ │ │ ├── ios7-bell.png │ │ │ │ ├── ios7-bolt-outline.png │ │ │ │ ├── ios7-bolt.png │ │ │ │ ├── ios7-bookmarks-outline.png │ │ │ │ ├── ios7-bookmarks.png │ │ │ │ ├── ios7-box-outline.png │ │ │ │ ├── ios7-box.png │ │ │ │ ├── ios7-briefcase-outline.png │ │ │ │ ├── ios7-briefcase.png │ │ │ │ ├── ios7-browsers-outline.png │ │ │ │ ├── ios7-browsers.png │ │ │ │ ├── ios7-calculator-outline.png │ │ │ │ ├── ios7-calculator.png │ │ │ │ ├── ios7-calendar-outline.png │ │ │ │ ├── ios7-calendar.png │ │ │ │ ├── ios7-camera-outline.png │ │ │ │ ├── ios7-camera.png │ │ │ │ ├── ios7-cart-outline.png │ │ │ │ ├── ios7-cart.png │ │ │ │ ├── ios7-chatboxes-outline.png │ │ │ │ ├── ios7-chatboxes.png │ │ │ │ ├── ios7-chatbubble-outline.png │ │ │ │ ├── ios7-chatbubble.png │ │ │ │ ├── ios7-checkmark-empty.png │ │ │ │ ├── ios7-checkmark-outline.png │ │ │ │ ├── ios7-checkmark.png │ │ │ │ ├── ios7-circle-filled.png │ │ │ │ ├── ios7-circle-outline.png │ │ │ │ ├── ios7-clock-outline.png │ │ │ │ ├── ios7-clock.png │ │ │ │ ├── ios7-close-empty.png │ │ │ │ ├── ios7-close-outline.png │ │ │ │ ├── ios7-close.png │ │ │ │ ├── ios7-cloud-download-outline.png │ │ │ │ ├── ios7-cloud-download.png │ │ │ │ ├── ios7-cloud-outline.png │ │ │ │ ├── ios7-cloud-upload-outline.png │ │ │ │ ├── ios7-cloud-upload.png │ │ │ │ ├── ios7-cloud.png │ │ │ │ ├── ios7-cloudy-night-outline.png │ │ │ │ ├── ios7-cloudy-night.png │ │ │ │ ├── ios7-cloudy-outline.png │ │ │ │ ├── ios7-cloudy.png │ │ │ │ ├── ios7-cog-outline.png │ │ │ │ ├── ios7-cog.png │ │ │ │ ├── ios7-compose-outline.png │ │ │ │ ├── ios7-compose.png │ │ │ │ ├── ios7-contact-outline.png │ │ │ │ ├── ios7-contact.png │ │ │ │ ├── ios7-copy-outline.png │ │ │ │ ├── ios7-copy.png │ │ │ │ ├── ios7-download-outline.png │ │ │ │ ├── ios7-download.png │ │ │ │ ├── ios7-drag.png │ │ │ │ ├── ios7-email-outline.png │ │ │ │ ├── ios7-email.png │ │ │ │ ├── ios7-expand.png │ │ │ │ ├── ios7-eye-outline.png │ │ │ │ ├── ios7-eye.png │ │ │ │ ├── ios7-fastforward-outline.png │ │ │ │ ├── ios7-fastforward.png │ │ │ │ ├── ios7-filing-outline.png │ │ │ │ ├── ios7-filing.png │ │ │ │ ├── ios7-film-outline.png │ │ │ │ ├── ios7-film.png │ │ │ │ ├── ios7-flag-outline.png │ │ │ │ ├── ios7-flag.png │ │ │ │ ├── ios7-folder-outline.png │ │ │ │ ├── ios7-folder.png │ │ │ │ ├── ios7-football-outline.png │ │ │ │ ├── ios7-football.png │ │ │ │ ├── ios7-gear-outline.png │ │ │ │ ├── ios7-gear.png │ │ │ │ ├── ios7-glasses-outline.png │ │ │ │ ├── ios7-glasses.png │ │ │ │ ├── ios7-heart-outline.png │ │ │ │ ├── ios7-heart.png │ │ │ │ ├── ios7-help-empty.png │ │ │ │ ├── ios7-help-outline.png │ │ │ │ ├── ios7-help.png │ │ │ │ ├── ios7-home-outline.png │ │ │ │ ├── ios7-home.png │ │ │ │ ├── ios7-infinite-outline.png │ │ │ │ ├── ios7-infinite.png │ │ │ │ ├── ios7-information-empty.png │ │ │ │ ├── ios7-information-outline.png │ │ │ │ ├── ios7-information.png │ │ │ │ ├── ios7-ionic-outline.png │ │ │ │ ├── ios7-keypad-outline.png │ │ │ │ ├── ios7-keypad.png │ │ │ │ ├── ios7-lightbulb-outline.png │ │ │ │ ├── ios7-lightbulb.png │ │ │ │ ├── ios7-location-outline.png │ │ │ │ ├── ios7-location.png │ │ │ │ ├── ios7-locked-outline.png │ │ │ │ ├── ios7-locked.png │ │ │ │ ├── ios7-loop-strong.png │ │ │ │ ├── ios7-loop.png │ │ │ │ ├── ios7-medkit-outline.png │ │ │ │ ├── ios7-medkit.png │ │ │ │ ├── ios7-mic-off.png │ │ │ │ ├── ios7-mic-outline.png │ │ │ │ ├── ios7-mic.png │ │ │ │ ├── ios7-minus-empty.png │ │ │ │ ├── ios7-minus-outline.png │ │ │ │ ├── ios7-minus.png │ │ │ │ ├── ios7-monitor-outline.png │ │ │ │ ├── ios7-monitor.png │ │ │ │ ├── ios7-moon-outline.png │ │ │ │ ├── ios7-moon.png │ │ │ │ ├── ios7-more-outline.png │ │ │ │ ├── ios7-more.png │ │ │ │ ├── ios7-musical-note.png │ │ │ │ ├── ios7-musical-notes.png │ │ │ │ ├── ios7-navigate-outline.png │ │ │ │ ├── ios7-navigate.png │ │ │ │ ├── ios7-paper-outline.png │ │ │ │ ├── ios7-paper.png │ │ │ │ ├── ios7-paperplane-outline.png │ │ │ │ ├── ios7-paperplane.png │ │ │ │ ├── ios7-partlysunny-outline.png │ │ │ │ ├── ios7-partlysunny.png │ │ │ │ ├── ios7-pause-outline.png │ │ │ │ ├── ios7-pause.png │ │ │ │ ├── ios7-paw-outline.png │ │ │ │ ├── ios7-paw.png │ │ │ │ ├── ios7-people-outline.png │ │ │ │ ├── ios7-people.png │ │ │ │ ├── ios7-person-outline.png │ │ │ │ ├── ios7-person.png │ │ │ │ ├── ios7-personadd-outline.png │ │ │ │ ├── ios7-personadd.png │ │ │ │ ├── ios7-photos-outline.png │ │ │ │ ├── ios7-photos.png │ │ │ │ ├── ios7-pie-outline.png │ │ │ │ ├── ios7-pie.png │ │ │ │ ├── ios7-play-outline.png │ │ │ │ ├── ios7-play.png │ │ │ │ ├── ios7-plus-empty.png │ │ │ │ ├── ios7-plus-outline.png │ │ │ │ ├── ios7-plus.png │ │ │ │ ├── ios7-pricetag-outline.png │ │ │ │ ├── ios7-pricetag.png │ │ │ │ ├── ios7-pricetags-outline.png │ │ │ │ ├── ios7-pricetags.png │ │ │ │ ├── ios7-printer-outline.png │ │ │ │ ├── ios7-printer.png │ │ │ │ ├── ios7-pulse-strong.png │ │ │ │ ├── ios7-pulse.png │ │ │ │ ├── ios7-rainy-outline.png │ │ │ │ ├── ios7-rainy.png │ │ │ │ ├── ios7-recording-outline.png │ │ │ │ ├── ios7-recording.png │ │ │ │ ├── ios7-redo-outline.png │ │ │ │ ├── ios7-redo.png │ │ │ │ ├── ios7-refresh-empty.png │ │ │ │ ├── ios7-refresh-outline.png │ │ │ │ ├── ios7-refresh.png │ │ │ │ ├── ios7-reload.png │ │ │ │ ├── ios7-reverse-camera-outline.png │ │ │ │ ├── ios7-reverse-camera.png │ │ │ │ ├── ios7-rewind-outline.png │ │ │ │ ├── ios7-rewind.png │ │ │ │ ├── ios7-search-strong.png │ │ │ │ ├── ios7-search.png │ │ │ │ ├── ios7-settings-strong.png │ │ │ │ ├── ios7-settings.png │ │ │ │ ├── ios7-shrink.png │ │ │ │ ├── ios7-skipbackward-outline.png │ │ │ │ ├── ios7-skipbackward.png │ │ │ │ ├── ios7-skipforward-outline.png │ │ │ │ ├── ios7-skipforward.png │ │ │ │ ├── ios7-snowy.png │ │ │ │ ├── ios7-speedometer-outline.png │ │ │ │ ├── ios7-speedometer.png │ │ │ │ ├── ios7-star-half.png │ │ │ │ ├── ios7-star-outline.png │ │ │ │ ├── ios7-star.png │ │ │ │ ├── ios7-stopwatch-outline.png │ │ │ │ ├── ios7-stopwatch.png │ │ │ │ ├── ios7-sunny-outline.png │ │ │ │ ├── ios7-sunny.png │ │ │ │ ├── ios7-telephone-outline.png │ │ │ │ ├── ios7-telephone.png │ │ │ │ ├── ios7-tennisball-outline.png │ │ │ │ ├── ios7-tennisball.png │ │ │ │ ├── ios7-thunderstorm-outline.png │ │ │ │ ├── ios7-thunderstorm.png │ │ │ │ ├── ios7-time-outline.png │ │ │ │ ├── ios7-time.png │ │ │ │ ├── ios7-timer-outline.png │ │ │ │ ├── ios7-timer.png │ │ │ │ ├── ios7-toggle-outline.png │ │ │ │ ├── ios7-toggle.png │ │ │ │ ├── ios7-trash-outline.png │ │ │ │ ├── ios7-trash.png │ │ │ │ ├── ios7-undo-outline.png │ │ │ │ ├── ios7-undo.png │ │ │ │ ├── ios7-unlocked-outline.png │ │ │ │ ├── ios7-unlocked.png │ │ │ │ ├── ios7-upload-outline.png │ │ │ │ ├── ios7-upload.png │ │ │ │ ├── ios7-videocam-outline.png │ │ │ │ ├── ios7-videocam.png │ │ │ │ ├── ios7-volume-high.png │ │ │ │ ├── ios7-volume-low.png │ │ │ │ ├── ios7-wineglass-outline.png │ │ │ │ ├── ios7-wineglass.png │ │ │ │ ├── ios7-world-outline.png │ │ │ │ ├── ios7-world.png │ │ │ │ ├── ipad.png │ │ │ │ ├── iphone.png │ │ │ │ ├── ipod.png │ │ │ │ ├── jet.png │ │ │ │ ├── key.png │ │ │ │ ├── knife.png │ │ │ │ ├── laptop.png │ │ │ │ ├── leaf.png │ │ │ │ ├── levels.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── load-a.png │ │ │ │ ├── load-b.png │ │ │ │ ├── load-c.png │ │ │ │ ├── load-d.png │ │ │ │ ├── location.png │ │ │ │ ├── locked.png │ │ │ │ ├── log-in.png │ │ │ │ ├── log-out.png │ │ │ │ ├── loop.png │ │ │ │ ├── magnet.png │ │ │ │ ├── male.png │ │ │ │ ├── man.png │ │ │ │ ├── map.png │ │ │ │ ├── medkit.png │ │ │ │ ├── merge.png │ │ │ │ ├── mic-a.png │ │ │ │ ├── mic-b.png │ │ │ │ ├── mic-c.png │ │ │ │ ├── minus-circled.png │ │ │ │ ├── minus-round.png │ │ │ │ ├── minus.png │ │ │ │ ├── model-s.png │ │ │ │ ├── monitor.png │ │ │ │ ├── more.png │ │ │ │ ├── mouse.png │ │ │ │ ├── music-note.png │ │ │ │ ├── navicon-round.png │ │ │ │ ├── navicon.png │ │ │ │ ├── navigate.png │ │ │ │ ├── network.png │ │ │ │ ├── no-smoking.png │ │ │ │ ├── nuclear.png │ │ │ │ ├── outlet.png │ │ │ │ ├── paper-airplane.png │ │ │ │ ├── paperclip.png │ │ │ │ ├── pause.png │ │ │ │ ├── person-add.png │ │ │ │ ├── person-stalker.png │ │ │ │ ├── person.png │ │ │ │ ├── pie-graph.png │ │ │ │ ├── pin.png │ │ │ │ ├── pinpoint.png │ │ │ │ ├── pizza.png │ │ │ │ ├── plane.png │ │ │ │ ├── planet.png │ │ │ │ ├── play.png │ │ │ │ ├── playstation.png │ │ │ │ ├── plus-circled.png │ │ │ │ ├── plus-round.png │ │ │ │ ├── plus.png │ │ │ │ ├── podium.png │ │ │ │ ├── pound.png │ │ │ │ ├── power.png │ │ │ │ ├── pricetag.png │ │ │ │ ├── pricetags.png │ │ │ │ ├── printer.png │ │ │ │ ├── pull-request.png │ │ │ │ ├── qr-scanner.png │ │ │ │ ├── quote.png │ │ │ │ ├── radio-waves.png │ │ │ │ ├── record.png │ │ │ │ ├── refresh.png │ │ │ │ ├── reply-all.png │ │ │ │ ├── reply.png │ │ │ │ ├── ribbon-a.png │ │ │ │ ├── ribbon-b.png │ │ │ │ ├── sad.png │ │ │ │ ├── scissors.png │ │ │ │ ├── search.png │ │ │ │ ├── settings.png │ │ │ │ ├── share.png │ │ │ │ ├── shuffle.png │ │ │ │ ├── skip-backward.png │ │ │ │ ├── skip-forward.png │ │ │ │ ├── social-android-outline.png │ │ │ │ ├── social-android.png │ │ │ │ ├── social-apple-outline.png │ │ │ │ ├── social-apple.png │ │ │ │ ├── social-bitcoin-outline.png │ │ │ │ ├── social-bitcoin.png │ │ │ │ ├── social-buffer-outline.png │ │ │ │ ├── social-buffer.png │ │ │ │ ├── social-designernews-outline.png │ │ │ │ ├── social-designernews.png │ │ │ │ ├── social-dribbble-outline.png │ │ │ │ ├── social-dribbble.png │ │ │ │ ├── social-dropbox-outline.png │ │ │ │ ├── social-dropbox.png │ │ │ │ ├── social-facebook-outline.png │ │ │ │ ├── social-facebook.png │ │ │ │ ├── social-foursquare-outline.png │ │ │ │ ├── social-foursquare.png │ │ │ │ ├── social-freebsd-devil.png │ │ │ │ ├── social-github-outline.png │ │ │ │ ├── social-github.png │ │ │ │ ├── social-google-outline.png │ │ │ │ ├── social-google.png │ │ │ │ ├── social-googleplus-outline.png │ │ │ │ ├── social-googleplus.png │ │ │ │ ├── social-hackernews-outline.png │ │ │ │ ├── social-hackernews.png │ │ │ │ ├── social-instagram-outline.png │ │ │ │ ├── social-instagram.png │ │ │ │ ├── social-linkedin-outline.png │ │ │ │ ├── social-linkedin.png │ │ │ │ ├── social-pinterest-outline.png │ │ │ │ ├── social-pinterest.png │ │ │ │ ├── social-reddit-outline.png │ │ │ │ ├── social-reddit.png │ │ │ │ ├── social-rss-outline.png │ │ │ │ ├── social-rss.png │ │ │ │ ├── social-skype-outline.png │ │ │ │ ├── social-skype.png │ │ │ │ ├── social-tumblr-outline.png │ │ │ │ ├── social-tumblr.png │ │ │ │ ├── social-tux.png │ │ │ │ ├── social-twitter-outline.png │ │ │ │ ├── social-twitter.png │ │ │ │ ├── social-usd-outline.png │ │ │ │ ├── social-usd.png │ │ │ │ ├── social-vimeo-outline.png │ │ │ │ ├── social-vimeo.png │ │ │ │ ├── social-windows-outline.png │ │ │ │ ├── social-windows.png │ │ │ │ ├── social-wordpress-outline.png │ │ │ │ ├── social-wordpress.png │ │ │ │ ├── social-yahoo-outline.png │ │ │ │ ├── social-yahoo.png │ │ │ │ ├── social-youtube-outline.png │ │ │ │ ├── social-youtube.png │ │ │ │ ├── speakerphone.png │ │ │ │ ├── speedometer.png │ │ │ │ ├── spoon.png │ │ │ │ ├── star.png │ │ │ │ ├── stats-bars.png │ │ │ │ ├── steam.png │ │ │ │ ├── stop.png │ │ │ │ ├── thermometer.png │ │ │ │ ├── thumbsdown.png │ │ │ │ ├── thumbsup.png │ │ │ │ ├── toggle-filled.png │ │ │ │ ├── toggle.png │ │ │ │ ├── trash-a.png │ │ │ │ ├── trash-b.png │ │ │ │ ├── trophy.png │ │ │ │ ├── umbrella.png │ │ │ │ ├── university.png │ │ │ │ ├── unlocked.png │ │ │ │ ├── upload.png │ │ │ │ ├── usb.png │ │ │ │ ├── videocamera.png │ │ │ │ ├── volume-high.png │ │ │ │ ├── volume-low.png │ │ │ │ ├── volume-medium.png │ │ │ │ ├── volume-mute.png │ │ │ │ ├── wand.png │ │ │ │ ├── waterdrop.png │ │ │ │ ├── wifi.png │ │ │ │ ├── wineglass.png │ │ │ │ ├── woman.png │ │ │ │ ├── wrench.png │ │ │ │ └── xbox.png │ │ ├── readme.md │ │ ├── scss │ │ │ ├── _ionicons-font.scss │ │ │ ├── _ionicons-icons.scss │ │ │ ├── _ionicons-variables.scss │ │ │ └── ionicons.scss │ │ └── src │ │ │ ├── alert-circled.svg │ │ │ ├── alert.svg │ │ │ ├── android-add-circle.svg │ │ │ ├── android-add.svg │ │ │ ├── android-alarm-clock.svg │ │ │ ├── android-alert.svg │ │ │ ├── android-apps.svg │ │ │ ├── android-archive.svg │ │ │ ├── android-arrow-back.svg │ │ │ ├── android-arrow-down.svg │ │ │ ├── android-arrow-dropdown-circle.svg │ │ │ ├── android-arrow-dropdown.svg │ │ │ ├── android-arrow-dropleft-circle.svg │ │ │ ├── android-arrow-dropleft.svg │ │ │ ├── android-arrow-dropright-circle.svg │ │ │ ├── android-arrow-dropright.svg │ │ │ ├── android-arrow-dropup-circle.svg │ │ │ ├── android-arrow-dropup.svg │ │ │ ├── android-arrow-forward.svg │ │ │ ├── android-arrow-up.svg │ │ │ ├── android-attach.svg │ │ │ ├── android-bar.svg │ │ │ ├── android-bicycle.svg │ │ │ ├── android-boat.svg │ │ │ ├── android-bookmark.svg │ │ │ ├── android-bulb.svg │ │ │ ├── android-bus.svg │ │ │ ├── android-calendar.svg │ │ │ ├── android-call.svg │ │ │ ├── android-camera.svg │ │ │ ├── android-cancel.svg │ │ │ ├── android-car.svg │ │ │ ├── android-cart.svg │ │ │ ├── android-chat.svg │ │ │ ├── android-checkbox-blank.svg │ │ │ ├── android-checkbox-outline-blank.svg │ │ │ ├── android-checkbox-outline.svg │ │ │ ├── android-checkbox.svg │ │ │ ├── android-checkmark-circle.svg │ │ │ ├── android-clipboard.svg │ │ │ ├── android-close.svg │ │ │ ├── android-cloud-circle.svg │ │ │ ├── android-cloud-done.svg │ │ │ ├── android-cloud-outline.svg │ │ │ ├── android-cloud.svg │ │ │ ├── android-color-palette.svg │ │ │ ├── android-compass.svg │ │ │ ├── android-contact.svg │ │ │ ├── android-contacts.svg │ │ │ ├── android-contract.svg │ │ │ ├── android-create.svg │ │ │ ├── android-delete.svg │ │ │ ├── android-desktop.svg │ │ │ ├── android-document.svg │ │ │ ├── android-done-all.svg │ │ │ ├── android-done.svg │ │ │ ├── android-download.svg │ │ │ ├── android-drafts.svg │ │ │ ├── android-exit.svg │ │ │ ├── android-expand.svg │ │ │ ├── android-favorite-outline.svg │ │ │ ├── android-favorite.svg │ │ │ ├── android-film.svg │ │ │ ├── android-folder-open.svg │ │ │ ├── android-folder.svg │ │ │ ├── android-funnel.svg │ │ │ ├── android-globe.svg │ │ │ ├── android-hand.svg │ │ │ ├── android-hangout.svg │ │ │ ├── android-happy.svg │ │ │ ├── android-home.svg │ │ │ ├── android-image.svg │ │ │ ├── android-laptop.svg │ │ │ ├── android-list.svg │ │ │ ├── android-locate.svg │ │ │ ├── android-lock.svg │ │ │ ├── android-mail.svg │ │ │ ├── android-map.svg │ │ │ ├── android-menu.svg │ │ │ ├── android-microphone-off.svg │ │ │ ├── android-microphone.svg │ │ │ ├── android-more-horizontal.svg │ │ │ ├── android-more-vertical.svg │ │ │ ├── android-navigate.svg │ │ │ ├── android-notifications-none.svg │ │ │ ├── android-notifications-off.svg │ │ │ ├── android-notifications.svg │ │ │ ├── android-open.svg │ │ │ ├── android-options.svg │ │ │ ├── android-people.svg │ │ │ ├── android-person-add.svg │ │ │ ├── android-person.svg │ │ │ ├── android-phone-landscape.svg │ │ │ ├── android-phone-portrait.svg │ │ │ ├── android-pin.svg │ │ │ ├── android-plane.svg │ │ │ ├── android-playstore.svg │ │ │ ├── android-print.svg │ │ │ ├── android-radio-button-off.svg │ │ │ ├── android-radio-button-on.svg │ │ │ ├── android-refresh.svg │ │ │ ├── android-remove-circle.svg │ │ │ ├── android-remove.svg │ │ │ ├── android-restaurant.svg │ │ │ ├── android-sad.svg │ │ │ ├── android-search.svg │ │ │ ├── android-send.svg │ │ │ ├── android-settings.svg │ │ │ ├── android-share-alt.svg │ │ │ ├── android-share.svg │ │ │ ├── android-star-half.svg │ │ │ ├── android-star-outline.svg │ │ │ ├── android-star.svg │ │ │ ├── android-stopwatch.svg │ │ │ ├── android-subway.svg │ │ │ ├── android-sunny.svg │ │ │ ├── android-sync.svg │ │ │ ├── android-textsms.svg │ │ │ ├── android-time.svg │ │ │ ├── android-train.svg │ │ │ ├── android-unlock.svg │ │ │ ├── android-upload.svg │ │ │ ├── android-volume-down.svg │ │ │ ├── android-volume-mute.svg │ │ │ ├── android-volume-off.svg │ │ │ ├── android-volume-up.svg │ │ │ ├── android-walk.svg │ │ │ ├── android-warning.svg │ │ │ ├── android-watch.svg │ │ │ ├── android-wifi.svg │ │ │ ├── aperture.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-down-a.svg │ │ │ ├── arrow-down-b.svg │ │ │ ├── arrow-down-c.svg │ │ │ ├── arrow-expand.svg │ │ │ ├── arrow-graph-down-left.svg │ │ │ ├── arrow-graph-down-right.svg │ │ │ ├── arrow-graph-up-left.svg │ │ │ ├── arrow-graph-up-right.svg │ │ │ ├── arrow-left-a.svg │ │ │ ├── arrow-left-b.svg │ │ │ ├── arrow-left-c.svg │ │ │ ├── arrow-move.svg │ │ │ ├── arrow-resize.svg │ │ │ ├── arrow-return-left.svg │ │ │ ├── arrow-return-right.svg │ │ │ ├── arrow-right-a.svg │ │ │ ├── arrow-right-b.svg │ │ │ ├── arrow-right-c.svg │ │ │ ├── arrow-shrink.svg │ │ │ ├── arrow-swap.svg │ │ │ ├── arrow-up-a.svg │ │ │ ├── arrow-up-b.svg │ │ │ ├── arrow-up-c.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── backspace-outline.svg │ │ │ ├── backspace.svg │ │ │ ├── bag.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-low.svg │ │ │ ├── beaker.svg │ │ │ ├── beer.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bonfire.svg │ │ │ ├── bookmark.svg │ │ │ ├── bowtie.svg │ │ │ ├── briefcase.svg │ │ │ ├── bug.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── card.svg │ │ │ ├── cash.svg │ │ │ ├── chatbox-working.svg │ │ │ ├── chatbox.svg │ │ │ ├── chatboxes.svg │ │ │ ├── chatbubble-working.svg │ │ │ ├── chatbubble.svg │ │ │ ├── chatbubbles.svg │ │ │ ├── checkmark-circled.svg │ │ │ ├── checkmark-round.svg │ │ │ ├── checkmark.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── close-circled.svg │ │ │ ├── close-round.svg │ │ │ ├── close.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud.svg │ │ │ ├── code-download.svg │ │ │ ├── code-working.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── compass.svg │ │ │ ├── compose.svg │ │ │ ├── connection-bars.svg │ │ │ ├── contrast.svg │ │ │ ├── crop.svg │ │ │ ├── cube.svg │ │ │ ├── disc.svg │ │ │ ├── document-text.svg │ │ │ ├── document.svg │ │ │ ├── drag.svg │ │ │ ├── earth.svg │ │ │ ├── easel.svg │ │ │ ├── edit.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── email-unread.svg │ │ │ ├── email.svg │ │ │ ├── erlenmeyer-flask-bubbles.svg │ │ │ ├── erlenmeyer-flask.svg │ │ │ ├── eye-disabled.svg │ │ │ ├── eye.svg │ │ │ ├── female.svg │ │ │ ├── filing.svg │ │ │ ├── film-marker.svg │ │ │ ├── fireball.svg │ │ │ ├── flag.svg │ │ │ ├── flame.svg │ │ │ ├── flash-off.svg │ │ │ ├── flash.svg │ │ │ ├── folder.svg │ │ │ ├── fork-repo.svg │ │ │ ├── fork.svg │ │ │ ├── forward.svg │ │ │ ├── funnel.svg │ │ │ ├── gear-a.svg │ │ │ ├── gear-b.svg │ │ │ ├── grid.svg │ │ │ ├── hammer.svg │ │ │ ├── happy-outline.svg │ │ │ ├── happy.svg │ │ │ ├── headphone.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── help-buoy.svg │ │ │ ├── help-circled.svg │ │ │ ├── help.svg │ │ │ ├── home.svg │ │ │ ├── icecream.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── information-circled.svg │ │ │ ├── information.svg │ │ │ ├── ionic.svg │ │ │ ├── ios-alarm-outline.svg │ │ │ ├── ios-alarm.svg │ │ │ ├── ios-albums-outline.svg │ │ │ ├── ios-albums.svg │ │ │ ├── ios-americanfootball-outline.svg │ │ │ ├── ios-americanfootball.svg │ │ │ ├── ios-analytics-outline.svg │ │ │ ├── ios-analytics.svg │ │ │ ├── ios-arrow-back.svg │ │ │ ├── ios-arrow-down.svg │ │ │ ├── ios-arrow-forward.svg │ │ │ ├── ios-arrow-left.svg │ │ │ ├── ios-arrow-right.svg │ │ │ ├── ios-arrow-thin-down.svg │ │ │ ├── ios-arrow-thin-left.svg │ │ │ ├── ios-arrow-thin-right.svg │ │ │ ├── ios-arrow-thin-up.svg │ │ │ ├── ios-arrow-up.svg │ │ │ ├── ios-at-outline.svg │ │ │ ├── ios-at.svg │ │ │ ├── ios-barcode-outline.svg │ │ │ ├── ios-barcode.svg │ │ │ ├── ios-baseball-outline.svg │ │ │ ├── ios-baseball.svg │ │ │ ├── ios-basketball-outline.svg │ │ │ ├── ios-basketball.svg │ │ │ ├── ios-bell-outline.svg │ │ │ ├── ios-bell.svg │ │ │ ├── ios-body-outline.svg │ │ │ ├── ios-body.svg │ │ │ ├── ios-bolt-outline.svg │ │ │ ├── ios-bolt.svg │ │ │ ├── ios-book-outline.svg │ │ │ ├── ios-book.svg │ │ │ ├── ios-bookmarks-outline.svg │ │ │ ├── ios-bookmarks.svg │ │ │ ├── ios-box-outline.svg │ │ │ ├── ios-box.svg │ │ │ ├── ios-briefcase-outline.svg │ │ │ ├── ios-briefcase.svg │ │ │ ├── ios-browsers-outline.svg │ │ │ ├── ios-browsers.svg │ │ │ ├── ios-calculator-outline.svg │ │ │ ├── ios-calculator.svg │ │ │ ├── ios-calendar-outline.svg │ │ │ ├── ios-calendar.svg │ │ │ ├── ios-camera-outline.svg │ │ │ ├── ios-camera.svg │ │ │ ├── ios-cart-outline.svg │ │ │ ├── ios-cart.svg │ │ │ ├── ios-chatboxes-outline.svg │ │ │ ├── ios-chatboxes.svg │ │ │ ├── ios-chatbubble-outline.svg │ │ │ ├── ios-chatbubble.svg │ │ │ ├── ios-checkmark-empty.svg │ │ │ ├── ios-checkmark-outline.svg │ │ │ ├── ios-checkmark.svg │ │ │ ├── ios-circle-filled.svg │ │ │ ├── ios-circle-outline.svg │ │ │ ├── ios-clock-outline.svg │ │ │ ├── ios-clock.svg │ │ │ ├── ios-close-empty.svg │ │ │ ├── ios-close-outline.svg │ │ │ ├── ios-close.svg │ │ │ ├── ios-cloud-download-outline.svg │ │ │ ├── ios-cloud-download.svg │ │ │ ├── ios-cloud-outline.svg │ │ │ ├── ios-cloud-upload-outline.svg │ │ │ ├── ios-cloud-upload.svg │ │ │ ├── ios-cloud.svg │ │ │ ├── ios-cloudy-night-outline.svg │ │ │ ├── ios-cloudy-night.svg │ │ │ ├── ios-cloudy-outline.svg │ │ │ ├── ios-cloudy.svg │ │ │ ├── ios-cog-outline.svg │ │ │ ├── ios-cog.svg │ │ │ ├── ios-color-filter-outline.svg │ │ │ ├── ios-color-filter.svg │ │ │ ├── ios-color-wand-outline.svg │ │ │ ├── ios-color-wand.svg │ │ │ ├── ios-compose-outline.svg │ │ │ ├── ios-compose.svg │ │ │ ├── ios-contact-outline.svg │ │ │ ├── ios-contact.svg │ │ │ ├── ios-copy-outline.svg │ │ │ ├── ios-copy.svg │ │ │ ├── ios-crop-strong.svg │ │ │ ├── ios-crop.svg │ │ │ ├── ios-download-outline.svg │ │ │ ├── ios-download.svg │ │ │ ├── ios-drag.svg │ │ │ ├── ios-email-outline.svg │ │ │ ├── ios-email.svg │ │ │ ├── ios-eye-outline.svg │ │ │ ├── ios-eye.svg │ │ │ ├── ios-fastforward-outline.svg │ │ │ ├── ios-fastforward.svg │ │ │ ├── ios-filing-outline.svg │ │ │ ├── ios-filing.svg │ │ │ ├── ios-film-outline.svg │ │ │ ├── ios-film.svg │ │ │ ├── ios-flag-outline.svg │ │ │ ├── ios-flag.svg │ │ │ ├── ios-flame-outline.svg │ │ │ ├── ios-flame.svg │ │ │ ├── ios-flask-outline.svg │ │ │ ├── ios-flask.svg │ │ │ ├── ios-flower-outline.svg │ │ │ ├── ios-flower.svg │ │ │ ├── ios-folder-outline.svg │ │ │ ├── ios-folder.svg │ │ │ ├── ios-football-outline.svg │ │ │ ├── ios-football.svg │ │ │ ├── ios-game-controller-a-outline.svg │ │ │ ├── ios-game-controller-a.svg │ │ │ ├── ios-game-controller-b-outline.svg │ │ │ ├── ios-game-controller-b.svg │ │ │ ├── ios-gear-outline.svg │ │ │ ├── ios-gear.svg │ │ │ ├── ios-glasses-outline.svg │ │ │ ├── ios-glasses.svg │ │ │ ├── ios-grid-view-outline.svg │ │ │ ├── ios-grid-view.svg │ │ │ ├── ios-heart-outline.svg │ │ │ ├── ios-heart.svg │ │ │ ├── ios-help-empty.svg │ │ │ ├── ios-help-outline.svg │ │ │ ├── ios-help.svg │ │ │ ├── ios-home-outline.svg │ │ │ ├── ios-home.svg │ │ │ ├── ios-infinite-outline.svg │ │ │ ├── ios-infinite.svg │ │ │ ├── ios-information-empty.svg │ │ │ ├── ios-information-outline.svg │ │ │ ├── ios-information.svg │ │ │ ├── ios-ionic-outline.svg │ │ │ ├── ios-keypad-outline.svg │ │ │ ├── ios-keypad.svg │ │ │ ├── ios-lightbulb-outline.svg │ │ │ ├── ios-lightbulb.svg │ │ │ ├── ios-list-outline.svg │ │ │ ├── ios-list.svg │ │ │ ├── ios-location-outline.svg │ │ │ ├── ios-location.svg │ │ │ ├── ios-locked-outline.svg │ │ │ ├── ios-locked.svg │ │ │ ├── ios-loop-strong.svg │ │ │ ├── ios-loop.svg │ │ │ ├── ios-medical-outline.svg │ │ │ ├── ios-medical.svg │ │ │ ├── ios-medkit-outline.svg │ │ │ ├── ios-medkit.svg │ │ │ ├── ios-mic-off.svg │ │ │ ├── ios-mic-outline.svg │ │ │ ├── ios-mic.svg │ │ │ ├── ios-minus-empty.svg │ │ │ ├── ios-minus-outline.svg │ │ │ ├── ios-minus.svg │ │ │ ├── ios-monitor-outline.svg │ │ │ ├── ios-monitor.svg │ │ │ ├── ios-moon-outline.svg │ │ │ ├── ios-moon.svg │ │ │ ├── ios-more-outline.svg │ │ │ ├── ios-more.svg │ │ │ ├── ios-musical-note.svg │ │ │ ├── ios-musical-notes.svg │ │ │ ├── ios-navigate-outline.svg │ │ │ ├── ios-navigate.svg │ │ │ ├── ios-nutrition-outline.svg │ │ │ ├── ios-nutrition.svg │ │ │ ├── ios-paper-outline.svg │ │ │ ├── ios-paper.svg │ │ │ ├── ios-paperplane-outline.svg │ │ │ ├── ios-paperplane.svg │ │ │ ├── ios-partlysunny-outline.svg │ │ │ ├── ios-partlysunny.svg │ │ │ ├── ios-pause-outline.svg │ │ │ ├── ios-pause.svg │ │ │ ├── ios-paw-outline.svg │ │ │ ├── ios-paw.svg │ │ │ ├── ios-people-outline.svg │ │ │ ├── ios-people.svg │ │ │ ├── ios-person-outline.svg │ │ │ ├── ios-person.svg │ │ │ ├── ios-personadd-outline.svg │ │ │ ├── ios-personadd.svg │ │ │ ├── ios-photos-outline.svg │ │ │ ├── ios-photos.svg │ │ │ ├── ios-pie-outline.svg │ │ │ ├── ios-pie.svg │ │ │ ├── ios-pint-outline.svg │ │ │ ├── ios-pint.svg │ │ │ ├── ios-play-outline.svg │ │ │ ├── ios-play.svg │ │ │ ├── ios-plus-empty.svg │ │ │ ├── ios-plus-outline.svg │ │ │ ├── ios-plus.svg │ │ │ ├── ios-pricetag-outline.svg │ │ │ ├── ios-pricetag.svg │ │ │ ├── ios-pricetags-outline.svg │ │ │ ├── ios-pricetags.svg │ │ │ ├── ios-printer-outline.svg │ │ │ ├── ios-printer.svg │ │ │ ├── ios-pulse-strong.svg │ │ │ ├── ios-pulse.svg │ │ │ ├── ios-rainy-outline.svg │ │ │ ├── ios-rainy.svg │ │ │ ├── ios-recording-outline.svg │ │ │ ├── ios-recording.svg │ │ │ ├── ios-redo-outline.svg │ │ │ ├── ios-redo.svg │ │ │ ├── ios-refresh-empty.svg │ │ │ ├── ios-refresh-outline.svg │ │ │ ├── ios-refresh.svg │ │ │ ├── ios-reload.svg │ │ │ ├── ios-reverse-camera-outline.svg │ │ │ ├── ios-reverse-camera.svg │ │ │ ├── ios-rewind-outline.svg │ │ │ ├── ios-rewind.svg │ │ │ ├── ios-rose-outline.svg │ │ │ ├── ios-rose.svg │ │ │ ├── ios-search-strong.svg │ │ │ ├── ios-search.svg │ │ │ ├── ios-settings-strong.svg │ │ │ ├── ios-settings.svg │ │ │ ├── ios-shuffle-strong.svg │ │ │ ├── ios-shuffle.svg │ │ │ ├── ios-skipbackward-outline.svg │ │ │ ├── ios-skipbackward.svg │ │ │ ├── ios-skipforward-outline.svg │ │ │ ├── ios-skipforward.svg │ │ │ ├── ios-snowy.svg │ │ │ ├── ios-speedometer-outline.svg │ │ │ ├── ios-speedometer.svg │ │ │ ├── ios-star-half.svg │ │ │ ├── ios-star-outline.svg │ │ │ ├── ios-star.svg │ │ │ ├── ios-stopwatch-outline.svg │ │ │ ├── ios-stopwatch.svg │ │ │ ├── ios-sunny-outline.svg │ │ │ ├── ios-sunny.svg │ │ │ ├── ios-telephone-outline.svg │ │ │ ├── ios-telephone.svg │ │ │ ├── ios-tennisball-outline.svg │ │ │ ├── ios-tennisball.svg │ │ │ ├── ios-thunderstorm-outline.svg │ │ │ ├── ios-thunderstorm.svg │ │ │ ├── ios-time-outline.svg │ │ │ ├── ios-time.svg │ │ │ ├── ios-timer-outline.svg │ │ │ ├── ios-timer.svg │ │ │ ├── ios-toggle-outline.svg │ │ │ ├── ios-toggle.svg │ │ │ ├── ios-trash-outline.svg │ │ │ ├── ios-trash.svg │ │ │ ├── ios-undo-outline.svg │ │ │ ├── ios-undo.svg │ │ │ ├── ios-unlocked-outline.svg │ │ │ ├── ios-unlocked.svg │ │ │ ├── ios-upload-outline.svg │ │ │ ├── ios-upload.svg │ │ │ ├── ios-videocam-outline.svg │ │ │ ├── ios-videocam.svg │ │ │ ├── ios-volume-high.svg │ │ │ ├── ios-volume-low.svg │ │ │ ├── ios-wineglass-outline.svg │ │ │ ├── ios-wineglass.svg │ │ │ ├── ios-world-outline.svg │ │ │ ├── ios-world.svg │ │ │ ├── ipad.svg │ │ │ ├── iphone.svg │ │ │ ├── ipod.svg │ │ │ ├── jet.svg │ │ │ ├── key.svg │ │ │ ├── knife.svg │ │ │ ├── laptop.svg │ │ │ ├── leaf.svg │ │ │ ├── levels.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link.svg │ │ │ ├── load-a.svg │ │ │ ├── load-b.svg │ │ │ ├── load-c.svg │ │ │ ├── load-d.svg │ │ │ ├── location.svg │ │ │ ├── lock-combination.svg │ │ │ ├── locked.svg │ │ │ ├── log-in.svg │ │ │ ├── log-out.svg │ │ │ ├── loop.svg │ │ │ ├── magnet.svg │ │ │ ├── male.svg │ │ │ ├── man.svg │ │ │ ├── map.svg │ │ │ ├── medkit.svg │ │ │ ├── merge.svg │ │ │ ├── mic-a.svg │ │ │ ├── mic-b.svg │ │ │ ├── mic-c.svg │ │ │ ├── minus-circled.svg │ │ │ ├── minus-round.svg │ │ │ ├── minus.svg │ │ │ ├── model-s.svg │ │ │ ├── monitor.svg │ │ │ ├── more.svg │ │ │ ├── mouse.svg │ │ │ ├── music-note.svg │ │ │ ├── navicon-round.svg │ │ │ ├── navicon.svg │ │ │ ├── navigate.svg │ │ │ ├── network.svg │ │ │ ├── no-smoking.svg │ │ │ ├── nuclear.svg │ │ │ ├── outlet.svg │ │ │ ├── paintbrush.svg │ │ │ ├── paintbucket.svg │ │ │ ├── paper-airplane.svg │ │ │ ├── paperclip.svg │ │ │ ├── pause.svg │ │ │ ├── person-add.svg │ │ │ ├── person-stalker.svg │ │ │ ├── person.svg │ │ │ ├── pie-graph.svg │ │ │ ├── pin.svg │ │ │ ├── pinpoint.svg │ │ │ ├── pizza.svg │ │ │ ├── plane.svg │ │ │ ├── planet.svg │ │ │ ├── play.svg │ │ │ ├── playstation.svg │ │ │ ├── plus-circled.svg │ │ │ ├── plus-round.svg │ │ │ ├── plus.svg │ │ │ ├── podium.svg │ │ │ ├── pound.svg │ │ │ ├── power.svg │ │ │ ├── pricetag.svg │ │ │ ├── pricetags.svg │ │ │ ├── printer.svg │ │ │ ├── pull-request.svg │ │ │ ├── qr-scanner.svg │ │ │ ├── quote.svg │ │ │ ├── radio-waves.svg │ │ │ ├── record.svg │ │ │ ├── refresh.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── ribbon-a.svg │ │ │ ├── ribbon-b.svg │ │ │ ├── sad-outline.svg │ │ │ ├── sad.svg │ │ │ ├── scissors.svg │ │ │ ├── search.svg │ │ │ ├── settings.svg │ │ │ ├── share.svg │ │ │ ├── shuffle.svg │ │ │ ├── skip-backward.svg │ │ │ ├── skip-forward.svg │ │ │ ├── social-android-outline.svg │ │ │ ├── social-android.svg │ │ │ ├── social-angular-outline.svg │ │ │ ├── social-angular.svg │ │ │ ├── social-apple-outline.svg │ │ │ ├── social-apple.svg │ │ │ ├── social-bitcoin-outline.svg │ │ │ ├── social-bitcoin.svg │ │ │ ├── social-buffer-outline.svg │ │ │ ├── social-buffer.svg │ │ │ ├── social-chrome-outline.svg │ │ │ ├── social-chrome.svg │ │ │ ├── social-codepen-outline.svg │ │ │ ├── social-codepen.svg │ │ │ ├── social-css3-outline.svg │ │ │ ├── social-css3.svg │ │ │ ├── social-designernews-outline.svg │ │ │ ├── social-designernews.svg │ │ │ ├── social-dribbble-outline.svg │ │ │ ├── social-dribbble.svg │ │ │ ├── social-dropbox-outline.svg │ │ │ ├── social-dropbox.svg │ │ │ ├── social-euro-outline.svg │ │ │ ├── social-euro.svg │ │ │ ├── social-facebook-outline.svg │ │ │ ├── social-facebook.svg │ │ │ ├── social-foursquare-outline.svg │ │ │ ├── social-foursquare.svg │ │ │ ├── social-freebsd-devil.svg │ │ │ ├── social-github-outline.svg │ │ │ ├── social-github.svg │ │ │ ├── social-google-outline.svg │ │ │ ├── social-google.svg │ │ │ ├── social-googleplus-outline.svg │ │ │ ├── social-googleplus.svg │ │ │ ├── social-hackernews-outline.svg │ │ │ ├── social-hackernews.svg │ │ │ ├── social-html5-outline.svg │ │ │ ├── social-html5.svg │ │ │ ├── social-instagram-outline.svg │ │ │ ├── social-instagram.svg │ │ │ ├── social-javascript-outline.svg │ │ │ ├── social-javascript.svg │ │ │ ├── social-linkedin-outline.svg │ │ │ ├── social-linkedin.svg │ │ │ ├── social-markdown.svg │ │ │ ├── social-nodejs.svg │ │ │ ├── social-octocat.svg │ │ │ ├── social-pinterest-outline.svg │ │ │ ├── social-pinterest.svg │ │ │ ├── social-python.svg │ │ │ ├── social-reddit-outline.svg │ │ │ ├── social-reddit.svg │ │ │ ├── social-rss-outline.svg │ │ │ ├── social-rss.svg │ │ │ ├── social-sass.svg │ │ │ ├── social-skype-outline.svg │ │ │ ├── social-skype.svg │ │ │ ├── social-snapchat-outline.svg │ │ │ ├── social-snapchat.svg │ │ │ ├── social-tumblr-outline.svg │ │ │ ├── social-tumblr.svg │ │ │ ├── social-tux.svg │ │ │ ├── social-twitch-outline.svg │ │ │ ├── social-twitch.svg │ │ │ ├── social-twitter-outline.svg │ │ │ ├── social-twitter.svg │ │ │ ├── social-usd-outline.svg │ │ │ ├── social-usd.svg │ │ │ ├── social-vimeo-outline.svg │ │ │ ├── social-vimeo.svg │ │ │ ├── social-whatsapp-outline.svg │ │ │ ├── social-whatsapp.svg │ │ │ ├── social-windows-outline.svg │ │ │ ├── social-windows.svg │ │ │ ├── social-wordpress-outline.svg │ │ │ ├── social-wordpress.svg │ │ │ ├── social-yahoo-outline.svg │ │ │ ├── social-yahoo.svg │ │ │ ├── social-yen-outline.svg │ │ │ ├── social-yen.svg │ │ │ ├── social-youtube-outline.svg │ │ │ ├── social-youtube.svg │ │ │ ├── soup-can-outline.svg │ │ │ ├── soup-can.svg │ │ │ ├── speakerphone.svg │ │ │ ├── speedometer.svg │ │ │ ├── spoon.svg │ │ │ ├── star.svg │ │ │ ├── stats-bars.svg │ │ │ ├── steam.svg │ │ │ ├── stop.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbsdown.svg │ │ │ ├── thumbsup.svg │ │ │ ├── toggle-filled.svg │ │ │ ├── toggle.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-a.svg │ │ │ ├── trash-b.svg │ │ │ ├── trophy.svg │ │ │ ├── tshirt-outline.svg │ │ │ ├── tshirt.svg │ │ │ ├── umbrella.svg │ │ │ ├── university.svg │ │ │ ├── unlocked.svg │ │ │ ├── upload.svg │ │ │ ├── usb.svg │ │ │ ├── videocamera.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-medium.svg │ │ │ ├── volume-mute.svg │ │ │ ├── wand.svg │ │ │ ├── waterdrop.svg │ │ │ ├── wifi.svg │ │ │ ├── wineglass.svg │ │ │ ├── woman.svg │ │ │ ├── wrench.svg │ │ │ └── xbox.svg │ ├── PACE │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── install.json │ │ ├── pace.coffee │ │ ├── pace.js │ │ ├── pace.min.js │ │ └── themes │ │ │ ├── black │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── blue │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── green │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── orange │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── pink │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── purple │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── red │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── silver │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── white │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ └── yellow │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ ├── admin-lte │ │ ├── .bower.json │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── bootstrap-less │ │ │ │ ├── .csscomb.json │ │ │ │ ├── .csslintrc │ │ │ │ ├── alerts.less │ │ │ │ ├── badges.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── glyphicons.less │ │ │ │ ├── grid.less │ │ │ │ ├── input-groups.less │ │ │ │ ├── jumbotron.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── media.less │ │ │ │ ├── mixins.less │ │ │ │ ├── mixins │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── background-variant.less │ │ │ │ │ ├── border-radius.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── center-block.less │ │ │ │ │ ├── clearfix.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── gradients.less │ │ │ │ │ ├── grid-framework.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── hide-text.less │ │ │ │ │ ├── image.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── list-group.less │ │ │ │ │ ├── nav-divider.less │ │ │ │ │ ├── nav-vertical-align.less │ │ │ │ │ ├── opacity.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── panels.less │ │ │ │ │ ├── progress-bar.less │ │ │ │ │ ├── reset-filter.less │ │ │ │ │ ├── reset-text.less │ │ │ │ │ ├── resize.less │ │ │ │ │ ├── responsive-visibility.less │ │ │ │ │ ├── size.less │ │ │ │ │ ├── tab-focus.less │ │ │ │ │ ├── table-row.less │ │ │ │ │ ├── text-emphasis.less │ │ │ │ │ ├── text-overflow.less │ │ │ │ │ └── vendor-prefixes.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── normalize.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── popovers.less │ │ │ │ ├── print.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── responsive-embed.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── tables.less │ │ │ │ ├── theme.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables.less │ │ │ │ └── wells.less │ │ │ ├── grunt │ │ │ │ └── .jshintrc │ │ │ ├── js │ │ │ │ ├── .jscsrc │ │ │ │ ├── .jshintrc │ │ │ │ ├── BoxRefresh.js │ │ │ │ ├── BoxWidget.js │ │ │ │ ├── ControlSidebar.js │ │ │ │ ├── DirectChat.js │ │ │ │ ├── Layout.js │ │ │ │ ├── PushMenu.js │ │ │ │ ├── TodoList.js │ │ │ │ └── Tree.js │ │ │ └── less │ │ │ │ ├── .csslintrc │ │ │ │ ├── 404_500_errors.less │ │ │ │ ├── AdminLTE-without-plugins.less │ │ │ │ ├── AdminLTE.less │ │ │ │ ├── alerts.less │ │ │ │ ├── bootstrap-social.less │ │ │ │ ├── boxes.less │ │ │ │ ├── buttons.less │ │ │ │ ├── callout.less │ │ │ │ ├── carousel.less │ │ │ │ ├── control-sidebar.less │ │ │ │ ├── core.less │ │ │ │ ├── datepicker.less │ │ │ │ ├── direct-chat.less │ │ │ │ ├── dropdown.less │ │ │ │ ├── forms.less │ │ │ │ ├── fullcalendar.less │ │ │ │ ├── header.less │ │ │ │ ├── info-box.less │ │ │ │ ├── invoice.less │ │ │ │ ├── labels.less │ │ │ │ ├── lockscreen.less │ │ │ │ ├── login_and_register.less │ │ │ │ ├── mailbox.less │ │ │ │ ├── miscellaneous.less │ │ │ │ ├── mixins.less │ │ │ │ ├── modal.less │ │ │ │ ├── navs.less │ │ │ │ ├── plugins.less │ │ │ │ ├── print.less │ │ │ │ ├── products.less │ │ │ │ ├── profile.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── select2.less │ │ │ │ ├── sidebar-mini.less │ │ │ │ ├── sidebar.less │ │ │ │ ├── skins │ │ │ │ ├── _all-skins.less │ │ │ │ ├── skin-black-light.less │ │ │ │ ├── skin-black.less │ │ │ │ ├── skin-blue-light.less │ │ │ │ ├── skin-blue.less │ │ │ │ ├── skin-green-light.less │ │ │ │ ├── skin-green.less │ │ │ │ ├── skin-purple-light.less │ │ │ │ ├── skin-purple.less │ │ │ │ ├── skin-red-light.less │ │ │ │ ├── skin-red.less │ │ │ │ ├── skin-yellow-light.less │ │ │ │ └── skin-yellow.less │ │ │ │ ├── small-box.less │ │ │ │ ├── social-widgets.less │ │ │ │ ├── table.less │ │ │ │ ├── timeline.less │ │ │ │ ├── treeview.less │ │ │ │ ├── users-list.less │ │ │ │ └── variables.less │ │ ├── changelog.md │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── AdminLTE.css │ │ │ │ ├── AdminLTE.min.css │ │ │ │ ├── adminlte.css.map │ │ │ │ ├── adminlte.min.css.map │ │ │ │ ├── alt │ │ │ │ │ ├── AdminLTE-bootstrap-social.css │ │ │ │ │ ├── AdminLTE-bootstrap-social.min.css │ │ │ │ │ ├── AdminLTE-fullcalendar.css │ │ │ │ │ ├── AdminLTE-fullcalendar.min.css │ │ │ │ │ ├── AdminLTE-select2.css │ │ │ │ │ ├── AdminLTE-select2.min.css │ │ │ │ │ ├── AdminLTE-without-plugins.css │ │ │ │ │ └── AdminLTE-without-plugins.min.css │ │ │ │ └── skins │ │ │ │ │ ├── _all-skins.css │ │ │ │ │ ├── _all-skins.min.css │ │ │ │ │ ├── skin-black-light.css │ │ │ │ │ ├── skin-black-light.min.css │ │ │ │ │ ├── skin-black.css │ │ │ │ │ ├── skin-black.min.css │ │ │ │ │ ├── skin-blue-light.css │ │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ │ ├── skin-blue.css │ │ │ │ │ ├── skin-blue.min.css │ │ │ │ │ ├── skin-green-light.css │ │ │ │ │ ├── skin-green-light.min.css │ │ │ │ │ ├── skin-green.css │ │ │ │ │ ├── skin-green.min.css │ │ │ │ │ ├── skin-purple-light.css │ │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ │ ├── skin-purple.css │ │ │ │ │ ├── skin-purple.min.css │ │ │ │ │ ├── skin-red-light.css │ │ │ │ │ ├── skin-red-light.min.css │ │ │ │ │ ├── skin-red.css │ │ │ │ │ ├── skin-red.min.css │ │ │ │ │ ├── skin-yellow-light.css │ │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ │ ├── skin-yellow.css │ │ │ │ │ └── skin-yellow.min.css │ │ │ ├── img │ │ │ │ ├── avatar.png │ │ │ │ ├── avatar04.png │ │ │ │ ├── avatar2.png │ │ │ │ ├── avatar3.png │ │ │ │ ├── avatar5.png │ │ │ │ ├── boxed-bg.jpg │ │ │ │ ├── boxed-bg.png │ │ │ │ ├── credit │ │ │ │ │ ├── american-express.png │ │ │ │ │ ├── cirrus.png │ │ │ │ │ ├── mastercard.png │ │ │ │ │ ├── mestro.png │ │ │ │ │ ├── paypal.png │ │ │ │ │ ├── paypal2.png │ │ │ │ │ └── visa.png │ │ │ │ ├── default-50x50.gif │ │ │ │ ├── icons.png │ │ │ │ ├── photo1.png │ │ │ │ ├── photo2.png │ │ │ │ ├── photo3.jpg │ │ │ │ ├── photo4.jpg │ │ │ │ ├── user1-128x128.jpg │ │ │ │ ├── user2-160x160.jpg │ │ │ │ ├── user3-128x128.jpg │ │ │ │ ├── user4-128x128.jpg │ │ │ │ ├── user5-128x128.jpg │ │ │ │ ├── user6-128x128.jpg │ │ │ │ ├── user7-128x128.jpg │ │ │ │ └── user8-128x128.jpg │ │ │ └── js │ │ │ │ ├── adminlte.js │ │ │ │ ├── adminlte.min.js │ │ │ │ ├── demo.js │ │ │ │ └── pages │ │ │ │ ├── dashboard.js │ │ │ │ └── dashboard2.js │ │ ├── index.html │ │ ├── index2.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pages │ │ │ ├── UI │ │ │ │ ├── buttons.html │ │ │ │ ├── general.html │ │ │ │ ├── icons.html │ │ │ │ ├── modals.html │ │ │ │ ├── sliders.html │ │ │ │ └── timeline.html │ │ │ ├── calendar.html │ │ │ ├── charts │ │ │ │ ├── chartjs.html │ │ │ │ ├── flot.html │ │ │ │ ├── inline.html │ │ │ │ └── morris.html │ │ │ ├── examples │ │ │ │ ├── 404.html │ │ │ │ ├── 500.html │ │ │ │ ├── blank.html │ │ │ │ ├── invoice-print.html │ │ │ │ ├── invoice.html │ │ │ │ ├── lockscreen.html │ │ │ │ ├── login.html │ │ │ │ ├── pace.html │ │ │ │ ├── profile.html │ │ │ │ └── register.html │ │ │ ├── forms │ │ │ │ ├── advanced.html │ │ │ │ ├── editors.html │ │ │ │ └── general.html │ │ │ ├── layout │ │ │ │ ├── boxed.html │ │ │ │ ├── collapsed-sidebar.html │ │ │ │ ├── fixed.html │ │ │ │ └── top-nav.html │ │ │ ├── mailbox │ │ │ │ ├── compose.html │ │ │ │ ├── mailbox.html │ │ │ │ └── read-mail.html │ │ │ ├── tables │ │ │ │ ├── data.html │ │ │ │ └── simple.html │ │ │ └── widgets.html │ │ ├── plugins │ │ │ ├── bootstrap-slider │ │ │ │ ├── bootstrap-slider.js │ │ │ │ └── slider.css │ │ │ ├── iCheck │ │ │ │ ├── all.css │ │ │ │ ├── flat │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── aero.png │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ ├── flat.css │ │ │ │ │ ├── flat.png │ │ │ │ │ ├── flat@2x.png │ │ │ │ │ ├── green.css │ │ │ │ │ ├── green.png │ │ │ │ │ ├── green@2x.png │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── grey.png │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── orange.png │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── pink.png │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ ├── red.css │ │ │ │ │ ├── red.png │ │ │ │ │ ├── red@2x.png │ │ │ │ │ ├── yellow.css │ │ │ │ │ ├── yellow.png │ │ │ │ │ └── yellow@2x.png │ │ │ │ ├── futurico │ │ │ │ │ ├── futurico.css │ │ │ │ │ ├── futurico.png │ │ │ │ │ └── futurico@2x.png │ │ │ │ ├── icheck.js │ │ │ │ ├── icheck.min.js │ │ │ │ ├── line │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── green.css │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── line.css │ │ │ │ │ ├── line.png │ │ │ │ │ ├── line@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── red.css │ │ │ │ │ └── yellow.css │ │ │ │ ├── minimal │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── aero.png │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ ├── green.css │ │ │ │ │ ├── green.png │ │ │ │ │ ├── green@2x.png │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── grey.png │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ ├── minimal.css │ │ │ │ │ ├── minimal.png │ │ │ │ │ ├── minimal@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── orange.png │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── pink.png │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ ├── red.css │ │ │ │ │ ├── red.png │ │ │ │ │ ├── red@2x.png │ │ │ │ │ ├── yellow.css │ │ │ │ │ ├── yellow.png │ │ │ │ │ └── yellow@2x.png │ │ │ │ ├── polaris │ │ │ │ │ ├── polaris.css │ │ │ │ │ ├── polaris.png │ │ │ │ │ └── polaris@2x.png │ │ │ │ └── square │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── aero.png │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ ├── green.css │ │ │ │ │ ├── green.png │ │ │ │ │ ├── green@2x.png │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── grey.png │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── orange.png │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── pink.png │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ ├── red.css │ │ │ │ │ ├── red.png │ │ │ │ │ ├── red@2x.png │ │ │ │ │ ├── square.css │ │ │ │ │ ├── square.png │ │ │ │ │ ├── square@2x.png │ │ │ │ │ ├── yellow.css │ │ │ │ │ ├── yellow.png │ │ │ │ │ └── yellow@2x.png │ │ │ ├── input-mask │ │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ │ ├── jquery.inputmask.extensions.js │ │ │ │ ├── jquery.inputmask.js │ │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ │ └── phone-codes │ │ │ │ │ ├── phone-be.json │ │ │ │ │ ├── phone-codes.json │ │ │ │ │ └── readme.txt │ │ │ ├── jQueryUI │ │ │ │ ├── jquery-ui.js │ │ │ │ └── jquery-ui.min.js │ │ │ ├── jvectormap │ │ │ │ ├── jquery-jvectormap-1.2.2.css │ │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ │ ├── jquery-jvectormap-usa-en.js │ │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ ├── pace │ │ │ │ ├── pace.css │ │ │ │ ├── pace.js │ │ │ │ ├── pace.min.css │ │ │ │ └── pace.min.js │ │ │ └── timepicker │ │ │ │ ├── bootstrap-timepicker.css │ │ │ │ ├── bootstrap-timepicker.js │ │ │ │ ├── bootstrap-timepicker.min.css │ │ │ │ └── bootstrap-timepicker.min.js │ │ ├── starter.html │ │ └── yarn.lock │ ├── amcharts3 │ │ ├── .bower.json │ │ ├── README.md │ │ ├── amcharts │ │ │ ├── amcharts.js │ │ │ ├── funnel.js │ │ │ ├── gantt.js │ │ │ ├── gauge.js │ │ │ ├── images │ │ │ │ ├── dragIcon.gif │ │ │ │ ├── dragIconBlack.gif │ │ │ │ ├── dragIconH.gif │ │ │ │ ├── dragIconHBlack.gif │ │ │ │ ├── dragIconRectBig.png │ │ │ │ ├── dragIconRectBig.svg │ │ │ │ ├── dragIconRectBigBlack.png │ │ │ │ ├── dragIconRectBigBlack.svg │ │ │ │ ├── dragIconRectBigBlackH.png │ │ │ │ ├── dragIconRectBigBlackH.svg │ │ │ │ ├── dragIconRectBigH.png │ │ │ │ ├── dragIconRectBigH.svg │ │ │ │ ├── dragIconRectSmall.png │ │ │ │ ├── dragIconRectSmall.svg │ │ │ │ ├── dragIconRectSmallBlack.png │ │ │ │ ├── dragIconRectSmallBlack.svg │ │ │ │ ├── dragIconRectSmallBlackH.png │ │ │ │ ├── dragIconRectSmallBlackH.svg │ │ │ │ ├── dragIconRectSmallH.png │ │ │ │ ├── dragIconRectSmallH.svg │ │ │ │ ├── dragIconRoundBig.png │ │ │ │ ├── dragIconRoundBig.svg │ │ │ │ ├── dragIconRoundBigBlack.png │ │ │ │ ├── dragIconRoundBigBlack.svg │ │ │ │ ├── dragIconRoundBigBlackH.png │ │ │ │ ├── dragIconRoundBigBlackH.svg │ │ │ │ ├── dragIconRoundBigH.png │ │ │ │ ├── dragIconRoundBigH.svg │ │ │ │ ├── dragIconRoundSmall.png │ │ │ │ ├── dragIconRoundSmall.svg │ │ │ │ ├── dragIconRoundSmallBlack.png │ │ │ │ ├── dragIconRoundSmallBlack.svg │ │ │ │ ├── dragIconRoundSmallBlackH.png │ │ │ │ ├── dragIconRoundSmallBlackH.svg │ │ │ │ ├── dragIconRoundSmallH.png │ │ │ │ ├── dragIconRoundSmallH.svg │ │ │ │ ├── eraserIcon.svg │ │ │ │ ├── eraserIconH.svg │ │ │ │ ├── export.png │ │ │ │ ├── exportWhite.png │ │ │ │ ├── lens.png │ │ │ │ ├── lens.svg │ │ │ │ ├── lensWhite.png │ │ │ │ ├── lensWhite.svg │ │ │ │ ├── lensWhite_old.png │ │ │ │ ├── lens_old.png │ │ │ │ ├── pencilIcon.svg │ │ │ │ ├── pencilIconH.svg │ │ │ │ ├── xIcon.svg │ │ │ │ └── xIconH.svg │ │ │ ├── lang │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── de.js │ │ │ │ ├── es.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── mt.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── rw.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── so.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ └── zh.js │ │ │ ├── patterns │ │ │ │ ├── black │ │ │ │ │ ├── pattern1.png │ │ │ │ │ ├── pattern10.png │ │ │ │ │ ├── pattern11.png │ │ │ │ │ ├── pattern12.png │ │ │ │ │ ├── pattern13.png │ │ │ │ │ ├── pattern14.png │ │ │ │ │ ├── pattern15.png │ │ │ │ │ ├── pattern16.png │ │ │ │ │ ├── pattern17.png │ │ │ │ │ ├── pattern18.png │ │ │ │ │ ├── pattern19.png │ │ │ │ │ ├── pattern2.png │ │ │ │ │ ├── pattern20.png │ │ │ │ │ ├── pattern21.png │ │ │ │ │ ├── pattern3.png │ │ │ │ │ ├── pattern4.png │ │ │ │ │ ├── pattern5.png │ │ │ │ │ ├── pattern6.png │ │ │ │ │ ├── pattern7.png │ │ │ │ │ ├── pattern8.png │ │ │ │ │ └── pattern9.png │ │ │ │ ├── chalk │ │ │ │ │ ├── pattern1.jpg │ │ │ │ │ ├── pattern1r.jpg │ │ │ │ │ ├── pattern2.jpg │ │ │ │ │ ├── pattern3.jpg │ │ │ │ │ ├── pattern4.jpg │ │ │ │ │ ├── pattern5.jpg │ │ │ │ │ └── pattern6.jpg │ │ │ │ └── white │ │ │ │ │ ├── pattern1.png │ │ │ │ │ ├── pattern10.png │ │ │ │ │ ├── pattern11.png │ │ │ │ │ ├── pattern12.png │ │ │ │ │ ├── pattern13.png │ │ │ │ │ ├── pattern14.png │ │ │ │ │ ├── pattern15.png │ │ │ │ │ ├── pattern16.png │ │ │ │ │ ├── pattern17.png │ │ │ │ │ ├── pattern18.png │ │ │ │ │ ├── pattern19.png │ │ │ │ │ ├── pattern2.png │ │ │ │ │ ├── pattern20.png │ │ │ │ │ ├── pattern21.png │ │ │ │ │ ├── pattern3.png │ │ │ │ │ ├── pattern4.png │ │ │ │ │ ├── pattern5.png │ │ │ │ │ ├── pattern6.png │ │ │ │ │ ├── pattern7.png │ │ │ │ │ ├── pattern8.png │ │ │ │ │ └── pattern9.png │ │ │ ├── pie.js │ │ │ ├── plugins │ │ │ │ ├── animate │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── animate.js │ │ │ │ │ ├── animate.min.js │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── funnel.html │ │ │ │ │ │ ├── pie.html │ │ │ │ │ │ ├── radar.html │ │ │ │ │ │ ├── serial_column.html │ │ │ │ │ │ ├── serial_line.html │ │ │ │ │ │ └── xy.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── dataloader │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── dataloader.js │ │ │ │ │ ├── dataloader.min.js │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── MSFT.csv │ │ │ │ │ │ │ ├── MSFT_events.csv │ │ │ │ │ │ │ ├── TXN.csv │ │ │ │ │ │ │ ├── gantt.json │ │ │ │ │ │ │ ├── gauge.json │ │ │ │ │ │ │ ├── map.json │ │ │ │ │ │ │ ├── map_areas.json │ │ │ │ │ │ │ ├── pie.csv │ │ │ │ │ │ │ ├── pie.json │ │ │ │ │ │ │ ├── serial.csv │ │ │ │ │ │ │ ├── serial.json │ │ │ │ │ │ │ └── serial2.json │ │ │ │ │ │ ├── gantt_json.html │ │ │ │ │ │ ├── gauge_json.html │ │ │ │ │ │ ├── map_json.html │ │ │ │ │ │ ├── map_json_external_function.html │ │ │ │ │ │ ├── pie_csv.html │ │ │ │ │ │ ├── pie_json.html │ │ │ │ │ │ ├── serial2_json.html │ │ │ │ │ │ ├── serial_csv.html │ │ │ │ │ │ ├── serial_json.html │ │ │ │ │ │ ├── serial_with_dynamic_graphs.html │ │ │ │ │ │ ├── stock_csv_data_and_events.html │ │ │ │ │ │ └── stock_csv_progressbar.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ └── lt.js │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ ├── export │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── advanced.html │ │ │ │ │ │ ├── export.config.advanced.js │ │ │ │ │ │ ├── export.config.default.js │ │ │ │ │ │ ├── funnel.html │ │ │ │ │ │ ├── gantt.html │ │ │ │ │ │ ├── gauge.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── bicycle.png │ │ │ │ │ │ │ ├── car.png │ │ │ │ │ │ │ └── motorcycle.png │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── map.html │ │ │ │ │ │ ├── pie1.html │ │ │ │ │ │ ├── pie2.html │ │ │ │ │ │ ├── pie3.html │ │ │ │ │ │ ├── pie4.html │ │ │ │ │ │ ├── radar.html │ │ │ │ │ │ ├── serial1.html │ │ │ │ │ │ ├── serial2.html │ │ │ │ │ │ ├── serial3.html │ │ │ │ │ │ ├── stock.html │ │ │ │ │ │ └── xy.html │ │ │ │ │ ├── export.css │ │ │ │ │ ├── export.js │ │ │ │ │ ├── export.min.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ ├── libs │ │ │ │ │ │ ├── FileSaver.js │ │ │ │ │ │ │ ├── FileSaver.js │ │ │ │ │ │ │ └── FileSaver.min.js │ │ │ │ │ │ ├── blob.js │ │ │ │ │ │ │ └── blob.js │ │ │ │ │ │ ├── classList.js │ │ │ │ │ │ │ ├── classList.js │ │ │ │ │ │ │ └── classList.min.js │ │ │ │ │ │ ├── fabric.js │ │ │ │ │ │ │ ├── fabric.js │ │ │ │ │ │ │ └── fabric.min.js │ │ │ │ │ │ ├── jszip │ │ │ │ │ │ │ ├── jszip.js │ │ │ │ │ │ │ └── jszip.min.js │ │ │ │ │ │ ├── pdfmake │ │ │ │ │ │ │ ├── pdfmake.js │ │ │ │ │ │ │ ├── pdfmake.min.js │ │ │ │ │ │ │ ├── pdfmake.min.js.map │ │ │ │ │ │ │ └── vfs_fonts.js │ │ │ │ │ │ └── xlsx │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── xlsx.js │ │ │ │ │ │ │ ├── xlsx.min.js │ │ │ │ │ │ │ └── xlsx.min.map │ │ │ │ │ ├── package.json │ │ │ │ │ └── shapes │ │ │ │ │ │ ├── 1.svg │ │ │ │ │ │ ├── 10.svg │ │ │ │ │ │ ├── 11.svg │ │ │ │ │ │ ├── 12.svg │ │ │ │ │ │ ├── 13.svg │ │ │ │ │ │ ├── 14.svg │ │ │ │ │ │ ├── 15.svg │ │ │ │ │ │ ├── 16.svg │ │ │ │ │ │ ├── 17.svg │ │ │ │ │ │ ├── 18.svg │ │ │ │ │ │ ├── 19.svg │ │ │ │ │ │ ├── 2.svg │ │ │ │ │ │ ├── 20.svg │ │ │ │ │ │ ├── 21.svg │ │ │ │ │ │ ├── 22.svg │ │ │ │ │ │ ├── 23.svg │ │ │ │ │ │ ├── 24.svg │ │ │ │ │ │ ├── 25.svg │ │ │ │ │ │ ├── 26.svg │ │ │ │ │ │ ├── 27.svg │ │ │ │ │ │ ├── 28.svg │ │ │ │ │ │ ├── 29.svg │ │ │ │ │ │ ├── 3.svg │ │ │ │ │ │ ├── 30.svg │ │ │ │ │ │ ├── 31.svg │ │ │ │ │ │ ├── 4.svg │ │ │ │ │ │ ├── 5.svg │ │ │ │ │ │ ├── 6.svg │ │ │ │ │ │ ├── 7.svg │ │ │ │ │ │ ├── 8.svg │ │ │ │ │ │ └── 9.svg │ │ │ │ └── responsive │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── examples │ │ │ │ │ ├── funnel.html │ │ │ │ │ ├── gantt.html │ │ │ │ │ ├── gauge.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bicycle.png │ │ │ │ │ │ ├── car.png │ │ │ │ │ │ └── motorcycle.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── map.html │ │ │ │ │ ├── pie1.html │ │ │ │ │ ├── pie2.html │ │ │ │ │ ├── pie3.html │ │ │ │ │ ├── radar.html │ │ │ │ │ ├── serial1.html │ │ │ │ │ ├── serial2.html │ │ │ │ │ ├── serial3.html │ │ │ │ │ ├── stock.html │ │ │ │ │ └── xy.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── package.json │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── responsive.js │ │ │ │ │ ├── responsive.min.js │ │ │ │ │ └── responsive.min.js.map │ │ │ ├── radar.js │ │ │ ├── serial.js │ │ │ ├── themes │ │ │ │ ├── black.js │ │ │ │ ├── chalk.js │ │ │ │ ├── dark.js │ │ │ │ ├── light.js │ │ │ │ └── patterns.js │ │ │ └── xy.js │ │ ├── bower.json │ │ ├── changeLog.txt │ │ ├── images │ │ │ ├── logo.png │ │ │ └── style.css │ │ ├── index.html │ │ ├── licence.txt │ │ ├── package.json │ │ ├── samples │ │ │ ├── _CSS_animations.html │ │ │ ├── _JSON_angularGauge.html │ │ │ ├── _JSON_areaStacked.html │ │ │ ├── _JSON_barAndLineMix.html │ │ │ ├── _JSON_ganttDateBased.html │ │ │ ├── _JSON_ganttTimeBased.html │ │ │ ├── _JSON_lineWithFilledValueRanges.html │ │ │ ├── _JSON_lineWithScrollAndZoom.html │ │ │ ├── _JSON_lineWithTrendLines.html │ │ │ ├── _JSON_mekkoChart.html │ │ │ ├── _JSON_pieWithLegend.html │ │ │ ├── _JSON_radarSimple.html │ │ │ ├── _JSON_usingDifferentLanguage.html │ │ │ ├── _JSON_xyBubbleWithZoom.html │ │ │ ├── _JSON_xyWithGuides.html │ │ │ ├── _SVG_filters.html │ │ │ ├── _exporting_to_multiple_formats.html │ │ │ ├── _usingThemes.html │ │ │ ├── angularGauge.html │ │ │ ├── angularGaugeWithTwoAxes.html │ │ │ ├── area100PercentStacked.html │ │ │ ├── areaStacked.html │ │ │ ├── areaWithTimeBasedData.html │ │ │ ├── bar3D.html │ │ │ ├── barAndLineMix.html │ │ │ ├── barClustered.html │ │ │ ├── barFloating.html │ │ │ ├── barStacked.html │ │ │ ├── barWithBackgroundImage.html │ │ │ ├── bulletChart.html │ │ │ ├── candleStick.html │ │ │ ├── candleStickProMode.html │ │ │ ├── clock.html │ │ │ ├── clockWithTwoFaces.html │ │ │ ├── column100PercentStacked.html │ │ │ ├── column3D.html │ │ │ ├── column3DStacked.html │ │ │ ├── columnAndLineMix.html │ │ │ ├── columnCylinders.html │ │ │ ├── columnRotatedSeries.html │ │ │ ├── columnSimple.html │ │ │ ├── columnStacked.html │ │ │ ├── columnStackedAndClustered.html │ │ │ ├── columnWithGradientFills.html │ │ │ ├── columnWithImages.html │ │ │ ├── columnWithPatterns.html │ │ │ ├── errorChart.html │ │ │ ├── fillBetweenTwoLines.html │ │ │ ├── funnelChart.html │ │ │ ├── handDrawnChart.html │ │ │ ├── images │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── bg.jpg │ │ │ │ ├── bgSky.jpg │ │ │ │ ├── bicycle.png │ │ │ │ ├── board.jpg │ │ │ │ ├── car.png │ │ │ │ ├── motorcycle.png │ │ │ │ ├── redstar.png │ │ │ │ └── star.png │ │ │ ├── lineSmoothed.html │ │ │ ├── lineStep.html │ │ │ ├── lineStepNoRisers.html │ │ │ ├── lineWithChangingColor.html │ │ │ ├── lineWithCustomBullets.html │ │ │ ├── lineWithDataGaps.html │ │ │ ├── lineWithDateBasedData.html │ │ │ ├── lineWithDifferentBulletSizes.html │ │ │ ├── lineWithDurationOnValueAxis.html │ │ │ ├── lineWithFilledValueRanges.html │ │ │ ├── lineWithLogarithmicValueAxis.html │ │ │ ├── lineWithMultipleValueAxes.html │ │ │ ├── lineWithReversedValueAxis.html │ │ │ ├── lineWithTrendLines.html │ │ │ ├── mekkoChart.html │ │ │ ├── microCharts.html │ │ │ ├── ohlc.html │ │ │ ├── pie3D.html │ │ │ ├── pieDonut3D.html │ │ │ ├── pieSimple.html │ │ │ ├── pieWithLegend.html │ │ │ ├── pieWithPatterns.html │ │ │ ├── pyramidChart.html │ │ │ ├── pyramidChart3D.html │ │ │ ├── radarPolar.html │ │ │ ├── radarSimple.html │ │ │ ├── style.css │ │ │ ├── waterFallChart.html │ │ │ ├── xyBubbleSimple.html │ │ │ ├── xyBubbleWithZoom.html │ │ │ ├── xyDateBased.html │ │ │ ├── xyError.html │ │ │ └── xyScatter.html │ │ └── thirdPartySoftwareList.txt │ ├── bootstrap-colorpicker │ │ ├── .bower.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ ├── bootstrap-colorpicker.css.map │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ └── bootstrap-colorpicker.min.css.map │ │ │ ├── img │ │ │ │ └── bootstrap-colorpicker │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ ├── alpha.png │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ ├── hue.png │ │ │ │ │ └── saturation.png │ │ │ └── js │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ └── bootstrap-colorpicker.min.js │ │ ├── docs │ │ │ ├── assets │ │ │ │ └── main.css │ │ │ ├── helpers │ │ │ │ └── code │ │ │ │ │ └── index.js │ │ │ ├── includes │ │ │ │ ├── api.hbs │ │ │ │ ├── example.hbs │ │ │ │ ├── examples.hbs │ │ │ │ ├── examples │ │ │ │ │ ├── 01_basic.hbs │ │ │ │ │ ├── 02_component.hbs │ │ │ │ │ ├── 03_component_options.hbs │ │ │ │ │ ├── 04_events.hbs │ │ │ │ │ ├── 05_transparent.hbs │ │ │ │ │ ├── 06_horizontal.hbs │ │ │ │ │ ├── 07_inline.hbs │ │ │ │ │ ├── 08_palette.hbs │ │ │ │ │ ├── 09_size.hbs │ │ │ │ │ ├── 10_disabled.hbs │ │ │ │ │ └── 11_modal.hbs │ │ │ │ └── social.hbs │ │ │ ├── layout.hbs │ │ │ └── pages │ │ │ │ └── index.hbs │ │ ├── serve.js │ │ └── src │ │ │ ├── js │ │ │ ├── colorpicker-color.js │ │ │ ├── colorpicker-component.js │ │ │ ├── colorpicker-defaults.js │ │ │ └── colorpicker-plugin-wrapper.js │ │ │ ├── less │ │ │ └── colorpicker.less │ │ │ └── sass │ │ │ └── _colorpicker.scss │ ├── bootstrap-datepicker │ │ ├── .bower.json │ │ ├── .editorconfig │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ ├── build3.less │ │ │ ├── build_standalone.less │ │ │ └── build_standalone3.less │ │ ├── composer.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-datepicker.css │ │ │ │ ├── bootstrap-datepicker.css.map │ │ │ │ ├── bootstrap-datepicker.min.css │ │ │ │ ├── bootstrap-datepicker.standalone.css │ │ │ │ ├── bootstrap-datepicker.standalone.css.map │ │ │ │ ├── bootstrap-datepicker.standalone.min.css │ │ │ │ ├── bootstrap-datepicker3.css │ │ │ │ ├── bootstrap-datepicker3.css.map │ │ │ │ ├── bootstrap-datepicker3.min.css │ │ │ │ ├── bootstrap-datepicker3.standalone.css │ │ │ │ ├── bootstrap-datepicker3.standalone.css.map │ │ │ │ └── bootstrap-datepicker3.standalone.min.css │ │ │ ├── js │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ └── bootstrap-datepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ ├── bootstrap-datepicker.nb.min.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ ├── docs │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── _screenshots │ │ │ │ ├── demo_head.html │ │ │ │ ├── markup_component.html │ │ │ │ ├── markup_daterange.html │ │ │ │ ├── markup_inline.html │ │ │ │ ├── markup_input.html │ │ │ │ ├── option_calendarweeks.html │ │ │ │ ├── option_clearbtn.html │ │ │ │ ├── option_daysofweekdisabled.html │ │ │ │ ├── option_enddate.html │ │ │ │ ├── option_language.html │ │ │ │ ├── option_multidate.html │ │ │ │ ├── option_startdate.html │ │ │ │ ├── option_todaybtn.html │ │ │ │ ├── option_todayhighlight.html │ │ │ │ ├── option_weekstart.html │ │ │ │ └── script │ │ │ │ │ ├── common.css │ │ │ │ │ ├── common.js │ │ │ │ │ ├── debug.js │ │ │ │ │ ├── html-imports.min.js │ │ │ │ │ └── screenshot.js │ │ │ ├── _static │ │ │ │ └── screenshots │ │ │ │ │ ├── demo_head.png │ │ │ │ │ ├── markup_component.png │ │ │ │ │ ├── markup_daterange.png │ │ │ │ │ ├── markup_inline.png │ │ │ │ │ ├── markup_input.png │ │ │ │ │ ├── option_calendarweeks.png │ │ │ │ │ ├── option_clearbtn.png │ │ │ │ │ ├── option_daysofweekdisabled.png │ │ │ │ │ ├── option_enddate.png │ │ │ │ │ ├── option_language.png │ │ │ │ │ ├── option_multidate.png │ │ │ │ │ ├── option_startdate.png │ │ │ │ │ ├── option_todaybtn.png │ │ │ │ │ ├── option_todayhighlight.png │ │ │ │ │ └── option_weekstart.png │ │ │ ├── conf.py │ │ │ ├── events.rst │ │ │ ├── i18n.rst │ │ │ ├── index.rst │ │ │ ├── keyboard.rst │ │ │ ├── make.bat │ │ │ ├── markup.rst │ │ │ ├── methods.rst │ │ │ ├── options.rst │ │ │ └── requirements.txt │ │ ├── grunt │ │ │ └── .jshintrc │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── bootstrap-datepicker.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker-en-CA.js │ │ │ │ ├── bootstrap-datepicker.ar-tn.js │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.bn.js │ │ │ │ ├── bootstrap-datepicker.br.js │ │ │ │ ├── bootstrap-datepicker.bs.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ ├── bootstrap-datepicker.en-AU.js │ │ │ │ ├── bootstrap-datepicker.en-GB.js │ │ │ │ ├── bootstrap-datepicker.en-IE.js │ │ │ │ ├── bootstrap-datepicker.en-NZ.js │ │ │ │ ├── bootstrap-datepicker.en-ZA.js │ │ │ │ ├── bootstrap-datepicker.eo.js │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ ├── bootstrap-datepicker.eu.js │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ ├── bootstrap-datepicker.fo.js │ │ │ │ ├── bootstrap-datepicker.fr-CH.js │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ ├── bootstrap-datepicker.hi.js │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ ├── bootstrap-datepicker.hy.js │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ ├── bootstrap-datepicker.it-CH.js │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ ├── bootstrap-datepicker.kh.js │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ ├── bootstrap-datepicker.km.js │ │ │ │ ├── bootstrap-datepicker.ko.js │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ ├── bootstrap-datepicker.me.js │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ ├── bootstrap-datepicker.mn.js │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ ├── bootstrap-datepicker.oc.js │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ ├── bootstrap-datepicker.si.js │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ ├── bootstrap-datepicker.sr-latin.js │ │ │ │ ├── bootstrap-datepicker.sr.js │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ ├── bootstrap-datepicker.ta.js │ │ │ │ ├── bootstrap-datepicker.tg.js │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.js │ │ │ │ ├── bootstrap-datepicker.uz-latn.js │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── less │ │ │ ├── .csslintrc │ │ │ ├── datepicker.less │ │ │ └── datepicker3.less │ │ ├── package.json │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── coverage.js │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ ├── mock.js │ │ │ │ ├── qunit-logging.js │ │ │ │ ├── qunit.css │ │ │ │ ├── qunit.js │ │ │ │ └── utils.js │ │ │ ├── suites │ │ │ │ ├── calendar-weeks.js │ │ │ │ ├── component.js │ │ │ │ ├── data-api.js │ │ │ │ ├── events.js │ │ │ │ ├── formats.js │ │ │ │ ├── inline.js │ │ │ │ ├── keyboard_navigation │ │ │ │ │ ├── 2011.js │ │ │ │ │ ├── 2012.js │ │ │ │ │ └── all.js │ │ │ │ ├── methods.js │ │ │ │ ├── methods_jquery.js │ │ │ │ ├── mouse_navigation │ │ │ │ │ ├── 2011.js │ │ │ │ │ ├── 2012.js │ │ │ │ │ └── all.js │ │ │ │ ├── noconflict.js │ │ │ │ ├── options.js │ │ │ │ ├── timezone.js │ │ │ │ └── touch_navigation │ │ │ │ │ └── all.js │ │ │ ├── tests.html │ │ │ └── timezone.html │ │ └── yarn.lock │ ├── bootstrap-daterangepicker │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── daterangepicker.css │ │ ├── daterangepicker.js │ │ ├── daterangepicker.scss │ │ ├── demo.html │ │ ├── drp.png │ │ ├── example │ │ │ ├── amd │ │ │ │ ├── index.html │ │ │ │ ├── main.js │ │ │ │ └── require.js │ │ │ └── browserify │ │ │ │ ├── README.md │ │ │ │ ├── bundle.js │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ ├── package.js │ │ ├── package.json │ │ └── website │ │ │ ├── index.html │ │ │ ├── website.css │ │ │ └── website.js │ ├── bootstrap-slider │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bootstrap-slider.js │ │ ├── bower.json │ │ ├── locks.png │ │ └── slider.css │ ├── bootstrap-timepicker │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ └── timepicker.less │ │ └── js │ │ │ └── bootstrap-timepicker.js │ ├── bootstrap │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── Gruntfile.js │ │ ├── ISSUE_TEMPLATE.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── change-version.js │ │ │ ├── configBridge.json │ │ │ ├── npm-shrinkwrap.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ ├── bootstrap.less.nuspec │ │ │ └── bootstrap.nuspec │ │ ├── package.js │ │ └── package.json │ ├── chart.js │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Chart.js │ │ ├── Chart.min.js │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── docs │ │ │ ├── 00-Getting-Started.md │ │ │ ├── 01-Line-Chart.md │ │ │ ├── 02-Bar-Chart.md │ │ │ ├── 03-Radar-Chart.md │ │ │ ├── 04-Polar-Area-Chart.md │ │ │ ├── 05-Pie-Doughnut-Chart.md │ │ │ ├── 06-Advanced.md │ │ │ └── 07-Notes.md │ │ ├── gulpfile.js │ │ ├── package.json │ │ ├── samples │ │ │ ├── bar.html │ │ │ ├── doughnut.html │ │ │ ├── line-customTooltips.html │ │ │ ├── line.html │ │ │ ├── pie-customTooltips.html │ │ │ ├── pie.html │ │ │ ├── polar-area.html │ │ │ └── radar.html │ │ └── src │ │ │ ├── Chart.Bar.js │ │ │ ├── Chart.Core.js │ │ │ ├── Chart.Doughnut.js │ │ │ ├── Chart.Line.js │ │ │ ├── Chart.PolarArea.js │ │ │ └── Chart.Radar.js │ ├── ckeditor │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── bower.json │ │ ├── ckeditor.js │ │ ├── composer.json │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es-mx.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── package.json │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── adobeair │ │ │ │ └── plugin.js │ │ │ ├── ajax │ │ │ │ └── plugin.js │ │ │ ├── autoembed │ │ │ │ ├── lang │ │ │ │ │ ├── az.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── autogrow │ │ │ │ └── plugin.js │ │ │ ├── autolink │ │ │ │ └── plugin.js │ │ │ ├── balloonpanel │ │ │ │ ├── plugin.js │ │ │ │ └── skins │ │ │ │ │ ├── kama │ │ │ │ │ └── balloonpanel.css │ │ │ │ │ ├── moono-lisa │ │ │ │ │ ├── balloonpanel.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── close.png │ │ │ │ │ └── moono │ │ │ │ │ ├── balloonpanel.css │ │ │ │ │ └── images │ │ │ │ │ ├── close.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── close.png │ │ │ ├── balloontoolbar │ │ │ │ ├── plugin.js │ │ │ │ └── skins │ │ │ │ │ ├── default.css │ │ │ │ │ ├── kama │ │ │ │ │ └── balloontoolbar.css │ │ │ │ │ ├── moono-lisa │ │ │ │ │ └── balloontoolbar.css │ │ │ │ │ └── moono │ │ │ │ │ └── balloontoolbar.css │ │ │ ├── bbcode │ │ │ │ └── plugin.js │ │ │ ├── bidi │ │ │ │ ├── icons │ │ │ │ │ ├── bidiltr.png │ │ │ │ │ ├── bidirtl.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── bidiltr.png │ │ │ │ │ │ └── bidirtl.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── codesnippet │ │ │ │ ├── dialogs │ │ │ │ │ └── codesnippet.js │ │ │ │ ├── icons │ │ │ │ │ ├── codesnippet.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── codesnippet.png │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── lib │ │ │ │ │ └── highlight │ │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.ru.md │ │ │ │ │ │ ├── highlight.pack.js │ │ │ │ │ │ └── styles │ │ │ │ │ │ ├── arta.css │ │ │ │ │ │ ├── ascetic.css │ │ │ │ │ │ ├── atelier-dune.dark.css │ │ │ │ │ │ ├── atelier-dune.light.css │ │ │ │ │ │ ├── atelier-forest.dark.css │ │ │ │ │ │ ├── atelier-forest.light.css │ │ │ │ │ │ ├── atelier-heath.dark.css │ │ │ │ │ │ ├── atelier-heath.light.css │ │ │ │ │ │ ├── atelier-lakeside.dark.css │ │ │ │ │ │ ├── atelier-lakeside.light.css │ │ │ │ │ │ ├── atelier-seaside.dark.css │ │ │ │ │ │ ├── atelier-seaside.light.css │ │ │ │ │ │ ├── brown_paper.css │ │ │ │ │ │ ├── brown_papersq.png │ │ │ │ │ │ ├── dark.css │ │ │ │ │ │ ├── default.css │ │ │ │ │ │ ├── docco.css │ │ │ │ │ │ ├── far.css │ │ │ │ │ │ ├── foundation.css │ │ │ │ │ │ ├── github.css │ │ │ │ │ │ ├── googlecode.css │ │ │ │ │ │ ├── idea.css │ │ │ │ │ │ ├── ir_black.css │ │ │ │ │ │ ├── magula.css │ │ │ │ │ │ ├── mono-blue.css │ │ │ │ │ │ ├── monokai.css │ │ │ │ │ │ ├── monokai_sublime.css │ │ │ │ │ │ ├── obsidian.css │ │ │ │ │ │ ├── paraiso.dark.css │ │ │ │ │ │ ├── paraiso.light.css │ │ │ │ │ │ ├── pojoaque.css │ │ │ │ │ │ ├── pojoaque.jpg │ │ │ │ │ │ ├── railscasts.css │ │ │ │ │ │ ├── rainbow.css │ │ │ │ │ │ ├── school_book.css │ │ │ │ │ │ ├── school_book.png │ │ │ │ │ │ ├── solarized_dark.css │ │ │ │ │ │ ├── solarized_light.css │ │ │ │ │ │ ├── sunburst.css │ │ │ │ │ │ ├── tomorrow-night-blue.css │ │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ │ ├── tomorrow-night.css │ │ │ │ │ │ ├── tomorrow.css │ │ │ │ │ │ ├── vs.css │ │ │ │ │ │ ├── xcode.css │ │ │ │ │ │ └── zenburn.css │ │ │ │ └── plugin.js │ │ │ ├── codesnippetgeshi │ │ │ │ └── plugin.js │ │ │ ├── colorbutton │ │ │ │ ├── icons │ │ │ │ │ ├── bgcolor.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── bgcolor.png │ │ │ │ │ │ └── textcolor.png │ │ │ │ │ └── textcolor.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── colordialog │ │ │ │ ├── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── copyformatting │ │ │ │ ├── cursors │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ └── cursor.svg │ │ │ │ ├── icons │ │ │ │ │ ├── copyformatting.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── copyformatting.png │ │ │ │ ├── lang │ │ │ │ │ ├── az.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── styles │ │ │ │ │ └── copyformatting.css │ │ │ ├── devtools │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── dialogadvtab │ │ │ │ └── plugin.js │ │ │ ├── div │ │ │ │ ├── dialogs │ │ │ │ │ └── div.js │ │ │ │ ├── icons │ │ │ │ │ ├── creatediv.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── creatediv.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── divarea │ │ │ │ └── plugin.js │ │ │ ├── docprops │ │ │ │ ├── dialogs │ │ │ │ │ └── docprops.js │ │ │ │ ├── icons │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ ├── docprops.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ │ └── docprops.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── embed │ │ │ │ ├── icons │ │ │ │ │ ├── embed.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── embed.png │ │ │ │ └── plugin.js │ │ │ ├── embedbase │ │ │ │ ├── dialogs │ │ │ │ │ └── embedbase.js │ │ │ │ ├── lang │ │ │ │ │ ├── az.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── embedsemantic │ │ │ │ ├── icons │ │ │ │ │ ├── embedsemantic.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── embedsemantic.png │ │ │ │ └── plugin.js │ │ │ ├── find │ │ │ │ ├── dialogs │ │ │ │ │ └── find.js │ │ │ │ ├── icons │ │ │ │ │ ├── find-rtl.png │ │ │ │ │ ├── find.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── find-rtl.png │ │ │ │ │ │ ├── find.png │ │ │ │ │ │ └── replace.png │ │ │ │ │ └── replace.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ ├── icons │ │ │ │ │ ├── flash.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── flash.png │ │ │ │ ├── images │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── font │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ ├── icons │ │ │ │ │ ├── button.png │ │ │ │ │ ├── checkbox.png │ │ │ │ │ ├── form.png │ │ │ │ │ ├── hiddenfield.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── checkbox.png │ │ │ │ │ │ ├── form.png │ │ │ │ │ │ ├── hiddenfield.png │ │ │ │ │ │ ├── imagebutton.png │ │ │ │ │ │ ├── radio.png │ │ │ │ │ │ ├── select-rtl.png │ │ │ │ │ │ ├── select.png │ │ │ │ │ │ ├── textarea-rtl.png │ │ │ │ │ │ ├── textarea.png │ │ │ │ │ │ ├── textfield-rtl.png │ │ │ │ │ │ └── textfield.png │ │ │ │ │ ├── imagebutton.png │ │ │ │ │ ├── radio.png │ │ │ │ │ ├── select-rtl.png │ │ │ │ │ ├── select.png │ │ │ │ │ ├── textarea-rtl.png │ │ │ │ │ ├── textarea.png │ │ │ │ │ ├── textfield-rtl.png │ │ │ │ │ └── textfield.png │ │ │ │ ├── images │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── iframe.png │ │ │ │ │ └── iframe.png │ │ │ │ ├── images │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── iframedialog │ │ │ │ └── plugin.js │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── image2 │ │ │ │ ├── dialogs │ │ │ │ │ └── image2.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── image.png │ │ │ │ │ └── image.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── indentblock │ │ │ │ └── plugin.js │ │ │ ├── justify │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ │ └── justifyright.png │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ └── justifyright.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── language │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── language.png │ │ │ │ │ └── language.png │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ ├── dialogs │ │ │ │ │ └── liststyle.js │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── mathjax │ │ │ │ ├── dialogs │ │ │ │ │ └── mathjax.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── mathjax.png │ │ │ │ │ └── mathjax.png │ │ │ │ ├── images │ │ │ │ │ └── loader.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── newpage │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── newpage-rtl.png │ │ │ │ │ │ └── newpage.png │ │ │ │ │ ├── newpage-rtl.png │ │ │ │ │ └── newpage.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── pagebreak │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── pagebreak-rtl.png │ │ │ │ │ │ └── pagebreak.png │ │ │ │ │ ├── pagebreak-rtl.png │ │ │ │ │ └── pagebreak.png │ │ │ │ ├── images │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── panelbutton │ │ │ │ └── plugin.js │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── placeholder │ │ │ │ ├── dialogs │ │ │ │ │ └── placeholder.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── preview │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── preview-rtl.png │ │ │ │ │ │ └── preview.png │ │ │ │ │ ├── preview-rtl.png │ │ │ │ │ └── preview.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── preview.html │ │ │ ├── print │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── print.png │ │ │ │ │ └── print.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── save │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── save.png │ │ │ │ │ └── save.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── scayt.css │ │ │ ├── selectall │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── selectall.png │ │ │ │ │ └── selectall.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── sharedspace │ │ │ │ └── plugin.js │ │ │ ├── showblocks │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── showblocks-rtl.png │ │ │ │ │ │ └── showblocks.png │ │ │ │ │ ├── showblocks-rtl.png │ │ │ │ │ └── showblocks.png │ │ │ │ ├── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── smiley.png │ │ │ │ │ └── smiley.png │ │ │ │ ├── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── sourcedialog │ │ │ │ ├── dialogs │ │ │ │ │ └── sourcedialog.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ │ └── sourcedialog.png │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ └── sourcedialog.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── stylesheetparser │ │ │ │ └── plugin.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableresize │ │ │ │ └── plugin.js │ │ │ ├── tableselection │ │ │ │ └── styles │ │ │ │ │ └── tableselection.css │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── templates-rtl.png │ │ │ │ │ │ └── templates.png │ │ │ │ │ ├── templates-rtl.png │ │ │ │ │ └── templates.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── uicolor │ │ │ │ ├── dialogs │ │ │ │ │ ├── uicolor.css │ │ │ │ │ └── uicolor.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── uicolor.png │ │ │ │ │ └── uicolor.png │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── uploadfile │ │ │ │ └── plugin.js │ │ │ ├── widget │ │ │ │ └── images │ │ │ │ │ └── handle.png │ │ │ ├── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── wsc.css │ │ │ └── xml │ │ │ │ └── plugin.js │ │ ├── samples │ │ │ ├── css │ │ │ │ └── samples.css │ │ │ ├── img │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── header-separator.png │ │ │ │ ├── logo.png │ │ │ │ └── navigation-tip.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── sample.js │ │ │ │ └── sf.js │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── autogrow │ │ │ │ │ └── autogrow.html │ │ │ │ ├── bbcode │ │ │ │ │ └── bbcode.html │ │ │ │ ├── codesnippet │ │ │ │ │ └── codesnippet.html │ │ │ │ ├── datafiltering.html │ │ │ │ ├── devtools │ │ │ │ │ └── devtools.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divarea │ │ │ │ │ └── divarea.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── docprops │ │ │ │ │ └── docprops.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── image2 │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── image1.jpg │ │ │ │ │ │ └── image2.jpg │ │ │ │ │ └── image2.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── mathjax │ │ │ │ │ └── mathjax.html │ │ │ │ ├── placeholder │ │ │ │ │ └── placeholder.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── sharedspace │ │ │ │ │ └── sharedspace.html │ │ │ │ ├── sourcedialog │ │ │ │ │ └── sourcedialog.html │ │ │ │ ├── stylesheetparser │ │ │ │ │ ├── assets │ │ │ │ │ │ └── sample.css │ │ │ │ │ └── stylesheetparser.html │ │ │ │ ├── tabindex.html │ │ │ │ ├── tableresize │ │ │ │ │ └── tableresize.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uicolor │ │ │ │ │ └── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ └── toolbarconfigurator │ │ │ │ ├── css │ │ │ │ └── fontello.css │ │ │ │ ├── font │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.json │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.svg │ │ │ │ ├── fontello.ttf │ │ │ │ └── fontello.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ ├── toolbarmodifier.js │ │ │ │ └── toolbartextmodifier.js │ │ │ │ └── lib │ │ │ │ └── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ ├── neo.css │ │ │ │ ├── show-hint.css │ │ │ │ └── show-hint.js │ │ ├── skins │ │ │ ├── kama │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── spinner.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ └── toolbar_start.gif │ │ │ │ ├── readme.md │ │ │ │ └── skin.js │ │ │ ├── moono-lisa │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── anchor.png │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── anchor.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ ├── readme.md │ │ │ │ └── skin.js │ │ └── styles.js │ ├── datatables.net-bs │ │ ├── .bower.json │ │ ├── License.txt │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── css │ │ │ ├── dataTables.bootstrap.css │ │ │ └── dataTables.bootstrap.min.css │ │ └── js │ │ │ ├── dataTables.bootstrap.js │ │ │ └── dataTables.bootstrap.min.js │ ├── datatables.net │ │ ├── .bower.json │ │ ├── License.txt │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── i18n │ │ │ └── id.json │ │ └── js │ │ │ ├── jquery.dataTables.js │ │ │ └── jquery.dataTables.min.js │ ├── eonasdan-bootstrap-datetimepicker │ │ ├── .bower.json │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── css │ │ │ │ ├── bootstrap-datetimepicker-standalone.css │ │ │ │ ├── bootstrap-datetimepicker.css │ │ │ │ └── bootstrap-datetimepicker.min.css │ │ │ └── js │ │ │ │ └── bootstrap-datetimepicker.min.js │ │ ├── component.json │ │ ├── composer.json │ │ ├── docs │ │ │ ├── ChangeLog.md │ │ │ ├── ContributorsGuide.md │ │ │ ├── Events.md │ │ │ ├── Extras.md │ │ │ ├── FAQ.md │ │ │ ├── Functions.md │ │ │ ├── Installing.md │ │ │ ├── Options.md │ │ │ ├── Version 4 Changelog.md │ │ │ ├── Version 4 Contributors guide.md │ │ │ ├── index.md │ │ │ └── theme │ │ │ │ ├── android-chrome-144x144.png │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ ├── android-chrome-36x36.png │ │ │ │ ├── android-chrome-48x48.png │ │ │ │ ├── android-chrome-72x72.png │ │ │ │ ├── android-chrome-96x96.png │ │ │ │ ├── apple-touch-icon-114x114.png │ │ │ │ ├── apple-touch-icon-120x120.png │ │ │ │ ├── apple-touch-icon-144x144.png │ │ │ │ ├── apple-touch-icon-152x152.png │ │ │ │ ├── apple-touch-icon-180x180.png │ │ │ │ ├── apple-touch-icon-57x57.png │ │ │ │ ├── apple-touch-icon-60x60.png │ │ │ │ ├── apple-touch-icon-72x72.png │ │ │ │ ├── apple-touch-icon-76x76.png │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── base.html │ │ │ │ ├── browserconfig.xml │ │ │ │ ├── content.html │ │ │ │ ├── css │ │ │ │ ├── base.css │ │ │ │ └── prettify-1.0.css │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon-96x96.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ ├── base.js │ │ │ │ └── prettify-1.0.min.js │ │ │ │ ├── manifest.json │ │ │ │ ├── mstile-144x144.png │ │ │ │ ├── mstile-150x150.png │ │ │ │ ├── mstile-310x150.png │ │ │ │ ├── mstile-310x310.png │ │ │ │ ├── mstile-70x70.png │ │ │ │ ├── nav.html │ │ │ │ └── toc.html │ │ ├── mkdocs.yml │ │ ├── package.json │ │ ├── src │ │ │ ├── js │ │ │ │ └── bootstrap-datetimepicker.js │ │ │ ├── less │ │ │ │ ├── _bootstrap-datetimepicker.less │ │ │ │ └── bootstrap-datetimepicker-build.less │ │ │ ├── nuget │ │ │ │ ├── Bootstrap.v3.Datetimepicker.CSS.nuspec │ │ │ │ ├── Bootstrap.v3.Datetimepicker.nuspec │ │ │ │ ├── NuGet.exe │ │ │ │ └── install.ps1 │ │ │ └── sass │ │ │ │ ├── _bootstrap-datetimepicker.scss │ │ │ │ └── bootstrap-datetimepicker-build.scss │ │ └── tasks │ │ │ └── bump_version.js │ ├── eve-raphael │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── e.html │ │ ├── eve.js │ │ └── package.json │ ├── fancybox │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.fancybox.css │ │ │ ├── jquery.fancybox.js │ │ │ ├── jquery.fancybox.min.css │ │ │ └── jquery.fancybox.min.js │ │ ├── docs │ │ │ └── index.html │ │ ├── gulpfile.js │ │ ├── package.json │ │ └── src │ │ │ ├── css │ │ │ ├── core.css │ │ │ ├── fullscreen.css │ │ │ ├── share.css │ │ │ ├── slideshow.css │ │ │ └── thumbs.css │ │ │ └── js │ │ │ ├── core.js │ │ │ ├── fullscreen.js │ │ │ ├── guestures.js │ │ │ ├── hash.js │ │ │ ├── media.js │ │ │ ├── share.js │ │ │ ├── slideshow.js │ │ │ ├── thumbs.js │ │ │ └── wheel.js │ ├── fastclick │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ └── lib │ │ │ └── fastclick.js │ ├── font-awesome │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── HELP-US-OUT.txt │ │ ├── bower.json │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.css.map │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── fullcalendar │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ └── dist │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.d.ts │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.css │ │ │ ├── fullcalendar.print.min.css │ │ │ ├── gcal.js │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ ├── highcharts │ │ ├── accessibility.js │ │ ├── exporting.js │ │ ├── highcharts.js │ │ ├── organization.js │ │ └── sankey.js │ ├── inputmask │ │ ├── .bower.json │ │ ├── bower.json │ │ └── dist │ │ │ ├── inputmask │ │ │ ├── bindings │ │ │ │ └── inputmask.binding.js │ │ │ ├── dependencyLibs │ │ │ │ ├── inputmask.dependencyLib.jqlite.js │ │ │ │ ├── inputmask.dependencyLib.jquery.js │ │ │ │ └── inputmask.dependencyLib.js │ │ │ ├── global │ │ │ │ ├── document.js │ │ │ │ └── window.js │ │ │ ├── inputmask.date.extensions.js │ │ │ ├── inputmask.extensions.js │ │ │ ├── inputmask.js │ │ │ ├── inputmask.numeric.extensions.js │ │ │ ├── inputmask.phone.extensions.js │ │ │ ├── inputmask.regex.extensions.js │ │ │ ├── jquery.inputmask.js │ │ │ └── phone-codes │ │ │ │ ├── phone-be.js │ │ │ │ ├── phone-nl.js │ │ │ │ ├── phone-ru.js │ │ │ │ ├── phone-uk.js │ │ │ │ └── phone.js │ │ │ ├── jquery.inputmask.bundle.js │ │ │ └── min │ │ │ ├── inputmask │ │ │ ├── inputmask.date.extensions.min.js │ │ │ ├── inputmask.extensions.min.js │ │ │ ├── inputmask.min.js │ │ │ ├── inputmask.numeric.extensions.min.js │ │ │ ├── inputmask.phone.extensions.min.js │ │ │ ├── inputmask.regex.extensions.min.js │ │ │ └── jquery.inputmask.min.js │ │ │ └── jquery.inputmask.bundle.min.js │ ├── ion.rangeSlider │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── License.md │ │ ├── _tmp │ │ │ └── logo-ion-range-slider.png │ │ ├── bower.json │ │ ├── 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 │ │ ├── history.md │ │ ├── img │ │ │ ├── sprite-skin-flat.png │ │ │ ├── sprite-skin-modern.png │ │ │ ├── sprite-skin-nice.png │ │ │ └── sprite-skin-simple.png │ │ ├── index.md │ │ ├── js │ │ │ ├── ion.rangeSlider.js │ │ │ └── ion.rangeSlider.min.js │ │ ├── package.json │ │ ├── readme.md │ │ └── readme.ru.md │ ├── jquery-knob │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ └── jquery.knob.min.js │ │ ├── excanvas.js │ │ ├── index.html │ │ ├── js │ │ │ └── jquery.knob.js │ │ ├── knob.jquery.json │ │ ├── package.json │ │ └── secretplan.jpg │ ├── jquery-slimscroll │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── examples │ │ │ ├── allow-page-scroll.html │ │ │ ├── chaining.html │ │ │ ├── disable-fade-out.html │ │ │ ├── dynamic-content.html │ │ │ ├── height-width.html │ │ │ ├── index.html │ │ │ ├── libs │ │ │ │ └── prettify │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── prettify.js │ │ │ ├── mouse-wheel.html │ │ │ ├── multiple-elements.html │ │ │ ├── navigation.html │ │ │ ├── nested.html │ │ │ ├── programmatic-scrolling.html │ │ │ ├── rail.html │ │ │ ├── scroll-events.html │ │ │ ├── scrollbar.html │ │ │ ├── start-position.html │ │ │ └── style.css │ │ ├── jquery.slimscroll.js │ │ ├── jquery.slimscroll.min.js │ │ └── package.json │ ├── jquery-sparkline │ │ ├── .bower.json │ │ ├── Changelog.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.sparkline.js │ │ │ └── jquery.sparkline.min.js │ │ ├── minheader.txt │ │ ├── sparkline.jquery.json │ │ ├── src │ │ │ ├── base.js │ │ │ ├── chart-bar.js │ │ │ ├── chart-box.js │ │ │ ├── chart-bullet.js │ │ │ ├── chart-discrete.js │ │ │ ├── chart-line.js │ │ │ ├── chart-pie.js │ │ │ ├── chart-tristate.js │ │ │ ├── defaults.js │ │ │ ├── footer.js │ │ │ ├── header.js │ │ │ ├── interact.js │ │ │ ├── rangemap.js │ │ │ ├── simpledraw.js │ │ │ ├── utils.js │ │ │ ├── vcanvas-base.js │ │ │ ├── vcanvas-canvas.js │ │ │ └── vcanvas-vml.js │ │ └── version.txt │ ├── jquery-ui │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.js │ │ ├── package.json │ │ ├── themes │ │ │ ├── base │ │ │ │ ├── accordion.css │ │ │ │ ├── all.css │ │ │ │ ├── autocomplete.css │ │ │ │ ├── base.css │ │ │ │ ├── button.css │ │ │ │ ├── core.css │ │ │ │ ├── datepicker.css │ │ │ │ ├── dialog.css │ │ │ │ ├── draggable.css │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── menu.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── resizable.css │ │ │ │ ├── selectable.css │ │ │ │ ├── selectmenu.css │ │ │ │ ├── slider.css │ │ │ │ ├── sortable.css │ │ │ │ ├── spinner.css │ │ │ │ ├── tabs.css │ │ │ │ ├── theme.css │ │ │ │ └── tooltip.css │ │ │ ├── black-tie │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_8_333333_40x40.png │ │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_40_111111_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_1c1c1c_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f9f9f9_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_40_aaaaaa_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_50_aaaaaa_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_45_cd0a0a_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_55_ffeb80_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_4ca300_256x240.png │ │ │ │ │ ├── ui-icons_bbbbbb_256x240.png │ │ │ │ │ ├── ui-icons_ededed_256x240.png │ │ │ │ │ ├── ui-icons_ffcf29_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── blitzer │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ │ │ │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png │ │ │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_15_cc0000_1x100.png │ │ │ │ │ ├── ui-icons_004276_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── cupertino │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── dark-hive │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_20_0972a5_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_33_003147_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_35_222222_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_44_444444_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_loop_25_000000_21x21.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── dot-luv │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_15_0b3e6f_40x40.png │ │ │ │ │ ├── ui-bg_dots-medium_30_0b58a2_4x4.png │ │ │ │ │ ├── ui-bg_dots-small_20_333333_2x2.png │ │ │ │ │ ├── ui-bg_dots-small_30_a32d00_2x2.png │ │ │ │ │ ├── ui-bg_dots-small_40_00498f_2x2.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_40_292929_40x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_20_111111_500x100.png │ │ │ │ │ ├── ui-icons_00498f_256x240.png │ │ │ │ │ ├── ui-icons_98d2fb_256x240.png │ │ │ │ │ ├── ui-icons_9ccdfc_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── eggplant │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_994d53_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_fafafa_40x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_30_3d3644_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_dcd9de_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eae6ea_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_30273a_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_45_5f5964_1x100.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_734d99_256x240.png │ │ │ │ │ ├── ui-icons_8d78a5_256x240.png │ │ │ │ │ ├── ui-icons_a8a3ae_256x240.png │ │ │ │ │ ├── ui-icons_ebccce_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── excite-bike │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-small_25_c5ddfc_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_e69700_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_22_1484e6_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_26_2293f7_40x40.png │ │ │ │ │ ├── ui-bg_flat_0_e69700_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_e6b900_40x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_f9f9f9_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-icons_0a82eb_256x240.png │ │ │ │ │ ├── ui-icons_0b54d5_256x240.png │ │ │ │ │ ├── ui-icons_5fa5e3_256x240.png │ │ │ │ │ ├── ui-icons_fcdd4a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── flick │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png │ │ │ │ │ ├── ui-icons_0073ea_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ │ ├── ui-icons_ff0084_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── hot-sneaks │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-small_40_db4865_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-small_50_93c3cd_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-small_50_ff3853_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-small_75_ccd232_40x40.png │ │ │ │ │ ├── ui-bg_dots-medium_80_ffff38_4x4.png │ │ │ │ │ ├── ui-bg_dots-small_35_35414f_2x2.png │ │ │ │ │ ├── ui-bg_flat_75_ba9217_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_white-lines_85_f7f7ba_40x100.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_88a206_256x240.png │ │ │ │ │ ├── ui-icons_c02669_256x240.png │ │ │ │ │ ├── ui-icons_e1e463_256x240.png │ │ │ │ │ ├── ui-icons_ffeb33_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── humanity │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f5f0e5_1x400.png │ │ │ │ │ ├── ui-bg_glass_25_cb842e_1x400.png │ │ │ │ │ ├── ui-bg_glass_70_ede4d4_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f4f0ec_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_75_f5f5b5_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_100_f4f0ec_1x100.png │ │ │ │ │ ├── ui-icons_c47a23_256x240.png │ │ │ │ │ ├── ui-icons_cb672b_256x240.png │ │ │ │ │ ├── ui-icons_f08000_256x240.png │ │ │ │ │ ├── ui-icons_f35f07_256x240.png │ │ │ │ │ ├── ui-icons_ff7519_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── le-frog │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-small_0_aaaaaa_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_15_444444_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_95_ffdc2e_40x40.png │ │ │ │ │ ├── ui-bg_glass_55_fbf5d0_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_30_285c00_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_33_3a8104_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_50_4eb305_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_60_4ca20b_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_10_285c00_1x100.png │ │ │ │ │ ├── ui-icons_4eb305_256x240.png │ │ │ │ │ ├── ui-icons_72b42d_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── mint-choc │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_15_5f391b_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_20_1c160d_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_25_453326_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_30_44372c_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_20_201913_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_20_619226_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_10_201913_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_9bcc60_256x240.png │ │ │ │ │ ├── ui-icons_add978_256x240.png │ │ │ │ │ ├── ui-icons_e3ddc9_256x240.png │ │ │ │ │ ├── ui-icons_f1fd86_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── overcast │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_c0402a_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f8f8f8_1x400.png │ │ │ │ │ ├── ui-bg_glass_35_dddddd_1x400.png │ │ │ │ │ ├── ui-bg_glass_60_eeeeee_1x400.png │ │ │ │ │ ├── ui-bg_inset-hard_75_999999_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_50_c9c9c9_1x100.png │ │ │ │ │ ├── ui-icons_3383bb_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_70b2e1_256x240.png │ │ │ │ │ ├── ui-icons_999999_256x240.png │ │ │ │ │ └── ui-icons_fbc856_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── pepper-grinder │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonal-maze_20_6e4f1c_10x10.png │ │ │ │ │ ├── ui-bg_diagonal-maze_40_000000_10x10.png │ │ │ │ │ ├── ui-bg_fine-grain_10_eceadf_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_10_f8f7f6_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_15_eceadf_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_15_f7f3de_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_15_ffffff_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_65_654b24_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_68_b83400_60x60.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_3572ac_256x240.png │ │ │ │ │ ├── ui-icons_8c291d_256x240.png │ │ │ │ │ ├── ui-icons_b83400_256x240.png │ │ │ │ │ ├── ui-icons_fbdb93_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── redmond │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ │ └── ui-icons_f9bd01_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── smoothness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── south-street │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_glass_55_fcf0ba_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_100_ece8da_500x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f5f3e5_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_fafaf4_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_15_459e00_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_95_cccccc_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_67b021_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_95_ffedad_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_15_2b2922_1x100.png │ │ │ │ │ ├── ui-icons_808080_256x240.png │ │ │ │ │ ├── ui-icons_847e71_256x240.png │ │ │ │ │ ├── ui-icons_8DC262_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_eeeeee_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── start │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_55_999999_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_45_0078ae_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_f8da4e_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_79c9ec_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_45_e14f1c_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_50_6eac2c_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_75_2191c0_500x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ │ │ ├── ui-icons_0078ae_256x240.png │ │ │ │ │ ├── ui-icons_056b93_256x240.png │ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ │ ├── ui-icons_e0fdff_256x240.png │ │ │ │ │ ├── ui-icons_f5e175_256x240.png │ │ │ │ │ ├── ui-icons_f7a50d_256x240.png │ │ │ │ │ └── ui-icons_fcd113_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── sunny │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-medium_20_d34d17_40x40.png │ │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_45_817865_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_60_fece2f_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_70_ffdd57_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_90_fff9e5_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_feeebd_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_30_ffffff_1x100.png │ │ │ │ │ ├── ui-icons_3d3d3d_256x240.png │ │ │ │ │ ├── ui-icons_bd7b00_256x240.png │ │ │ │ │ ├── ui-icons_d19405_256x240.png │ │ │ │ │ ├── ui-icons_eb990f_256x240.png │ │ │ │ │ ├── ui-icons_ed9f26_256x240.png │ │ │ │ │ ├── ui-icons_fadc7a_256x240.png │ │ │ │ │ └── ui-icons_ffe180_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── swanky-purse │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diamond_10_4f4221_10x8.png │ │ │ │ │ ├── ui-bg_diamond_20_372806_10x8.png │ │ │ │ │ ├── ui-bg_diamond_25_675423_10x8.png │ │ │ │ │ ├── ui-bg_diamond_25_d5ac5d_10x8.png │ │ │ │ │ ├── ui-bg_diamond_8_261803_10x8.png │ │ │ │ │ ├── ui-bg_diamond_8_443113_10x8.png │ │ │ │ │ ├── ui-bg_flat_75_ddd4b0_40x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png │ │ │ │ │ ├── ui-icons_070603_256x240.png │ │ │ │ │ ├── ui-icons_e8e2b5_256x240.png │ │ │ │ │ ├── ui-icons_e9cd86_256x240.png │ │ │ │ │ ├── ui-icons_efec9f_256x240.png │ │ │ │ │ ├── ui-icons_f2ec64_256x240.png │ │ │ │ │ ├── ui-icons_f9f2bd_256x240.png │ │ │ │ │ └── ui-icons_ff7519_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── trontastic │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-small_50_262626_40x40.png │ │ │ │ │ ├── ui-bg_flat_0_303030_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_4c4c4c_40x100.png │ │ │ │ │ ├── ui-bg_glass_40_0a0a0a_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_f1fbe5_1x400.png │ │ │ │ │ ├── ui-bg_glass_60_000000_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_55_000000_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_85_9fda58_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_95_f6ecd5_500x100.png │ │ │ │ │ ├── ui-icons_000000_256x240.png │ │ │ │ │ ├── ui-icons_1f1f1f_256x240.png │ │ │ │ │ ├── ui-icons_9fda58_256x240.png │ │ │ │ │ ├── ui-icons_b8ec79_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── ui-darkness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── ui-lightness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ └── vader │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_16_121212_500x100.png │ │ │ │ ├── ui-bg_highlight-hard_15_888888_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_55_555555_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_35_adadad_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_60_dddddd_1x100.png │ │ │ │ ├── ui-bg_inset-soft_15_121212_1x100.png │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ ├── ui-icons_aaaaaa_256x240.png │ │ │ │ ├── ui-icons_bbbbbb_256x240.png │ │ │ │ ├── ui-icons_c98000_256x240.png │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ └── ui-icons_f29a00_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ └── ui │ │ │ ├── .jshintrc │ │ │ ├── accordion.js │ │ │ ├── autocomplete.js │ │ │ ├── button.js │ │ │ ├── core.js │ │ │ ├── datepicker.js │ │ │ ├── dialog.js │ │ │ ├── draggable.js │ │ │ ├── droppable.js │ │ │ ├── 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 │ │ │ ├── effect.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 │ │ │ ├── menu.js │ │ │ ├── minified │ │ │ ├── accordion.min.js │ │ │ ├── autocomplete.min.js │ │ │ ├── button.min.js │ │ │ ├── core.min.js │ │ │ ├── datepicker.min.js │ │ │ ├── dialog.min.js │ │ │ ├── draggable.min.js │ │ │ ├── droppable.min.js │ │ │ ├── effect-blind.min.js │ │ │ ├── effect-bounce.min.js │ │ │ ├── effect-clip.min.js │ │ │ ├── effect-drop.min.js │ │ │ ├── effect-explode.min.js │ │ │ ├── effect-fade.min.js │ │ │ ├── effect-fold.min.js │ │ │ ├── effect-highlight.min.js │ │ │ ├── effect-puff.min.js │ │ │ ├── effect-pulsate.min.js │ │ │ ├── effect-scale.min.js │ │ │ ├── effect-shake.min.js │ │ │ ├── effect-size.min.js │ │ │ ├── effect-slide.min.js │ │ │ ├── effect-transfer.min.js │ │ │ ├── effect.min.js │ │ │ ├── i18n │ │ │ │ ├── datepicker-af.min.js │ │ │ │ ├── datepicker-ar-DZ.min.js │ │ │ │ ├── datepicker-ar.min.js │ │ │ │ ├── datepicker-az.min.js │ │ │ │ ├── datepicker-be.min.js │ │ │ │ ├── datepicker-bg.min.js │ │ │ │ ├── datepicker-bs.min.js │ │ │ │ ├── datepicker-ca.min.js │ │ │ │ ├── datepicker-cs.min.js │ │ │ │ ├── datepicker-cy-GB.min.js │ │ │ │ ├── datepicker-da.min.js │ │ │ │ ├── datepicker-de.min.js │ │ │ │ ├── datepicker-el.min.js │ │ │ │ ├── datepicker-en-AU.min.js │ │ │ │ ├── datepicker-en-GB.min.js │ │ │ │ ├── datepicker-en-NZ.min.js │ │ │ │ ├── datepicker-eo.min.js │ │ │ │ ├── datepicker-es.min.js │ │ │ │ ├── datepicker-et.min.js │ │ │ │ ├── datepicker-eu.min.js │ │ │ │ ├── datepicker-fa.min.js │ │ │ │ ├── datepicker-fi.min.js │ │ │ │ ├── datepicker-fo.min.js │ │ │ │ ├── datepicker-fr-CA.min.js │ │ │ │ ├── datepicker-fr-CH.min.js │ │ │ │ ├── datepicker-fr.min.js │ │ │ │ ├── datepicker-gl.min.js │ │ │ │ ├── datepicker-he.min.js │ │ │ │ ├── datepicker-hi.min.js │ │ │ │ ├── datepicker-hr.min.js │ │ │ │ ├── datepicker-hu.min.js │ │ │ │ ├── datepicker-hy.min.js │ │ │ │ ├── datepicker-id.min.js │ │ │ │ ├── datepicker-is.min.js │ │ │ │ ├── datepicker-it-CH.min.js │ │ │ │ ├── datepicker-it.min.js │ │ │ │ ├── datepicker-ja.min.js │ │ │ │ ├── datepicker-ka.min.js │ │ │ │ ├── datepicker-kk.min.js │ │ │ │ ├── datepicker-km.min.js │ │ │ │ ├── datepicker-ko.min.js │ │ │ │ ├── datepicker-ky.min.js │ │ │ │ ├── datepicker-lb.min.js │ │ │ │ ├── datepicker-lt.min.js │ │ │ │ ├── datepicker-lv.min.js │ │ │ │ ├── datepicker-mk.min.js │ │ │ │ ├── datepicker-ml.min.js │ │ │ │ ├── datepicker-ms.min.js │ │ │ │ ├── datepicker-nb.min.js │ │ │ │ ├── datepicker-nl-BE.min.js │ │ │ │ ├── datepicker-nl.min.js │ │ │ │ ├── datepicker-nn.min.js │ │ │ │ ├── datepicker-no.min.js │ │ │ │ ├── datepicker-pl.min.js │ │ │ │ ├── datepicker-pt-BR.min.js │ │ │ │ ├── datepicker-pt.min.js │ │ │ │ ├── datepicker-rm.min.js │ │ │ │ ├── datepicker-ro.min.js │ │ │ │ ├── datepicker-ru.min.js │ │ │ │ ├── datepicker-sk.min.js │ │ │ │ ├── datepicker-sl.min.js │ │ │ │ ├── datepicker-sq.min.js │ │ │ │ ├── datepicker-sr-SR.min.js │ │ │ │ ├── datepicker-sr.min.js │ │ │ │ ├── datepicker-sv.min.js │ │ │ │ ├── datepicker-ta.min.js │ │ │ │ ├── datepicker-th.min.js │ │ │ │ ├── datepicker-tj.min.js │ │ │ │ ├── datepicker-tr.min.js │ │ │ │ ├── datepicker-uk.min.js │ │ │ │ ├── datepicker-vi.min.js │ │ │ │ ├── datepicker-zh-CN.min.js │ │ │ │ ├── datepicker-zh-HK.min.js │ │ │ │ └── datepicker-zh-TW.min.js │ │ │ ├── menu.min.js │ │ │ ├── mouse.min.js │ │ │ ├── position.min.js │ │ │ ├── progressbar.min.js │ │ │ ├── resizable.min.js │ │ │ ├── selectable.min.js │ │ │ ├── selectmenu.min.js │ │ │ ├── slider.min.js │ │ │ ├── sortable.min.js │ │ │ ├── spinner.min.js │ │ │ ├── tabs.min.js │ │ │ ├── tooltip.min.js │ │ │ └── widget.min.js │ │ │ ├── mouse.js │ │ │ ├── position.js │ │ │ ├── progressbar.js │ │ │ ├── resizable.js │ │ │ ├── selectable.js │ │ │ ├── selectmenu.js │ │ │ ├── slider.js │ │ │ ├── sortable.js │ │ │ ├── spinner.js │ │ │ ├── tabs.js │ │ │ ├── tooltip.js │ │ │ └── widget.js │ ├── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── core.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ ├── jquery.slim.min.map │ │ │ └── jquery.socialShare.js │ │ ├── external │ │ │ └── sizzle │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ └── src │ │ │ ├── .eslintrc.json │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── DOMEval.js │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── nodeName.js │ │ │ ├── parseHTML.js │ │ │ ├── ready-no-deferred.js │ │ │ ├── ready.js │ │ │ ├── readyException.js │ │ │ ├── stripAndCollapse.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHiddenWithinTree.js │ │ │ │ ├── rmargin.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ └── var │ │ │ │ ├── acceptData.js │ │ │ │ ├── dataPriv.js │ │ │ │ └── dataUser.js │ │ │ ├── deferred.js │ │ │ ├── deferred │ │ │ └── exceptionHook.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ ├── focusin.js │ │ │ ├── support.js │ │ │ └── trigger.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── ObjectFunctionString.js │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── fnToString.js │ │ │ ├── getProto.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnothtmlwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ ├── jvectormap │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── LICENSE-AGPL │ │ ├── LICENSE-COMMERCIAL │ │ ├── README.md │ │ ├── build.sh │ │ ├── converter │ │ │ ├── converter.py │ │ │ ├── processor.py │ │ │ └── simplifier.py │ │ ├── jquery-jvectormap.css │ │ ├── jquery-jvectormap.js │ │ ├── jvectormap.jquery.json │ │ ├── lib │ │ │ └── jquery-mousewheel.js │ │ ├── src │ │ │ ├── abstract-canvas-element.js │ │ │ ├── abstract-element.js │ │ │ ├── abstract-shape-element.js │ │ │ ├── color-scale.js │ │ │ ├── data-series.js │ │ │ ├── jvectormap.js │ │ │ ├── legend.js │ │ │ ├── map-object.js │ │ │ ├── map.js │ │ │ ├── marker.js │ │ │ ├── multimap.js │ │ │ ├── numeric-scale.js │ │ │ ├── ordinal-scale.js │ │ │ ├── proj.js │ │ │ ├── region.js │ │ │ ├── simple-scale.js │ │ │ ├── svg-canvas-element.js │ │ │ ├── svg-circle-element.js │ │ │ ├── svg-element.js │ │ │ ├── svg-group-element.js │ │ │ ├── svg-image-element.js │ │ │ ├── svg-path-element.js │ │ │ ├── svg-shape-element.js │ │ │ ├── svg-text-element.js │ │ │ ├── vector-canvas.js │ │ │ ├── vml-canvas-element.js │ │ │ ├── vml-circle-element.js │ │ │ ├── vml-element.js │ │ │ ├── vml-group-element.js │ │ │ ├── vml-image-element.js │ │ │ ├── vml-path-element.js │ │ │ └── vml-shape-element.js │ │ └── tests │ │ │ ├── assets │ │ │ ├── bg-red-green.png │ │ │ ├── bg-yellow-blue.png │ │ │ ├── icon-bank.png │ │ │ ├── icon-factory.png │ │ │ ├── jquery-1.8.2.js │ │ │ ├── jquery-jvectormap-data-us-lcc-en.js │ │ │ ├── jquery-jvectormap-map.js │ │ │ ├── jquery-jvectormap-us-aea-en.js │ │ │ ├── jquery-jvectormap-us-lcc-en.js │ │ │ ├── jquery-jvectormap-us-merc-en.js │ │ │ ├── jquery-jvectormap-us-mill-en.js │ │ │ ├── jquery-jvectormap-world-mill-en.js │ │ │ └── us │ │ │ │ ├── jquery-jvectormap-data-us-ak-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-al-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ar-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-az-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ca-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-co-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ct-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-dc-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-de-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-fl-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ga-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-hi-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ia-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-id-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-il-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-in-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ks-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ky-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-la-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ma-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-md-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-me-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-mi-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-mn-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-mo-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ms-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-mt-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-nc-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-nd-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ne-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-nh-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-nj-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-nm-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-nv-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ny-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-oh-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ok-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-or-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-pa-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ri-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-sc-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-sd-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-tn-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-tx-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ut-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-va-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-vt-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-wa-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-wi-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-wv-lcc-en.js │ │ │ │ └── jquery-jvectormap-data-us-wy-lcc-en.js │ │ │ ├── basic.html │ │ │ ├── build.html │ │ │ ├── custom.html │ │ │ ├── drill-down.html │ │ │ ├── hidden.html │ │ │ ├── markers.html │ │ │ ├── memory.html │ │ │ ├── processor │ │ │ ├── continents.json │ │ │ ├── continents_wb.json │ │ │ ├── france_regions_2016.json │ │ │ ├── russia.json │ │ │ ├── russia_fd.json │ │ │ └── tz.json │ │ │ ├── reverse-projection.html │ │ │ ├── us.json │ │ │ └── world.json │ ├── menu-editor │ │ ├── bootstrap-iconpicker.min.js │ │ ├── jquery-menu-editor-copy.jsxx │ │ └── jquery-menu-editor.js │ ├── mocha │ │ ├── .bower.json │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── media │ │ │ └── logo.svg │ │ ├── mocha.css │ │ └── mocha.js │ ├── moment │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── 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-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 │ │ │ ├── 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 │ │ │ ├── th.js │ │ │ ├── tl-ph.js │ │ │ ├── tlh.js │ │ │ ├── tr.js │ │ │ ├── tzl.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm.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.js │ │ │ ├── locales.min.js │ │ │ ├── moment-with-locales.js │ │ │ ├── moment-with-locales.min.js │ │ │ └── moment.min.js │ │ ├── moment.d.ts │ │ ├── moment.js │ │ ├── src │ │ │ ├── lib │ │ │ │ ├── create │ │ │ │ │ ├── check-overflow.js │ │ │ │ │ ├── date-from-array.js │ │ │ │ │ ├── from-anything.js │ │ │ │ │ ├── from-array.js │ │ │ │ │ ├── from-object.js │ │ │ │ │ ├── from-string-and-array.js │ │ │ │ │ ├── from-string-and-format.js │ │ │ │ │ ├── from-string.js │ │ │ │ │ ├── local.js │ │ │ │ │ ├── parsing-flags.js │ │ │ │ │ ├── utc.js │ │ │ │ │ └── valid.js │ │ │ │ ├── duration │ │ │ │ │ ├── abs.js │ │ │ │ │ ├── add-subtract.js │ │ │ │ │ ├── as.js │ │ │ │ │ ├── bubble.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── create.js │ │ │ │ │ ├── duration.js │ │ │ │ │ ├── get.js │ │ │ │ │ ├── humanize.js │ │ │ │ │ ├── iso-string.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ └── valid.js │ │ │ │ ├── format │ │ │ │ │ └── format.js │ │ │ │ ├── locale │ │ │ │ │ ├── base-config.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── formats.js │ │ │ │ │ ├── invalid.js │ │ │ │ │ ├── lists.js │ │ │ │ │ ├── locale.js │ │ │ │ │ ├── locales.js │ │ │ │ │ ├── ordinal.js │ │ │ │ │ ├── pre-post-format.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ ├── relative.js │ │ │ │ │ └── set.js │ │ │ │ ├── moment │ │ │ │ │ ├── add-subtract.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── compare.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── creation-data.js │ │ │ │ │ ├── diff.js │ │ │ │ │ ├── format.js │ │ │ │ │ ├── from.js │ │ │ │ │ ├── get-set.js │ │ │ │ │ ├── locale.js │ │ │ │ │ ├── min-max.js │ │ │ │ │ ├── moment.js │ │ │ │ │ ├── now.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ ├── start-end-of.js │ │ │ │ │ ├── to-type.js │ │ │ │ │ ├── to.js │ │ │ │ │ └── valid.js │ │ │ │ ├── parse │ │ │ │ │ ├── regex.js │ │ │ │ │ └── token.js │ │ │ │ ├── units │ │ │ │ │ ├── aliases.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── day-of-month.js │ │ │ │ │ ├── day-of-week.js │ │ │ │ │ ├── day-of-year.js │ │ │ │ │ ├── hour.js │ │ │ │ │ ├── millisecond.js │ │ │ │ │ ├── minute.js │ │ │ │ │ ├── month.js │ │ │ │ │ ├── offset.js │ │ │ │ │ ├── priorities.js │ │ │ │ │ ├── quarter.js │ │ │ │ │ ├── second.js │ │ │ │ │ ├── timestamp.js │ │ │ │ │ ├── timezone.js │ │ │ │ │ ├── units.js │ │ │ │ │ ├── week-calendar-utils.js │ │ │ │ │ ├── week-year.js │ │ │ │ │ ├── week.js │ │ │ │ │ └── year.js │ │ │ │ └── utils │ │ │ │ │ ├── abs-ceil.js │ │ │ │ │ ├── abs-floor.js │ │ │ │ │ ├── abs-round.js │ │ │ │ │ ├── compare-arrays.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── deprecate.js │ │ │ │ │ ├── extend.js │ │ │ │ │ ├── has-own-prop.js │ │ │ │ │ ├── hooks.js │ │ │ │ │ ├── index-of.js │ │ │ │ │ ├── is-array.js │ │ │ │ │ ├── is-date.js │ │ │ │ │ ├── is-function.js │ │ │ │ │ ├── is-number.js │ │ │ │ │ ├── is-object-empty.js │ │ │ │ │ ├── is-object.js │ │ │ │ │ ├── is-undefined.js │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── mod.js │ │ │ │ │ ├── some.js │ │ │ │ │ ├── to-int.js │ │ │ │ │ └── zero-fill.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-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 │ │ │ │ ├── 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 │ │ │ │ ├── th.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.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 │ │ │ └── moment.js │ │ └── templates │ │ │ ├── default.js │ │ │ ├── locale-header.js │ │ │ └── test-header.js │ ├── morris.js │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── bower.travis.json │ │ ├── examples │ │ │ ├── _template.html │ │ │ ├── area-as-line.html │ │ │ ├── area.html │ │ │ ├── bar-colors.html │ │ │ ├── bar-no-axes.html │ │ │ ├── bar.html │ │ │ ├── days.html │ │ │ ├── decimal-custom-hover.html │ │ │ ├── diagonal-xlabels-bar.html │ │ │ ├── diagonal-xlabels.html │ │ │ ├── donut-colors.html │ │ │ ├── donut-formatter.html │ │ │ ├── donut.html │ │ │ ├── dst.html │ │ │ ├── events.html │ │ │ ├── goals.html │ │ │ ├── lib │ │ │ │ ├── example.css │ │ │ │ └── example.js │ │ │ ├── months-no-smooth.html │ │ │ ├── negative.html │ │ │ ├── no-grid.html │ │ │ ├── non-continuous.html │ │ │ ├── non-date.html │ │ │ ├── quarters.html │ │ │ ├── resize.html │ │ │ ├── stacked_bars.html │ │ │ ├── timestamps.html │ │ │ ├── updating.html │ │ │ ├── weeks.html │ │ │ └── years.html │ │ ├── less │ │ │ └── morris.core.less │ │ ├── lib │ │ │ ├── morris.area.coffee │ │ │ ├── morris.bar.coffee │ │ │ ├── morris.coffee │ │ │ ├── morris.donut.coffee │ │ │ ├── morris.grid.coffee │ │ │ ├── morris.hover.coffee │ │ │ └── morris.line.coffee │ │ ├── morris.css │ │ ├── morris.js │ │ ├── morris.min.js │ │ ├── package.json │ │ └── spec │ │ │ ├── lib │ │ │ ├── area │ │ │ │ └── area_spec.coffee │ │ │ ├── bar │ │ │ │ ├── bar_spec.coffee │ │ │ │ └── colours.coffee │ │ │ ├── commas_spec.coffee │ │ │ ├── donut │ │ │ │ └── donut_spec.coffee │ │ │ ├── grid │ │ │ │ ├── auto_grid_lines_spec.coffee │ │ │ │ ├── set_data_spec.coffee │ │ │ │ └── y_label_format_spec.coffee │ │ │ ├── hover_spec.coffee │ │ │ ├── label_series_spec.coffee │ │ │ ├── line │ │ │ │ └── line_spec.coffee │ │ │ ├── pad_spec.coffee │ │ │ └── parse_time_spec.coffee │ │ │ ├── specs.html │ │ │ ├── support │ │ │ └── placeholder.coffee │ │ │ └── viz │ │ │ ├── examples.js │ │ │ ├── exemplary │ │ │ ├── area0.png │ │ │ ├── bar0.png │ │ │ ├── line0.png │ │ │ └── stacked_bar0.png │ │ │ ├── run.sh │ │ │ ├── test.html │ │ │ └── visual_specs.js │ ├── raphael │ │ ├── .bower.json │ │ ├── bower.json │ │ ├── dev │ │ │ ├── banner.txt │ │ │ ├── raphael.amd.js │ │ │ ├── raphael.core.js │ │ │ ├── raphael.svg.js │ │ │ ├── raphael.vml.js │ │ │ └── test │ │ │ │ ├── svg │ │ │ │ └── dom.js │ │ │ │ └── vml │ │ │ │ └── dom.js │ │ ├── license.txt │ │ ├── raphael.js │ │ ├── raphael.min.js │ │ ├── raphael.no-deps.js │ │ ├── raphael.no-deps.min.js │ │ ├── webpack.config.js │ │ └── yarn.lock │ └── select2 │ │ ├── .bower.json │ │ ├── .editorconfig │ │ ├── .github │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .jshintignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gruntfile.js │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── dist │ │ ├── css │ │ │ ├── select2.css │ │ │ └── select2.min.css │ │ └── js │ │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bs.js │ │ │ ├── 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 │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ │ ├── select2.full.js │ │ │ ├── select2.full.min.js │ │ │ ├── select2.js │ │ │ └── select2.min.js │ │ ├── docs │ │ ├── README.md │ │ ├── announcements-4.0.html │ │ ├── community.html │ │ ├── examples.html │ │ ├── index.html │ │ ├── options-old.html │ │ └── options.html │ │ ├── package.json │ │ ├── select2.jquery.json │ │ ├── src │ │ ├── js │ │ │ ├── banner.end.js │ │ │ ├── banner.start.js │ │ │ ├── jquery.mousewheel.shim.js │ │ │ ├── jquery.select2.js │ │ │ ├── jquery.shim.js │ │ │ ├── select2 │ │ │ │ ├── compat │ │ │ │ │ ├── containerCss.js │ │ │ │ │ ├── dropdownCss.js │ │ │ │ │ ├── initSelection.js │ │ │ │ │ ├── inputData.js │ │ │ │ │ ├── matcher.js │ │ │ │ │ ├── query.js │ │ │ │ │ └── utils.js │ │ │ │ ├── core.js │ │ │ │ ├── data │ │ │ │ │ ├── ajax.js │ │ │ │ │ ├── array.js │ │ │ │ │ ├── base.js │ │ │ │ │ ├── maximumInputLength.js │ │ │ │ │ ├── maximumSelectionLength.js │ │ │ │ │ ├── minimumInputLength.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── tags.js │ │ │ │ │ └── tokenizer.js │ │ │ │ ├── defaults.js │ │ │ │ ├── diacritics.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── dropdown │ │ │ │ │ ├── attachBody.js │ │ │ │ │ ├── attachContainer.js │ │ │ │ │ ├── closeOnSelect.js │ │ │ │ │ ├── hidePlaceholder.js │ │ │ │ │ ├── infiniteScroll.js │ │ │ │ │ ├── minimumResultsForSearch.js │ │ │ │ │ ├── search.js │ │ │ │ │ ├── selectOnClose.js │ │ │ │ │ └── stopPropagation.js │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── 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 │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ ├── keys.js │ │ │ │ ├── options.js │ │ │ │ ├── results.js │ │ │ │ ├── selection │ │ │ │ │ ├── allowClear.js │ │ │ │ │ ├── base.js │ │ │ │ │ ├── clickMask.js │ │ │ │ │ ├── eventRelay.js │ │ │ │ │ ├── multiple.js │ │ │ │ │ ├── placeholder.js │ │ │ │ │ ├── search.js │ │ │ │ │ ├── single.js │ │ │ │ │ └── stopPropagation.js │ │ │ │ ├── translation.js │ │ │ │ └── utils.js │ │ │ ├── wrapper.end.js │ │ │ └── wrapper.start.js │ │ └── scss │ │ │ ├── _dropdown.scss │ │ │ ├── _multiple.scss │ │ │ ├── _single.scss │ │ │ ├── core.scss │ │ │ ├── mixins │ │ │ └── _gradients.scss │ │ │ └── theme │ │ │ ├── classic │ │ │ ├── _defaults.scss │ │ │ ├── _multiple.scss │ │ │ ├── _single.scss │ │ │ └── layout.scss │ │ │ └── default │ │ │ ├── _multiple.scss │ │ │ ├── _single.scss │ │ │ └── layout.scss │ │ ├── tests │ │ ├── a11y │ │ │ ├── search-tests.js │ │ │ └── selection-tests.js │ │ ├── data │ │ │ ├── array-tests.js │ │ │ ├── base-tests.js │ │ │ ├── inputData-tests.js │ │ │ ├── maximumInputLength-tests.js │ │ │ ├── maximumSelectionLength-tests.js │ │ │ ├── minimumInputLength-tests.js │ │ │ ├── select-tests.js │ │ │ ├── tags-tests.js │ │ │ └── tokenizer-tests.js │ │ ├── dropdown │ │ │ ├── dropdownCss-tests.js │ │ │ ├── positioning-tests.js │ │ │ ├── selectOnClose-tests.js │ │ │ └── stopPropagation-tests.js │ │ ├── helpers.js │ │ ├── integration.html │ │ ├── integration │ │ │ ├── dom-changes.js │ │ │ ├── jquery-calls.js │ │ │ └── select2-methods.js │ │ ├── options │ │ │ ├── ajax-tests.js │ │ │ ├── data-tests.js │ │ │ ├── deprecated-tests.js │ │ │ ├── translation-tests.js │ │ │ └── width-tests.js │ │ ├── results │ │ │ └── focusing-tests.js │ │ ├── selection │ │ │ ├── allowClear-tests.js │ │ │ ├── containerCss-tests.js │ │ │ ├── multiple-tests.js │ │ │ ├── placeholder-tests.js │ │ │ ├── search-tests.js │ │ │ ├── single-tests.js │ │ │ └── stopPropagation-tests.js │ │ ├── unit.html │ │ ├── utils │ │ │ ├── decorator-tests.js │ │ │ └── escapeMarkup-tests.js │ │ └── vendor │ │ │ ├── jquery-1.7.2.js │ │ │ ├── qunit-1.23.1.css │ │ │ └── qunit-1.23.1.js │ │ └── vendor │ │ └── jquery-2.1.0.js ├── css │ ├── admin-style.css │ ├── app.css │ ├── bagan.css │ ├── custom.css │ ├── desa.css │ ├── placeholder-loading.css │ ├── placeholder-loading.min.css │ ├── slider.css │ ├── swiper.min.css │ └── upload_images.less ├── icon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── android-chrome-maskable-192x192.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── safari-pinned-tab.svg │ └── social.png ├── img │ ├── bsre.png │ ├── cacat_logo.png │ ├── download.png │ ├── fb.png │ ├── layanan │ │ ├── logo.png │ │ └── stempel.png │ ├── login.png │ ├── logo.png │ ├── no-image.png │ ├── no-profile.png │ ├── opendesa.png │ └── pengguna │ │ ├── kuser.png │ │ └── wuser.png ├── index.php ├── installer │ ├── css │ │ ├── sass │ │ │ ├── _variables.sass │ │ │ └── style.sass │ │ ├── scss │ │ │ ├── _variables.scss │ │ │ ├── font-awesome │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ │ └── style.scss │ │ ├── style.css │ │ ├── style.css.map │ │ ├── style.min.css │ │ └── style.min.css.map │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ └── img │ │ ├── background.png │ │ ├── favicon │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── favicon-96x96.png │ │ └── pattern.png ├── js │ ├── admin.js │ ├── app.js │ ├── custom.js │ ├── github-buttons │ │ └── buttons.min.js │ ├── html2canvas.min.js │ ├── leaflet │ │ ├── L.Control.Locate.css │ │ ├── L.Control.Locate.css.map │ │ ├── L.Control.Locate.mapbox.css │ │ ├── L.Control.Locate.mapbox.css.map │ │ ├── L.Control.Locate.mapbox.min.css │ │ ├── L.Control.Locate.mapbox.min.css.map │ │ ├── L.Control.Locate.min.css │ │ ├── L.Control.Locate.min.css.map │ │ ├── L.Control.Locate.min.js │ │ ├── L.Control.Locate.min.js.map │ │ ├── MarkerCluster.Default.css │ │ ├── MarkerCluster.css │ │ ├── images │ │ │ ├── gpx.png │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ ├── marker-shadow.png │ │ │ ├── spritesheet-2x.png │ │ │ ├── spritesheet.png │ │ │ └── spritesheet.svg │ │ ├── leaflet-geoman.css │ │ ├── leaflet-geoman.min.js │ │ ├── leaflet-providers.js │ │ ├── leaflet-src.esm.js │ │ ├── leaflet-src.esm.js.map │ │ ├── leaflet-src.js │ │ ├── leaflet-src.js.map │ │ ├── leaflet.css │ │ ├── leaflet.draw-src.css │ │ ├── leaflet.draw-src.js │ │ ├── leaflet.draw-src.map │ │ ├── leaflet.draw.css │ │ ├── leaflet.draw.js │ │ ├── leaflet.filelayer.js │ │ ├── leaflet.js │ │ ├── leaflet.js.map │ │ ├── leaflet.markercluster-src.js │ │ ├── leaflet.markercluster-src.js.map │ │ ├── leaflet.markercluster.js │ │ ├── leaflet.markercluster.js.map │ │ ├── togeojson.js │ │ ├── togpx.js │ │ └── turf.min.js │ ├── sweetalert2 │ │ ├── sweetalert2.all.min.js │ │ └── sweetalert2.min.css │ ├── swiper.min.js │ ├── tinymce │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── icons │ │ │ └── default │ │ │ │ ├── icons.js │ │ │ │ ├── icons.min.js │ │ │ │ └── index.js │ │ ├── license.txt │ │ ├── models │ │ │ └── dom │ │ │ │ ├── index.js │ │ │ │ ├── model.js │ │ │ │ └── model.min.js │ │ ├── package.json │ │ ├── plugins │ │ │ ├── accordion │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── advlist │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── anchor │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autolink │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autoresize │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autosave │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── bbcode │ │ │ │ └── plugin.min.js │ │ │ ├── charmap │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── code │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── codesample │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── colorpicker │ │ │ │ └── plugin.min.js │ │ │ ├── contextmenu │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── emoticons │ │ │ │ ├── index.js │ │ │ │ ├── js │ │ │ │ │ ├── emojiimages.js │ │ │ │ │ ├── emojiimages.min.js │ │ │ │ │ ├── emojis.js │ │ │ │ │ └── emojis.min.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullpage │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── help │ │ │ │ ├── index.js │ │ │ │ ├── js │ │ │ │ │ └── i18n │ │ │ │ │ │ └── keynav │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg_BG.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr_FR.js │ │ │ │ │ │ ├── he_IL.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu_HU.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── kk.js │ │ │ │ │ │ ├── ko_KR.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb_NO.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt_BR.js │ │ │ │ │ │ ├── pt_PT.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl_SI.js │ │ │ │ │ │ ├── sv_SE.js │ │ │ │ │ │ ├── th_TH.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh_CN.js │ │ │ │ │ │ └── zh_TW.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── hr │ │ │ │ └── plugin.min.js │ │ │ ├── image │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── imagetools │ │ │ │ └── plugin.min.js │ │ │ ├── importcss │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── insertdatetime │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── kodeisian │ │ │ │ └── plugin.min.js │ │ │ ├── laporan_keuangan │ │ │ │ └── plugin.min.js │ │ │ ├── legacyoutput │ │ │ │ └── plugin.min.js │ │ │ ├── link │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── lists │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── nonbreaking │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── noneditable │ │ │ │ └── plugin.min.js │ │ │ ├── pagebreak │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── paste │ │ │ │ └── plugin.min.js │ │ │ ├── penerima_bantuan │ │ │ │ └── plugin.min.js │ │ │ ├── preview │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── print │ │ │ │ └── plugin.min.js │ │ │ ├── quickbars │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── responsivefilemanager │ │ │ │ ├── img │ │ │ │ │ └── insertfile.gif │ │ │ │ └── plugin.min.js │ │ │ ├── salintemplate │ │ │ │ └── plugin.min.js │ │ │ ├── save │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── searchreplace │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── sotk │ │ │ │ └── plugin.min.js │ │ │ ├── spellchecker │ │ │ │ └── plugin.min.js │ │ │ ├── tabfocus │ │ │ │ └── plugin.min.js │ │ │ ├── table │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── template │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── textcolor │ │ │ │ └── plugin.min.js │ │ │ ├── textpattern │ │ │ │ └── plugin.min.js │ │ │ ├── toc │ │ │ │ └── plugin.min.js │ │ │ ├── visualblocks │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualchars │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ └── wordcount │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ ├── skins │ │ │ ├── content │ │ │ │ ├── dark │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ ├── default │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ ├── document │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ ├── tinymce-5-dark │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ ├── tinymce-5 │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ └── writer │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ └── ui │ │ │ │ ├── oxide-dark │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ │ ├── oxide │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ │ ├── tinymce-5-dark │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ │ └── tinymce-5 │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ ├── themes │ │ │ └── silver │ │ │ │ ├── index.js │ │ │ │ ├── theme.js │ │ │ │ └── theme.min.js │ │ ├── tinymce.d.ts │ │ ├── tinymce.js │ │ └── tinymce.min.js │ └── upload_images.js ├── manifest.webmanifest ├── mix-manifest.json ├── robots.txt ├── swagger-ui │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── index.css │ ├── index.html │ ├── oauth2-redirect.html │ ├── swagger-initializer.js │ ├── swagger-ui-bundle.js │ ├── swagger-ui-bundle.js.map │ ├── swagger-ui-es-bundle-core.js │ ├── swagger-ui-es-bundle-core.js.map │ ├── swagger-ui-es-bundle.js │ ├── swagger-ui-es-bundle.js.map │ ├── swagger-ui-standalone-preset.js │ ├── swagger-ui-standalone-preset.js.map │ ├── swagger-ui.css │ ├── swagger-ui.css.map │ ├── swagger-ui.js │ └── swagger-ui.js.map ├── themes │ └── opendk │ │ └── default │ │ ├── css │ │ └── app.css │ │ ├── img │ │ └── .gitkeep │ │ ├── js │ │ └── .gitkeep │ │ └── screenshot.png └── vendor │ ├── jsvalidation │ └── js │ │ ├── jsvalidation.js │ │ ├── jsvalidation.js.map │ │ ├── jsvalidation.min.js │ │ └── jsvalidation.min.js.map │ ├── laravel-filemanager │ ├── css │ │ ├── cropper.min.css │ │ ├── dropzone.min.css │ │ ├── lfm.css │ │ └── mime-icons.min.css │ ├── files │ │ ├── .gitkeep │ │ ├── adobe.pdf │ │ ├── folder-1 │ │ │ └── sleeping-dog.jpg │ │ └── word.docx │ ├── images │ │ ├── .gitkeep │ │ └── test-folder │ │ │ ├── sleeping-dog.jpg │ │ │ └── thumbs │ │ │ └── sleeping-dog.jpg │ ├── img │ │ ├── 152px color.png │ │ ├── 72px color.png │ │ ├── 92px color.png │ │ ├── Logomark color.png │ │ ├── folder.png │ │ └── loader.svg │ └── js │ │ ├── cropper.min.js │ │ ├── dropzone.min.js │ │ ├── filemanager.js │ │ ├── filemanager.min.js │ │ ├── script.js │ │ └── stand-alone-button.js │ └── scribe │ ├── css │ ├── theme-default.print.css │ └── theme-default.style.css │ ├── images │ └── navbar.png │ └── js │ ├── theme-default-5.5.0.js │ └── tryitout-5.5.0.js ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── ExampleComponent.vue │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ ├── id │ │ ├── auth.php │ │ ├── installer_messages.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── vendor │ │ ├── backup │ │ ├── ar │ │ │ └── notifications.php │ │ ├── bg │ │ │ └── notifications.php │ │ ├── bn │ │ │ └── notifications.php │ │ ├── cs │ │ │ └── notifications.php │ │ ├── da │ │ │ └── notifications.php │ │ ├── de │ │ │ └── notifications.php │ │ ├── en │ │ │ └── notifications.php │ │ ├── es │ │ │ └── notifications.php │ │ ├── fa │ │ │ └── notifications.php │ │ ├── fi │ │ │ └── notifications.php │ │ ├── fr │ │ │ └── notifications.php │ │ ├── he │ │ │ └── notifications.php │ │ ├── hi │ │ │ └── notifications.php │ │ ├── hr │ │ │ └── notifications.php │ │ ├── id │ │ │ └── notifications.php │ │ ├── it │ │ │ └── notifications.php │ │ ├── ja │ │ │ └── notifications.php │ │ ├── nl │ │ │ └── notifications.php │ │ ├── no │ │ │ └── notifications.php │ │ ├── pl │ │ │ └── notifications.php │ │ ├── pt-BR │ │ │ └── notifications.php │ │ ├── pt │ │ │ └── notifications.php │ │ ├── ro │ │ │ └── notifications.php │ │ ├── ru │ │ │ └── notifications.php │ │ ├── tr │ │ │ └── notifications.php │ │ ├── uk │ │ │ └── notifications.php │ │ ├── zh-CN │ │ │ └── notifications.php │ │ └── zh-TW │ │ │ └── notifications.php │ │ └── twofactor-auth │ │ ├── en │ │ └── twofactor-auth.php │ │ └── nl │ │ └── twofactor-auth.php └── views │ ├── auth │ ├── 2fa │ │ ├── activate.blade.php │ │ ├── settings.blade.php │ │ ├── verify-activation.blade.php │ │ └── verify-login.blade.php │ ├── captcha.blade.php │ ├── change.blade.php │ ├── emails │ │ └── activate.blade.php │ ├── form-token.blade.php │ ├── google-captcha.blade.php │ ├── login.blade.php │ ├── otp │ │ ├── activate.blade.php │ │ ├── login.blade.php │ │ ├── verify-activation.blade.php │ │ └── verify-login.blade.php │ ├── otp2fa │ │ ├── index.blade.php │ │ ├── settings.blade.php │ │ └── verify-settings.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── backend │ ├── event │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form_create.blade.php │ │ ├── form_edit.blade.php │ │ └── index.blade.php │ └── themes │ │ ├── box.blade.php │ │ ├── import.blade.php │ │ └── index.blade.php │ ├── components │ ├── button-edit-table.blade.php │ ├── button-hapus-table.blade.php │ ├── button-status-table.blade.php │ ├── button.blade.php │ ├── check_connection.blade.php │ ├── filepond.blade.php │ ├── form-group.blade.php │ ├── header_bearer_api_gabungan.blade.php │ ├── input-validation.blade.php │ ├── input.blade.php │ ├── label.blade.php │ ├── modal-preview-surat.blade.php │ ├── select.blade.php │ ├── swal-delete.blade.php │ ├── table-cell.blade.php │ ├── table-column.blade.php │ ├── table-columns.blade.php │ ├── table-row.blade.php │ ├── table-rows.blade.php │ ├── table.blade.php │ ├── textarea.blade.php │ ├── tom-select.blade.php │ └── upload-file.blade.php │ ├── counter │ ├── cetak.blade.php │ └── index.blade.php │ ├── dashboard │ └── index.blade.php │ ├── data │ ├── aki_akb │ │ ├── edit.blade.php │ │ ├── form_edit.blade.php │ │ ├── import.blade.php │ │ └── index.blade.php │ ├── anggaran_desa │ │ ├── gabungan │ │ │ └── index.blade.php │ │ ├── import.blade.php │ │ └── index.blade.php │ ├── anggaran_realisasi │ │ ├── edit.blade.php │ │ ├── form_edit.blade.php │ │ ├── import.blade.php │ │ └── index.blade.php │ ├── data_desa │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form_create.blade.php │ │ ├── form_edit.blade.php │ │ ├── gabungan │ │ │ ├── index.blade.php │ │ │ └── peta.blade.php │ │ ├── index.blade.php │ │ └── peta.blade.php │ ├── data_suplemen │ │ ├── create.blade.php │ │ ├── create_detail.blade.php │ │ ├── edit.blade.php │ │ ├── edit_detail.blade.php │ │ ├── form.blade.php │ │ ├── form_detail.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── data_umum │ │ ├── edit.blade.php │ │ └── form_edit.blade.php │ ├── epidemi_penyakit │ │ ├── edit.blade.php │ │ ├── form_edit.blade.php │ │ ├── import.blade.php │ │ └── index.blade.php │ ├── fasilitas_paud │ │ ├── edit.blade.php │ │ ├── form_edit.blade.php │ │ ├── import.blade.php │ │ └── index.blade.php │ ├── imunisasi │ │ ├── edit.blade.php │ │ ├── form_edit.blade.php │ │ ├── import.blade.php │ │ └── index.blade.php │ ├── jabatan │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── keluarga │ │ ├── form_show.blade.php │ │ ├── gabungan │ │ │ ├── form_show.blade.php │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── laporan-apbdes │ │ ├── gabungan │ │ │ └── index.blade.php │ │ ├── import.blade.php │ │ └── index.blade.php │ ├── laporan-penduduk │ │ ├── gabungan │ │ │ └── index.blade.php │ │ ├── import.blade.php │ │ └── index.blade.php │ ├── lembaga │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form_create.blade.php │ │ ├── form_edit.blade.php │ │ └── index.blade.php │ ├── lembaga_anggota │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form_create.blade.php │ │ ├── form_edit.blade.php │ │ └── index.blade.php │ ├── lembaga_kategori │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── pembangunan │ │ ├── gabungan │ │ │ ├── index.blade.php │ │ │ └── rincian.blade.php │ │ ├── index.blade.php │ │ └── rincian.blade.php │ ├── penduduk │ │ ├── form_show.blade.php │ │ ├── form_show_status_kehamilan.blade.php │ │ ├── gabungan │ │ │ ├── form_show.blade.php │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── import.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── pengurus │ │ ├── arsip.blade.php │ │ ├── bagan.blade.php │ │ ├── create.blade.php │ │ ├── create_arsip.blade.php │ │ ├── edit.blade.php │ │ ├── edit_arsip.blade.php │ │ ├── form.blade.php │ │ ├── form_create_arsip.blade.php │ │ ├── form_edit_arsip.blade.php │ │ ├── index.blade.php │ │ └── table_document.blade.php │ ├── profil │ │ ├── edit.blade.php │ │ ├── form_edit.blade.php │ │ └── save_success.blade.php │ ├── program_bantuan │ │ ├── gabungan │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── import.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── putus_sekolah │ │ ├── edit.blade.php │ │ ├── form_edit.blade.php │ │ ├── import.blade.php │ │ └── index.blade.php │ ├── tingkat_pendidikan │ │ ├── edit.blade.php │ │ ├── form_edit.blade.php │ │ ├── import.blade.php │ │ └── index.blade.php │ └── toilet_sanitasi │ │ ├── edit.blade.php │ │ ├── form_edit.blade.php │ │ ├── import.blade.php │ │ └── index.blade.php │ ├── emails │ ├── 2fa.blade.php │ └── otp.blade.php │ ├── errors │ ├── 401.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 429.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ ├── illustrated-layout.blade.php │ ├── layout.blade.php │ └── minimal.blade.php │ ├── forms │ ├── action_message.blade.php │ ├── active-modal.blade.php │ ├── agree-modal.blade.php │ ├── aksi.blade.php │ ├── anonim-modal.blade.php │ ├── btn-social.blade.php │ ├── datatable-vertical.blade.php │ ├── delete-modal.blade.php │ ├── image-modal.blade.php │ ├── import-modal.blade.php │ ├── lock-modal.blade.php │ ├── suspend-modal.blade.php │ └── unlock-modal.blade.php │ ├── informasi │ ├── artikel │ │ ├── _form.blade.php │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── artikel_kategori │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── faq │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── form_dokumen │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form_create.blade.php │ │ ├── form_edit.blade.php │ │ └── index.blade.php │ ├── kalender.blade.php │ ├── komentar_artikel │ │ └── index.blade.php │ ├── kontak.blade.php │ ├── media_sosial │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form.blade.php │ │ ├── index.blade.php │ │ └── navigasi.blade.php │ ├── potensi.blade.php │ ├── potensi │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form_create.blade.php │ │ ├── form_edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── prosedur │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form_create.blade.php │ │ ├── form_edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── regulasi │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form_create.blade.php │ │ ├── form_update.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ └── sinergi_program │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form.blade.php │ │ ├── index.blade.php │ │ └── navigasi.blade.php │ ├── installer │ └── welcome.blade.php │ ├── layouts │ ├── app.blade.php │ ├── dashboard_template.blade.php │ └── fragments │ │ ├── control_sidebar.blade.php │ │ ├── error_message.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── list-desa.blade.php │ │ └── sidebar.blade.php │ ├── livewire │ ├── components │ │ └── alert.blade.php │ ├── informasi │ │ └── media_terkait │ │ │ ├── form.blade.php │ │ │ ├── index.blade.php │ │ │ └── table.blade.php │ ├── kerjasama │ │ └── pendaftaran_kerjasama │ │ │ └── index.blade.php │ └── widget │ │ ├── form.blade.php │ │ ├── index.blade.php │ │ └── table.blade.php │ ├── offline.blade.php │ ├── pages │ └── anggaran_desa │ │ └── detail_anggaran.blade.php │ ├── partials │ ├── asset_amcharts.blade.php │ ├── asset_colorpicker.blade.php │ ├── asset_datatables.blade.php │ ├── asset_daterangepicker.blade.php │ ├── asset_datetimepicker.blade.php │ ├── asset_fancybox.blade.php │ ├── asset_highcharts.blade.php │ ├── asset_inputmask.blade.php │ ├── asset_jqueryvalidation.blade.php │ ├── asset_leaflet.blade.php │ ├── asset_numeraljs.blade.php │ ├── asset_select2.blade.php │ ├── asset_sweetalert.blade.php │ ├── asset_tinymce.blade.php │ ├── asset_upload_images.blade.php │ ├── button_reset_impor.blade.php │ ├── button_reset_submit.blade.php │ ├── desa_select2.blade.php │ ├── flash_message.blade.php │ ├── profil_select2.blade.php │ ├── sienna_accessibility.blade.php │ └── tinymce_min.blade.php │ ├── pesan │ ├── arsip │ │ └── index.blade.php │ ├── compose_pesan.blade.php │ ├── keluar │ │ └── index.blade.php │ ├── masuk │ │ └── index.blade.php │ ├── partial_pesan_menu.blade.php │ └── read_pesan.blade.php │ ├── publikasi │ ├── album │ │ ├── _form.blade.php │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ └── galeri │ │ ├── _form.blade.php │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── role │ ├── create.blade.php │ ├── edit.blade.php │ ├── form.blade.php │ └── index.blade.php │ ├── scribe │ └── index.blade.php │ ├── setting │ ├── aplikasi │ │ ├── edit.blade.php │ │ ├── form.blade.php │ │ ├── generate_key.blade.php │ │ ├── index.blade.php │ │ └── test_email.blade.php │ ├── coa │ │ ├── create.blade.php │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── jenis_dokumen │ │ ├── index.blade.php │ │ └── modal-form.blade.php │ ├── jenis_penyakit │ │ ├── index.blade.php │ │ └── modal-form.blade.php │ ├── komplain_kategori │ │ ├── index.blade.php │ │ └── modal-form.blade.php │ ├── nav_menu │ │ ├── field.blade.php │ │ └── index.blade.php │ ├── navigation │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── pengaturan_database │ │ ├── index.blade.php │ │ ├── table-backup.blade.php │ │ └── table-restore.blade.php │ ├── slide │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── tipe_potensi │ │ ├── index.blade.php │ │ └── modal-form.blade.php │ └── tipe_regulasi │ │ ├── index.blade.php │ │ └── modal-form.blade.php │ ├── sistem_komplain │ ├── edit.blade.php │ ├── index.blade.php │ ├── show.blade.php │ └── statistik.blade.php │ ├── sitemap │ ├── index.blade.php │ └── prosedur.blade.php │ ├── surat │ ├── arsip.blade.php │ ├── pengaturan.blade.php │ ├── permohonan │ │ ├── ditolak.blade.php │ │ ├── gabungan │ │ │ └── index.blade.php │ │ ├── index.blade.php │ │ ├── show.blade.php │ │ └── widget.blade.php │ └── qrcode.blade.php │ ├── swagger.blade.php │ ├── template │ └── dokumen_kerjasama.blade.php │ ├── user │ ├── create.blade.php │ ├── edit.blade.php │ ├── form.blade.php │ ├── index.blade.php │ ├── password.blade.php │ └── show.blade.php │ └── vendor │ ├── flash │ ├── message.blade.php │ └── modal.blade.php │ ├── installer │ ├── database.blade.php │ ├── environment-classic.blade.php │ ├── environment-wizard.blade.php │ ├── environment.blade.php │ ├── finished.blade.php │ ├── layouts │ │ ├── master-update.blade.php │ │ └── master.blade.php │ ├── permissions.blade.php │ ├── requirements.blade.php │ ├── update │ │ ├── finished.blade.php │ │ ├── overview.blade.php │ │ └── welcome.blade.php │ └── welcome.blade.php │ ├── jsvalidation │ ├── bootstrap.php │ ├── bootstrap4.php │ ├── bootstrap5.php │ └── uikit.php │ ├── laravel-log-viewer │ ├── index.blade.php │ ├── info-sistem.blade.php │ ├── kebutuhan-sistem.blade.php │ ├── log.blade.php │ └── smtp │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── livewire │ ├── bootstrap.blade.php │ ├── simple-bootstrap.blade.php │ ├── simple-tailwind.blade.php │ └── tailwind.blade.php │ ├── mail │ ├── html │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── promotion.blade.php │ │ ├── promotion │ │ │ └── button.blade.php │ │ ├── subcopy.blade.php │ │ ├── table.blade.php │ │ └── themes │ │ │ └── default.css │ └── text │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── promotion.blade.php │ │ ├── promotion │ │ └── button.blade.php │ │ ├── subcopy.blade.php │ │ └── table.blade.php │ ├── notifications │ └── email.blade.php │ ├── pagination │ ├── bootstrap-4.blade.php │ ├── default.blade.php │ ├── pesan.blade.php │ ├── semantic-ui.blade.php │ ├── simple-bootstrap-4.blade.php │ └── simple-default.blade.php │ ├── themes-manager │ └── components │ │ ├── image.blade.php │ │ ├── page-title.blade.php │ │ ├── script.blade.php │ │ └── style.blade.php │ └── twofactor-auth │ └── form.blade.php ├── routes ├── api-frontend.php ├── api.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ ├── .gitignore │ │ └── template_upload │ │ ├── Format_Upload_AKI_&_AKB.xlsx │ │ ├── Format_Upload_APBDes.xlsx │ │ ├── Format_Upload_Anggaran_Realisasi.xlsx │ │ ├── Format_Upload_Cakupan_Imunisasi.xlsx │ │ ├── Format_Upload_Epidemi_Penyakit.xlsx │ │ ├── Format_Upload_Fasilitas_PAUD.xlsx │ │ ├── Format_Upload_Putus_Sekolah.xlsx │ │ ├── Format_Upload_Tingkat_Pendidikan.xlsx │ │ ├── Format_Upload_Toilet_&_Sanitasi.xlsx │ │ ├── Panduan_Pengguna_Kecamatan_Dashboard.pdf │ │ ├── laporan_apbdes_22_12_2020_opendk.zip │ │ ├── laporan_penduduk_22_12_2020_opendk.zip │ │ ├── penduduk_22_12_2020_opendk.zip │ │ └── program_bantuan_31_05_2022_opendk.zip ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── laravel-excel │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── komplain │ └── 999123 │ │ ├── lampiran1.jpg │ │ ├── lampiran2.jpg │ │ ├── lampiran3.jpg │ │ └── lampiran4.jpg └── logs │ └── .gitignore ├── themes └── opendk │ └── default │ ├── .gitignore │ ├── composer.json │ ├── lang │ └── en │ │ └── .gitkeep │ ├── public │ ├── css │ │ └── app.css │ ├── img │ │ └── .gitkeep │ ├── js │ │ └── .gitkeep │ └── screenshot.png │ └── resources │ └── views │ ├── components │ ├── breadcumb.blade.php │ ├── footer.blade.php │ ├── header.blade.php │ ├── pagination.blade.php │ ├── placeholder.blade.php │ ├── preloader.blade.php │ ├── sidebar.blade.php │ ├── slider.blade.php │ ├── topheader.blade.php │ └── website-data.blade.php │ ├── layouts │ └── app.blade.php │ ├── pages │ ├── anggaran_desa │ │ ├── detail_anggaran.blade.php │ │ ├── gabungan │ │ │ └── detail_anggaran.blade.php │ │ └── show_anggaran_desa.blade.php │ ├── anggaran_realisasi │ │ ├── gabungan │ │ │ └── show_anggaran_realisasi.blade.php │ │ └── show_anggaran_realisasi.blade.php │ ├── berita │ │ ├── comment.blade.php │ │ ├── desa.blade.php │ │ ├── detail.blade.php │ │ ├── feeds.blade.php │ │ ├── index.blade.php │ │ └── kategori.blade.php │ ├── desa │ │ └── desa_show.blade.php │ ├── event │ │ └── event_detail.blade.php │ ├── faq │ │ └── index.blade.php │ ├── ikm │ │ └── index.blade.php │ ├── index.blade.php │ ├── kependudukan │ │ ├── index.blade.php │ │ └── show_kependudukan.blade.php │ ├── kesehatan │ │ ├── show_kesehatan.blade.php │ │ ├── tabel_akiakb_1.blade.php │ │ ├── tabel_akiakb_2.blade.php │ │ ├── tabel_imunisasi_1.blade.php │ │ ├── tabel_imunisasi_2.blade.php │ │ ├── tabel_penyakit_1.blade.php │ │ ├── tabel_penyakit_2.blade.php │ │ ├── tabel_sanitasi_1.blade.php │ │ └── tabel_sanitasi_2.blade.php │ ├── komplain │ │ ├── _komplain_populer.blade.php │ │ ├── _komplain_sukses.blade.php │ │ ├── _tracking.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── jawabans.blade.php │ │ ├── kirim.blade.php │ │ └── show.blade.php │ ├── pendidikan │ │ └── show_pendidikan.blade.php │ ├── potensi │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── profil │ │ ├── gabungan │ │ │ └── letakgeografis.blade.php │ │ ├── letakgeografis.blade.php │ │ ├── sambutan.blade.php │ │ ├── sejarah.blade.php │ │ ├── struktur-organisasi.blade.php │ │ ├── strukturpemerintahan.blade.php │ │ ├── tipologi.blade.php │ │ └── visimisi.blade.php │ ├── program_bantuan │ │ └── show_program_bantuan.blade.php │ ├── publikasi │ │ ├── album.blade.php │ │ ├── galeri.blade.php │ │ └── galeri_detail.blade.php │ └── unduhan │ │ ├── form-dokumen.blade.php │ │ ├── jenis-dokumen.blade.php │ │ ├── prosedur.blade.php │ │ └── regulasi.blade.php │ └── widgets │ ├── camat.blade.php │ ├── event.blade.php │ ├── komplain.blade.php │ ├── media_sosial.blade.php │ ├── media_terkait.blade.php │ ├── pengurus.blade.php │ ├── sinergi_program.blade.php │ └── visitor.blade.php └── vite.config.js /.env.e2e.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/.env.e2e.example -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/.env.example -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Commands/ClearProfilCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Console/Commands/ClearProfilCache.php -------------------------------------------------------------------------------- /app/Console/Commands/InstallDev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Console/Commands/InstallDev.php -------------------------------------------------------------------------------- /app/Console/Commands/SyncWidgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Console/Commands/SyncWidgets.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Enums/Anonim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/Anonim.php -------------------------------------------------------------------------------- /app/Enums/JenisJabatan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/JenisJabatan.php -------------------------------------------------------------------------------- /app/Enums/KonversiHariFormDokumen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/KonversiHariFormDokumen.php -------------------------------------------------------------------------------- /app/Enums/LabelStatistik.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/LabelStatistik.php -------------------------------------------------------------------------------- /app/Enums/LogVerifikasiSurat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/LogVerifikasiSurat.php -------------------------------------------------------------------------------- /app/Enums/MenuTipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/MenuTipe.php -------------------------------------------------------------------------------- /app/Enums/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/Status.php -------------------------------------------------------------------------------- /app/Enums/StatusFormDokumen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/StatusFormDokumen.php -------------------------------------------------------------------------------- /app/Enums/StatusSurat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/StatusSurat.php -------------------------------------------------------------------------------- /app/Enums/StatusVerifikasiSurat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/StatusVerifikasiSurat.php -------------------------------------------------------------------------------- /app/Enums/SurveiEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/SurveiEnum.php -------------------------------------------------------------------------------- /app/Enums/Tema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/Tema.php -------------------------------------------------------------------------------- /app/Enums/TipeWaktuFormDokumen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/TipeWaktuFormDokumen.php -------------------------------------------------------------------------------- /app/Enums/VisitorFilterEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Enums/VisitorFilterEnum.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exports/CounterVisitorExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/CounterVisitorExport.php -------------------------------------------------------------------------------- /app/Exports/ExportAKIAKB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportAKIAKB.php -------------------------------------------------------------------------------- /app/Exports/ExportAnggaranDesa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportAnggaranDesa.php -------------------------------------------------------------------------------- /app/Exports/ExportAnggaranRealisasi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportAnggaranRealisasi.php -------------------------------------------------------------------------------- /app/Exports/ExportDataDesa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportDataDesa.php -------------------------------------------------------------------------------- /app/Exports/ExportEpidemiPenyakit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportEpidemiPenyakit.php -------------------------------------------------------------------------------- /app/Exports/ExportFasilitasPaud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportFasilitasPaud.php -------------------------------------------------------------------------------- /app/Exports/ExportImunisasi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportImunisasi.php -------------------------------------------------------------------------------- /app/Exports/ExportKeluarga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportKeluarga.php -------------------------------------------------------------------------------- /app/Exports/ExportLaporanApbdes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportLaporanApbdes.php -------------------------------------------------------------------------------- /app/Exports/ExportPembangunan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportPembangunan.php -------------------------------------------------------------------------------- /app/Exports/ExportPenduduk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportPenduduk.php -------------------------------------------------------------------------------- /app/Exports/ExportProgramBantuan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportProgramBantuan.php -------------------------------------------------------------------------------- /app/Exports/ExportPutusSekolah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportPutusSekolah.php -------------------------------------------------------------------------------- /app/Exports/ExportSuplemen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportSuplemen.php -------------------------------------------------------------------------------- /app/Exports/ExportSuplemenTerdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportSuplemenTerdata.php -------------------------------------------------------------------------------- /app/Exports/ExportTingkatPendidikan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportTingkatPendidikan.php -------------------------------------------------------------------------------- /app/Exports/ExportToiletSanitasi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/ExportToiletSanitasi.php -------------------------------------------------------------------------------- /app/Exports/LaporanPendudukByIdExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/LaporanPendudukByIdExport.php -------------------------------------------------------------------------------- /app/Exports/LaporanPendudukExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Exports/LaporanPendudukExport.php -------------------------------------------------------------------------------- /app/Facades/Counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Facades/Counter.php -------------------------------------------------------------------------------- /app/Helpers/Counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Helpers/Counter.php -------------------------------------------------------------------------------- /app/Helpers/SystemRequirementsChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Helpers/SystemRequirementsChecker.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Livewire/BaseComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Livewire/BaseComponent.php -------------------------------------------------------------------------------- /app/Http/Livewire/Components/Alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Livewire/Components/Alert.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckOtpEnabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/CheckOtpEnabled.php -------------------------------------------------------------------------------- /app/Http/Middleware/CompleteProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/CompleteProfile.php -------------------------------------------------------------------------------- /app/Http/Middleware/CustomForms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/CustomForms.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/KDInstalled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/KDInstalled.php -------------------------------------------------------------------------------- /app/Http/Middleware/MaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/MaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/SecurityHeaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/SecurityHeaders.php -------------------------------------------------------------------------------- /app/Http/Middleware/TokenRegistered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/TokenRegistered.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrackVisitors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/TrackVisitors.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Middleware/XssSanitization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Middleware/XssSanitization.php -------------------------------------------------------------------------------- /app/Http/Requests/AlbumRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/AlbumRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/AnggaranDesaRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/AnggaranDesaRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ArtikelRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/ArtikelRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ChangeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/ChangeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/DataUmumRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/DataUmumRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/DesaRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/DesaRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/DocumentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/DocumentRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/DokumenRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/DokumenRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/EmailSmtpRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/EmailSmtpRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/EventRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/EventRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/FaqRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/FaqRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/GaleriRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/GaleriRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/GetPesanRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/GetPesanRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/JabatanRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/JabatanRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/JenisDokumenRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/JenisDokumenRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MediaSosialRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/MediaSosialRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/NavigationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/NavigationRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/PembangunanRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/PembangunanRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/PendudukRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/PendudukRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/PengurusRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/PengurusRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/PesanRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/PesanRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/PotensiRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/PotensiRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfilDesaRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/ProfilDesaRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfilRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/ProfilRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProsedurRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/ProsedurRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/RegulasiRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/RegulasiRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/RoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/RoleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/SlideRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/SlideRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreLembagaRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/StoreLembagaRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/SurveiRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/SurveiRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/TipePotensiRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/TipePotensiRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/TipeRegulasiRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/TipeRegulasiRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Requests/UserRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/SuratResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Http/Resources/SuratResource.php -------------------------------------------------------------------------------- /app/Imports/ImporAKIAKB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/ImporAKIAKB.php -------------------------------------------------------------------------------- /app/Imports/ImporAPBDesa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/ImporAPBDesa.php -------------------------------------------------------------------------------- /app/Imports/ImporAnggaranRealisasi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/ImporAnggaranRealisasi.php -------------------------------------------------------------------------------- /app/Imports/ImporEpidemiPenyakit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/ImporEpidemiPenyakit.php -------------------------------------------------------------------------------- /app/Imports/ImporFasilitasPaud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/ImporFasilitasPaud.php -------------------------------------------------------------------------------- /app/Imports/ImporImunisasi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/ImporImunisasi.php -------------------------------------------------------------------------------- /app/Imports/ImporLaporanApbdes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/ImporLaporanApbdes.php -------------------------------------------------------------------------------- /app/Imports/ImporLaporanPenduduk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/ImporLaporanPenduduk.php -------------------------------------------------------------------------------- /app/Imports/ImporPendudukKeluarga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/ImporPendudukKeluarga.php -------------------------------------------------------------------------------- /app/Imports/ImporPutusSekolah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/ImporPutusSekolah.php -------------------------------------------------------------------------------- /app/Imports/ImporTingkatPendidikan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/ImporTingkatPendidikan.php -------------------------------------------------------------------------------- /app/Imports/ImporToiletSanitasi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/ImporToiletSanitasi.php -------------------------------------------------------------------------------- /app/Imports/SinkronBantuan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/SinkronBantuan.php -------------------------------------------------------------------------------- /app/Imports/SinkronPembangunan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/SinkronPembangunan.php -------------------------------------------------------------------------------- /app/Imports/SinkronPenduduk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/SinkronPenduduk.php -------------------------------------------------------------------------------- /app/Imports/SinkronPesertaBantuan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Imports/SinkronPesertaBantuan.php -------------------------------------------------------------------------------- /app/Jobs/LaporanApbdesQueueJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Jobs/LaporanApbdesQueueJob.php -------------------------------------------------------------------------------- /app/Jobs/LaporanPendudukQueueJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Jobs/LaporanPendudukQueueJob.php -------------------------------------------------------------------------------- /app/Jobs/PendudukQueueJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Jobs/PendudukQueueJob.php -------------------------------------------------------------------------------- /app/Mail/OtpMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Mail/OtpMail.php -------------------------------------------------------------------------------- /app/Mail/SmtpTestEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Mail/SmtpTestEmail.php -------------------------------------------------------------------------------- /app/Models/Agama.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Agama.php -------------------------------------------------------------------------------- /app/Models/AkiAkb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/AkiAkb.php -------------------------------------------------------------------------------- /app/Models/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Album.php -------------------------------------------------------------------------------- /app/Models/AnggaranDesa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/AnggaranDesa.php -------------------------------------------------------------------------------- /app/Models/AnggaranRealisasi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/AnggaranRealisasi.php -------------------------------------------------------------------------------- /app/Models/Artikel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Artikel.php -------------------------------------------------------------------------------- /app/Models/ArtikelKategori.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/ArtikelKategori.php -------------------------------------------------------------------------------- /app/Models/Cacat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Cacat.php -------------------------------------------------------------------------------- /app/Models/CaraKB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/CaraKB.php -------------------------------------------------------------------------------- /app/Models/Coa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Coa.php -------------------------------------------------------------------------------- /app/Models/CoaType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/CoaType.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/CounterPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/CounterPage.php -------------------------------------------------------------------------------- /app/Models/CounterVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/CounterVisitor.php -------------------------------------------------------------------------------- /app/Models/DataDesa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/DataDesa.php -------------------------------------------------------------------------------- /app/Models/DataUmum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/DataUmum.php -------------------------------------------------------------------------------- /app/Models/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Document.php -------------------------------------------------------------------------------- /app/Models/EmailSmtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/EmailSmtp.php -------------------------------------------------------------------------------- /app/Models/EpidemiPenyakit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/EpidemiPenyakit.php -------------------------------------------------------------------------------- /app/Models/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Event.php -------------------------------------------------------------------------------- /app/Models/Faq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Faq.php -------------------------------------------------------------------------------- /app/Models/FasilitasPAUD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/FasilitasPAUD.php -------------------------------------------------------------------------------- /app/Models/FormDokumen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/FormDokumen.php -------------------------------------------------------------------------------- /app/Models/Galeri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Galeri.php -------------------------------------------------------------------------------- /app/Models/GolonganDarah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/GolonganDarah.php -------------------------------------------------------------------------------- /app/Models/HubunganKeluarga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/HubunganKeluarga.php -------------------------------------------------------------------------------- /app/Models/Imunisasi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Imunisasi.php -------------------------------------------------------------------------------- /app/Models/Jabatan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Jabatan.php -------------------------------------------------------------------------------- /app/Models/JawabKomplain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/JawabKomplain.php -------------------------------------------------------------------------------- /app/Models/JenisDokumen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/JenisDokumen.php -------------------------------------------------------------------------------- /app/Models/JenisPenyakit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/JenisPenyakit.php -------------------------------------------------------------------------------- /app/Models/JenisSurat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/JenisSurat.php -------------------------------------------------------------------------------- /app/Models/Kategori.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Kategori.php -------------------------------------------------------------------------------- /app/Models/KategoriKomplain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/KategoriKomplain.php -------------------------------------------------------------------------------- /app/Models/KategoriLembaga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/KategoriLembaga.php -------------------------------------------------------------------------------- /app/Models/Kawin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Kawin.php -------------------------------------------------------------------------------- /app/Models/Keluarga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Keluarga.php -------------------------------------------------------------------------------- /app/Models/Komplain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Komplain.php -------------------------------------------------------------------------------- /app/Models/LaporanApbdes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/LaporanApbdes.php -------------------------------------------------------------------------------- /app/Models/LaporanPenduduk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/LaporanPenduduk.php -------------------------------------------------------------------------------- /app/Models/Lembaga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Lembaga.php -------------------------------------------------------------------------------- /app/Models/LembagaAnggota.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/LembagaAnggota.php -------------------------------------------------------------------------------- /app/Models/LogImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/LogImport.php -------------------------------------------------------------------------------- /app/Models/LogTte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/LogTte.php -------------------------------------------------------------------------------- /app/Models/MediaSosial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/MediaSosial.php -------------------------------------------------------------------------------- /app/Models/MediaTerkait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/MediaTerkait.php -------------------------------------------------------------------------------- /app/Models/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Menu.php -------------------------------------------------------------------------------- /app/Models/NavMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/NavMenu.php -------------------------------------------------------------------------------- /app/Models/Navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Navigation.php -------------------------------------------------------------------------------- /app/Models/OtpToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/OtpToken.php -------------------------------------------------------------------------------- /app/Models/Pekerjaan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Pekerjaan.php -------------------------------------------------------------------------------- /app/Models/Pembangunan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Pembangunan.php -------------------------------------------------------------------------------- /app/Models/PembangunanDokumentasi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/PembangunanDokumentasi.php -------------------------------------------------------------------------------- /app/Models/Pendidikan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Pendidikan.php -------------------------------------------------------------------------------- /app/Models/PendidikanKK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/PendidikanKK.php -------------------------------------------------------------------------------- /app/Models/Penduduk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Penduduk.php -------------------------------------------------------------------------------- /app/Models/PendudukSex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/PendudukSex.php -------------------------------------------------------------------------------- /app/Models/Pengurus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Pengurus.php -------------------------------------------------------------------------------- /app/Models/Pesan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Pesan.php -------------------------------------------------------------------------------- /app/Models/PesanDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/PesanDetail.php -------------------------------------------------------------------------------- /app/Models/PesertaProgram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/PesertaProgram.php -------------------------------------------------------------------------------- /app/Models/Potensi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Potensi.php -------------------------------------------------------------------------------- /app/Models/Profil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Profil.php -------------------------------------------------------------------------------- /app/Models/Program.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Program.php -------------------------------------------------------------------------------- /app/Models/Prosedur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Prosedur.php -------------------------------------------------------------------------------- /app/Models/PutusSekolah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/PutusSekolah.php -------------------------------------------------------------------------------- /app/Models/Regulasi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Regulasi.php -------------------------------------------------------------------------------- /app/Models/SakitMenahun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/SakitMenahun.php -------------------------------------------------------------------------------- /app/Models/SettingAplikasi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/SettingAplikasi.php -------------------------------------------------------------------------------- /app/Models/SinergiProgram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/SinergiProgram.php -------------------------------------------------------------------------------- /app/Models/Slide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Slide.php -------------------------------------------------------------------------------- /app/Models/SubCoa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/SubCoa.php -------------------------------------------------------------------------------- /app/Models/SubSubCoa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/SubSubCoa.php -------------------------------------------------------------------------------- /app/Models/Suplemen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Suplemen.php -------------------------------------------------------------------------------- /app/Models/SuplemenTerdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/SuplemenTerdata.php -------------------------------------------------------------------------------- /app/Models/Surat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Surat.php -------------------------------------------------------------------------------- /app/Models/Survei.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Survei.php -------------------------------------------------------------------------------- /app/Models/Themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Themes.php -------------------------------------------------------------------------------- /app/Models/TingkatPendidikan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/TingkatPendidikan.php -------------------------------------------------------------------------------- /app/Models/TipePotensi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/TipePotensi.php -------------------------------------------------------------------------------- /app/Models/TipeRegulasi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/TipeRegulasi.php -------------------------------------------------------------------------------- /app/Models/ToiletSanitasi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/ToiletSanitasi.php -------------------------------------------------------------------------------- /app/Models/Umur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Umur.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/Visitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Visitor.php -------------------------------------------------------------------------------- /app/Models/Warganegara.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Warganegara.php -------------------------------------------------------------------------------- /app/Models/Widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/Widget.php -------------------------------------------------------------------------------- /app/Models/WilClusterDesa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Models/WilClusterDesa.php -------------------------------------------------------------------------------- /app/Notifications/SendToken2FA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Notifications/SendToken2FA.php -------------------------------------------------------------------------------- /app/Notifications/TestEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Notifications/TestEmail.php -------------------------------------------------------------------------------- /app/Observers/AlbumObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Observers/AlbumObserver.php -------------------------------------------------------------------------------- /app/Observers/GaleriObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Observers/GaleriObserver.php -------------------------------------------------------------------------------- /app/Observers/MediaSosialObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Observers/MediaSosialObserver.php -------------------------------------------------------------------------------- /app/Observers/MediaTerkaitObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Observers/MediaTerkaitObserver.php -------------------------------------------------------------------------------- /app/Observers/WidgetObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Observers/WidgetObserver.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EmailTwoFactorProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Providers/EmailTwoFactorProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/KDServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Providers/KDServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/SmtpServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Providers/SmtpServiceProvider.php -------------------------------------------------------------------------------- /app/Repositories/AlbumApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Repositories/AlbumApiRepository.php -------------------------------------------------------------------------------- /app/Repositories/ArtikelApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Repositories/ArtikelApiRepository.php -------------------------------------------------------------------------------- /app/Repositories/BaseApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Repositories/BaseApiRepository.php -------------------------------------------------------------------------------- /app/Repositories/BaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Repositories/BaseRepository.php -------------------------------------------------------------------------------- /app/Repositories/DesaApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Repositories/DesaApiRepository.php -------------------------------------------------------------------------------- /app/Repositories/FaqApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Repositories/FaqApiRepository.php -------------------------------------------------------------------------------- /app/Repositories/GaleriApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Repositories/GaleriApiRepository.php -------------------------------------------------------------------------------- /app/Repositories/PotensiApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Repositories/PotensiApiRepository.php -------------------------------------------------------------------------------- /app/Repositories/ProfilApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Repositories/ProfilApiRepository.php -------------------------------------------------------------------------------- /app/Repositories/WebsiteApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Repositories/WebsiteApiRepository.php -------------------------------------------------------------------------------- /app/Rules/CekDesa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Rules/CekDesa.php -------------------------------------------------------------------------------- /app/Rules/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Rules/Password.php -------------------------------------------------------------------------------- /app/Rules/ValidDesa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Rules/ValidDesa.php -------------------------------------------------------------------------------- /app/Rules/ValidasiNikRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Rules/ValidasiNikRule.php -------------------------------------------------------------------------------- /app/Services/ApiService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Services/ApiService.php -------------------------------------------------------------------------------- /app/Services/BantuanService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Services/BantuanService.php -------------------------------------------------------------------------------- /app/Services/BaseApiService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Services/BaseApiService.php -------------------------------------------------------------------------------- /app/Services/DesaService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Services/DesaService.php -------------------------------------------------------------------------------- /app/Services/KeluargaService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Services/KeluargaService.php -------------------------------------------------------------------------------- /app/Services/LaporanPendudukService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Services/LaporanPendudukService.php -------------------------------------------------------------------------------- /app/Services/OtpService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Services/OtpService.php -------------------------------------------------------------------------------- /app/Services/PendudukService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Services/PendudukService.php -------------------------------------------------------------------------------- /app/Services/ProgramBantuanService.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Services/StatistikPendudukService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Services/StatistikPendudukService.php -------------------------------------------------------------------------------- /app/Support/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Support/Collection.php -------------------------------------------------------------------------------- /app/Traits/BaganTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Traits/BaganTrait.php -------------------------------------------------------------------------------- /app/Traits/HandlesFileUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Traits/HandlesFileUpload.php -------------------------------------------------------------------------------- /app/Traits/HandlesResourceDeletion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Traits/HandlesResourceDeletion.php -------------------------------------------------------------------------------- /app/Transformers/AlbumTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Transformers/AlbumTransformer.php -------------------------------------------------------------------------------- /app/Transformers/ArtikelTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Transformers/ArtikelTransformer.php -------------------------------------------------------------------------------- /app/Transformers/CommentTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Transformers/CommentTransformer.php -------------------------------------------------------------------------------- /app/Transformers/DataDesaTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Transformers/DataDesaTransformer.php -------------------------------------------------------------------------------- /app/Transformers/DataUmumTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Transformers/DataUmumTransformer.php -------------------------------------------------------------------------------- /app/Transformers/FaqTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Transformers/FaqTransformer.php -------------------------------------------------------------------------------- /app/Transformers/GaleriTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Transformers/GaleriTransformer.php -------------------------------------------------------------------------------- /app/Transformers/KomplainTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Transformers/KomplainTransformer.php -------------------------------------------------------------------------------- /app/Transformers/PotensiTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Transformers/PotensiTransformer.php -------------------------------------------------------------------------------- /app/Transformers/ProfilTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Transformers/ProfilTransformer.php -------------------------------------------------------------------------------- /app/Transformers/RegulasiTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Transformers/RegulasiTransformer.php -------------------------------------------------------------------------------- /app/Transformers/WebsiteTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Transformers/WebsiteTransformer.php -------------------------------------------------------------------------------- /app/Transformers/YearsListTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/app/Transformers/YearsListTransformer.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /catatan_rilis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/catatan_rilis.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/backup.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/captcha.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/database.php -------------------------------------------------------------------------------- /config/datatables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/datatables.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/excel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/excel.php -------------------------------------------------------------------------------- /config/feeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/feeds.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/image.php -------------------------------------------------------------------------------- /config/installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/installer.php -------------------------------------------------------------------------------- /config/json-api-paginate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/json-api-paginate.php -------------------------------------------------------------------------------- /config/jsvalidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/jsvalidation.php -------------------------------------------------------------------------------- /config/jwt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/jwt.php -------------------------------------------------------------------------------- /config/lfm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/lfm.php -------------------------------------------------------------------------------- /config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/livewire.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/otp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/otp.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/query-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/query-builder.php -------------------------------------------------------------------------------- /config/querydetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/querydetector.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/recaptchav3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/recaptchav3.php -------------------------------------------------------------------------------- /config/scribe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/scribe.php -------------------------------------------------------------------------------- /config/sentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/sentry.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/session.php -------------------------------------------------------------------------------- /config/sluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/sluggable.php -------------------------------------------------------------------------------- /config/theme-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/theme-api.php -------------------------------------------------------------------------------- /config/themes-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/themes-manager.php -------------------------------------------------------------------------------- /config/tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/tinker.php -------------------------------------------------------------------------------- /config/twofactor-auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/twofactor-auth.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/database_test.sql.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/database_test.sql.tar.gz -------------------------------------------------------------------------------- /database/factories/AkiAkbFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/AkiAkbFactory.php -------------------------------------------------------------------------------- /database/factories/AlbumFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/AlbumFactory.php -------------------------------------------------------------------------------- /database/factories/ArtikelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/ArtikelFactory.php -------------------------------------------------------------------------------- /database/factories/DataDesaFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/DataDesaFactory.php -------------------------------------------------------------------------------- /database/factories/EventFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/EventFactory.php -------------------------------------------------------------------------------- /database/factories/ImunisasiFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/ImunisasiFactory.php -------------------------------------------------------------------------------- /database/factories/JabatanFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/JabatanFactory.php -------------------------------------------------------------------------------- /database/factories/KategoriFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/KategoriFactory.php -------------------------------------------------------------------------------- /database/factories/KeluargaFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/KeluargaFactory.php -------------------------------------------------------------------------------- /database/factories/KomplainFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/KomplainFactory.php -------------------------------------------------------------------------------- /database/factories/LembagaFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/LembagaFactory.php -------------------------------------------------------------------------------- /database/factories/MediaSosialFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/MediaSosialFactory.php -------------------------------------------------------------------------------- /database/factories/NavMenuFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/NavMenuFactory.php -------------------------------------------------------------------------------- /database/factories/PembangunanFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/PembangunanFactory.php -------------------------------------------------------------------------------- /database/factories/PendudukFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/PendudukFactory.php -------------------------------------------------------------------------------- /database/factories/PengurusFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/PengurusFactory.php -------------------------------------------------------------------------------- /database/factories/PesanFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/PesanFactory.php -------------------------------------------------------------------------------- /database/factories/ProgramFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/ProgramFactory.php -------------------------------------------------------------------------------- /database/factories/SuplemenFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/SuplemenFactory.php -------------------------------------------------------------------------------- /database/factories/SuratFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/SuratFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeders/DasMenuTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/DasMenuTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/DasProfilTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/DasProfilTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/Demo/DemoEventSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/Demo/DemoEventSeeder.php -------------------------------------------------------------------------------- /database/seeders/Demo/DemoFaqSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/Demo/DemoFaqSeeder.php -------------------------------------------------------------------------------- /database/seeders/Demo/DemoPesanSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/Demo/DemoPesanSeeder.php -------------------------------------------------------------------------------- /database/seeders/DemoDatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/DemoDatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/JenisSuratSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/JenisSuratSeeder.php -------------------------------------------------------------------------------- /database/seeders/PendudukSexSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/PendudukSexSeeder.php -------------------------------------------------------------------------------- /database/seeders/RefAgamaTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/RefAgamaTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/RefCacatTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/RefCacatTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/RefCaraKbTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/RefCaraKbTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/RefCoaTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/RefCoaTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/RefKategori.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/RefKategori.php -------------------------------------------------------------------------------- /database/seeders/RefKawinTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/RefKawinTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/RefSubCoaTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/RefSubCoaTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/RefUmurTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/RefUmurTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoleSpatieSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/database/seeders/RoleSpatieSeeder.php -------------------------------------------------------------------------------- /helpers/general_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/helpers/general_helper.php -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/installer_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/lang/en/installer_messages.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/playwright.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/bower_components/Flot/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Flot/.bower.json -------------------------------------------------------------------------------- /public/bower_components/Flot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Flot/.gitignore -------------------------------------------------------------------------------- /public/bower_components/Flot/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Flot/.travis.yml -------------------------------------------------------------------------------- /public/bower_components/Flot/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Flot/API.md -------------------------------------------------------------------------------- /public/bower_components/Flot/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Flot/FAQ.md -------------------------------------------------------------------------------- /public/bower_components/Flot/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Flot/LICENSE.txt -------------------------------------------------------------------------------- /public/bower_components/Flot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Flot/Makefile -------------------------------------------------------------------------------- /public/bower_components/Flot/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Flot/NEWS.md -------------------------------------------------------------------------------- /public/bower_components/Flot/PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Flot/PLUGINS.md -------------------------------------------------------------------------------- /public/bower_components/Flot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Flot/README.md -------------------------------------------------------------------------------- /public/bower_components/Flot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Flot/excanvas.js -------------------------------------------------------------------------------- /public/bower_components/Flot/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Flot/jquery.js -------------------------------------------------------------------------------- /public/bower_components/Flot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Flot/package.json -------------------------------------------------------------------------------- /public/bower_components/Ionicons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/Ionicons/LICENSE -------------------------------------------------------------------------------- /public/bower_components/PACE/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/PACE/.bower.json -------------------------------------------------------------------------------- /public/bower_components/PACE/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/PACE/LICENSE -------------------------------------------------------------------------------- /public/bower_components/PACE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/PACE/README.md -------------------------------------------------------------------------------- /public/bower_components/PACE/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/PACE/bower.json -------------------------------------------------------------------------------- /public/bower_components/PACE/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/PACE/install.json -------------------------------------------------------------------------------- /public/bower_components/PACE/pace.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/PACE/pace.coffee -------------------------------------------------------------------------------- /public/bower_components/PACE/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/PACE/pace.js -------------------------------------------------------------------------------- /public/bower_components/PACE/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/PACE/pace.min.js -------------------------------------------------------------------------------- /public/bower_components/admin-lte/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/admin-lte/LICENSE -------------------------------------------------------------------------------- /public/bower_components/amcharts3/amcharts/plugins/export/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap-datepicker/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx_rtd_theme 2 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap-daterangepicker/example/browserify/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/bootstrap/Gemfile -------------------------------------------------------------------------------- /public/bower_components/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/bootstrap/LICENSE -------------------------------------------------------------------------------- /public/bower_components/chart.js/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | 4 | node_modules/* 5 | custom/* 6 | 7 | docs/index.md 8 | -------------------------------------------------------------------------------- /public/bower_components/chart.js/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/chart.js/Chart.js -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","af",{toolbar:"Nuwe bladsy"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ar",{toolbar:"صفحة جديدة"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","az",{toolbar:"Yeni səhifə"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bg",{toolbar:"Нова страница"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bn",{toolbar:"নতুন পৃষ্ঠা"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bs",{toolbar:"Novi dokument"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ca",{toolbar:"Nova pàgina"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","cs",{toolbar:"Nová stránka"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","cy",{toolbar:"Tudalen Newydd"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","da",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","de-ch",{toolbar:"Neue Seite"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","de",{toolbar:"Neue Seite"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","el",{toolbar:"Νέα Σελίδα"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-au",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-ca",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-gb",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","eo",{toolbar:"Nova Paĝo"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","es-mx",{toolbar:"Página nueva"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","es",{toolbar:"Nueva Página"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","et",{toolbar:"Uus leht"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","eu",{toolbar:"Orrialde berria"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fa",{toolbar:"برگهٴ تازه"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fi",{toolbar:"Tyhjennä"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fo",{toolbar:"Nýggj síða"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","gl",{toolbar:"Páxina nova"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","gu",{toolbar:"નવુ પાનું"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","he",{toolbar:"דף חדש"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hi",{toolbar:"नया पेज"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hr",{toolbar:"Nova stranica"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hu",{toolbar:"Új oldal"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","id",{toolbar:"Halaman Baru"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","is",{toolbar:"Ný síða"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","it",{toolbar:"Nuova pagina"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ja",{toolbar:"新しいページ"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ka",{toolbar:"ახალი გვერდი"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","km",{toolbar:"ទំព័រ​ថ្មី"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ko",{toolbar:"새 페이지"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ku",{toolbar:"پەڕەیەکی نوێ"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","lt",{toolbar:"Naujas puslapis"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","lv",{toolbar:"Jauna lapa"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/mk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","mk",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","mn",{toolbar:"Шинэ хуудас"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ms",{toolbar:"Helaian Baru"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","nb",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","nl",{toolbar:"Nieuwe pagina"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","no",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","oc",{toolbar:"Pagina novèla"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pl",{toolbar:"Nowa strona"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pt-br",{toolbar:"Novo"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pt",{toolbar:"Nova página"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ro",{toolbar:"Pagină nouă"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ru",{toolbar:"Новая страница"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","si",{toolbar:"නව පිටුවක්"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sk",{toolbar:"Nová stránka"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sl",{toolbar:"Nova stran"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sq",{toolbar:"Faqe e Re"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sr",{toolbar:"Нова страница"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sv",{toolbar:"Ny sida"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","tr",{toolbar:"Yeni Sayfa"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","tt",{toolbar:"Яңа бит"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ug",{toolbar:"يېڭى بەت"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","uk",{toolbar:"Нова сторінка"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","vi",{toolbar:"Trang mới"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","zh-cn",{toolbar:"新建"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/newpage/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","zh",{toolbar:"新增網頁"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/preview/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("preview","sr",{preview:"Изглед странице"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","af",{toolbar:"Druk"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ar",{toolbar:"طباعة"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","az",{toolbar:"Çap et"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","bg",{toolbar:"Печат"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","bs",{toolbar:"Štampaj"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ca",{toolbar:"Imprimeix"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","cs",{toolbar:"Tisk"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","cy",{toolbar:"Argraffu"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","da",{toolbar:"Udskriv"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","de-ch",{toolbar:"Drucken"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","de",{toolbar:"Drucken"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","el",{toolbar:"Εκτύπωση"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","eo",{toolbar:"Presi"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","es-mx",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","es",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","eu",{toolbar:"Inprimatu"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fa",{toolbar:"چاپ"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fi",{toolbar:"Tulosta"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fo",{toolbar:"Prenta"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fr-ca",{toolbar:"Imprimer"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fr",{toolbar:"Imprimer"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","gl",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","gu",{toolbar:"પ્રિન્ટ"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","he",{toolbar:"הדפסה"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hi",{toolbar:"प्रिन्ट"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hr",{toolbar:"Ispiši"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hu",{toolbar:"Nyomtatás"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","id",{toolbar:"Cetak"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","is",{toolbar:"Prenta"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","it",{toolbar:"Stampa"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ja",{toolbar:"印刷"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ka",{toolbar:"ბეჭდვა"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","km",{toolbar:"បោះពុម្ព"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ko",{toolbar:"인쇄"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ku",{toolbar:"چاپکردن"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","lt",{toolbar:"Spausdinti"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","lv",{toolbar:"Drukāt"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","mn",{toolbar:"Хэвлэх"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ms",{toolbar:"Cetak"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","nb",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","nl",{toolbar:"Afdrukken"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","no",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","oc",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","pl",{toolbar:"Drukuj"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","pt-br",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","pt",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ro",{toolbar:"Printează"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ru",{toolbar:"Печать"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sk",{toolbar:"Tlač"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sl",{toolbar:"Natisni"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sq",{toolbar:"Shtype"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sr-latn",{toolbar:"Štampa"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sr",{toolbar:"Штампа"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sv",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","th",{toolbar:"สั่งพิมพ์"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","tr",{toolbar:"Yazdır"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","tt",{toolbar:"Бастыру"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ug",{toolbar:"باس "}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","uk",{toolbar:"Друк"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","vi",{toolbar:"In"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","zh-cn",{toolbar:"打印"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/print/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","zh",{toolbar:"列印"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","af",{toolbar:"Bewaar"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ar",{toolbar:"حفظ"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","az",{toolbar:"Yadda saxla"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bg",{toolbar:"Запис"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bn",{toolbar:"সংরক্ষন করি"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bs",{toolbar:"Snimi"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ca",{toolbar:"Desa"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","cs",{toolbar:"Uložit"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","cy",{toolbar:"Cadw"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","da",{toolbar:"Gem"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","de-ch",{toolbar:"Speichern"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","de",{toolbar:"Speichern"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","el",{toolbar:"Αποθήκευση"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-au",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-ca",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-gb",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","eo",{toolbar:"Konservi"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","es-mx",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","es",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","et",{toolbar:"Salvestamine"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","eu",{toolbar:"Gorde"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fa",{toolbar:"ذخیره"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fi",{toolbar:"Tallenna"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fo",{toolbar:"Goym"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fr-ca",{toolbar:"Sauvegarder"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fr",{toolbar:"Enregistrer"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","gl",{toolbar:"Gardar"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","gu",{toolbar:"સેવ"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","he",{toolbar:"שמירה"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hi",{toolbar:"सेव"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hr",{toolbar:"Snimi"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hu",{toolbar:"Mentés"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","id",{toolbar:"Simpan"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","is",{toolbar:"Vista"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","it",{toolbar:"Salva"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ja",{toolbar:"保存"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ka",{toolbar:"ჩაწერა"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","km",{toolbar:"រក្សាទុក"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ko",{toolbar:"저장"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ku",{toolbar:"پاشکەوتکردن"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","lt",{toolbar:"Išsaugoti"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","lv",{toolbar:"Saglabāt"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/mk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","mk",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","mn",{toolbar:"Хадгалах"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ms",{toolbar:"Simpan"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","nb",{toolbar:"Lagre"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","nl",{toolbar:"Opslaan"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","no",{toolbar:"Lagre"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","oc",{toolbar:"Enregistrar"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pl",{toolbar:"Zapisz"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pt-br",{toolbar:"Salvar"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pt",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ro",{toolbar:"Salvează"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ru",{toolbar:"Сохранить"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sk",{toolbar:"Uložiť"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sl",{toolbar:"Shrani"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sq",{toolbar:"Ruaje"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sr-latn",{toolbar:"Sačuvaj"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sr",{toolbar:"Сачувај"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sv",{toolbar:"Spara"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","th",{toolbar:"บันทึก"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","tr",{toolbar:"Kaydet"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","tt",{toolbar:"Саклау"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ug",{toolbar:"ساقلا"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","uk",{toolbar:"Зберегти"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","vi",{toolbar:"Lưu"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","zh-cn",{toolbar:"保存"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/save/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","zh",{toolbar:"儲存"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","af",{toolbar:"Selekteer alles"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ar",{toolbar:"تحديد الكل"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","az",{toolbar:"Hamısını seç"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","bg",{toolbar:"Избери всичко"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","bs",{toolbar:"Selektuj sve"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","cs",{toolbar:"Vybrat vše"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","cy",{toolbar:"Dewis Popeth"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","da",{toolbar:"Vælg alt"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","de",{toolbar:"Alles auswählen"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","el",{toolbar:"Επιλογή όλων"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","eo",{toolbar:"Elekti ĉion"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","es",{toolbar:"Seleccionar Todo"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","et",{toolbar:"Kõige valimine"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","eu",{toolbar:"Hautatu dena"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fa",{toolbar:"گزینش همه"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fi",{toolbar:"Valitse kaikki"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fo",{toolbar:"Markera alt"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","he",{toolbar:"בחירת הכל"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","hr",{toolbar:"Odaberi sve"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","hu",{toolbar:"Mindent kijelöl"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","id",{toolbar:"Pilih Semua"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","is",{toolbar:"Velja allt"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","it",{toolbar:"Seleziona tutto"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ja",{toolbar:"すべて選択"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","km",{toolbar:"រើស​ទាំង​អស់"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ko",{toolbar:"모두 선택"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","lt",{toolbar:"Pažymėti viską"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","lv",{toolbar:"Iezīmēt visu"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ms",{toolbar:"Pilih Semua"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","nb",{toolbar:"Merk alt"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","no",{toolbar:"Merk alt"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","oc",{toolbar:"Seleccionar tot"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","pl",{toolbar:"Zaznacz wszystko"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","pt",{toolbar:"Selecionar tudo"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ru",{toolbar:"Выделить все"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","si",{toolbar:"සියල්ලම "}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sk",{toolbar:"Vybrať všetko"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sl",{toolbar:"Izberi vse"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sr",{toolbar:"Означи све"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sv",{toolbar:"Markera allt"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","th",{toolbar:"เลือกทั้งหมด"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","tr",{toolbar:"Tümünü Seç"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","tt",{toolbar:"Барысын сайлау"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ug",{toolbar:"ھەممىنى تاللا"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","uk",{toolbar:"Виділити все"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","vi",{toolbar:"Chọn tất cả"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","zh-cn",{toolbar:"全选"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/selectall/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","zh",{toolbar:"全選"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","af",{toolbar:"Toon blokke"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ar",{toolbar:"مخطط تفصيلي"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","cs",{toolbar:"Ukázat bloky"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","cy",{toolbar:"Dangos Blociau"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fa",{toolbar:"نمایش بلوک‌ها"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fo",{toolbar:"Vís blokkar"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","gu",{toolbar:"બ્લૉક બતાવવું"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","he",{toolbar:"הצגת בלוקים"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","hi",{toolbar:"ब्लॉक दिखायें"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","is",{toolbar:"Sýna blokkir"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ja",{toolbar:"ブロック表示"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","km",{toolbar:"បង្ហាញ​ប្លក់"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ko",{toolbar:"블록 보기"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","lt",{toolbar:"Rodyti blokus"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","lv",{toolbar:"Parādīt blokus"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","nb",{toolbar:"Vis blokker"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","nl",{toolbar:"Toon blokken"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","no",{toolbar:"Vis blokker"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","pl",{toolbar:"Pokaż bloki"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","pt",{toolbar:"Exibir blocos"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sk",{toolbar:"Ukázať bloky"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sl",{toolbar:"Prikaži ograde"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sq",{toolbar:"Shfaq Blloqet"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ug",{toolbar:"بۆلەكنى كۆرسەت"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","zh-cn",{toolbar:"显示区块"}); -------------------------------------------------------------------------------- /public/bower_components/ckeditor/plugins/showblocks/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","zh",{toolbar:"顯示區塊"}); -------------------------------------------------------------------------------- /public/bower_components/fancybox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | -------------------------------------------------------------------------------- /public/bower_components/fastclick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/fastclick/LICENSE -------------------------------------------------------------------------------- /public/bower_components/ion.rangeSlider/.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /public/bower_components/jquery-knob/.gitignore: -------------------------------------------------------------------------------- 1 | nbproject/ -------------------------------------------------------------------------------- /public/bower_components/jquery-sparkline/src/footer.js: -------------------------------------------------------------------------------- 1 | }))}(document, Math)); 2 | -------------------------------------------------------------------------------- /public/bower_components/jquery-sparkline/version.txt: -------------------------------------------------------------------------------- 1 | 2.1.3 2 | -------------------------------------------------------------------------------- /public/bower_components/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/jquery/README.md -------------------------------------------------------------------------------- /public/bower_components/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/jquery/bower.json -------------------------------------------------------------------------------- /public/bower_components/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/jquery/src/css.js -------------------------------------------------------------------------------- /public/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/bower_components/jvectormap/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | jquery.jvectormap.min.js 3 | -------------------------------------------------------------------------------- /public/bower_components/mocha/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/mocha/.bower.json -------------------------------------------------------------------------------- /public/bower_components/mocha/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/mocha/History.md -------------------------------------------------------------------------------- /public/bower_components/mocha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/mocha/LICENSE -------------------------------------------------------------------------------- /public/bower_components/mocha/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/mocha/Readme.md -------------------------------------------------------------------------------- /public/bower_components/mocha/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/mocha/bower.json -------------------------------------------------------------------------------- /public/bower_components/mocha/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/mocha/mocha.css -------------------------------------------------------------------------------- /public/bower_components/mocha/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/mocha/mocha.js -------------------------------------------------------------------------------- /public/bower_components/moment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/moment/LICENSE -------------------------------------------------------------------------------- /public/bower_components/moment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/moment/README.md -------------------------------------------------------------------------------- /public/bower_components/moment/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/moment/bower.json -------------------------------------------------------------------------------- /public/bower_components/moment/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/moment/moment.js -------------------------------------------------------------------------------- /public/bower_components/raphael/dev/test/vml/dom.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | module('DOM'); 4 | 5 | })(); -------------------------------------------------------------------------------- /public/bower_components/raphael/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/raphael/yarn.lock -------------------------------------------------------------------------------- /public/bower_components/select2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/js/i18n/build.txt 3 | .sass-cache 4 | -------------------------------------------------------------------------------- /public/bower_components/select2/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/select2/.jshintrc -------------------------------------------------------------------------------- /public/bower_components/select2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/bower_components/select2/README.md -------------------------------------------------------------------------------- /public/css/admin-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/css/admin-style.css -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/bagan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/css/bagan.css -------------------------------------------------------------------------------- /public/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/css/custom.css -------------------------------------------------------------------------------- /public/css/desa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/css/desa.css -------------------------------------------------------------------------------- /public/css/placeholder-loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/css/placeholder-loading.css -------------------------------------------------------------------------------- /public/css/placeholder-loading.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/css/placeholder-loading.min.css -------------------------------------------------------------------------------- /public/css/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/css/slider.css -------------------------------------------------------------------------------- /public/css/swiper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/css/swiper.min.css -------------------------------------------------------------------------------- /public/css/upload_images.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/css/upload_images.less -------------------------------------------------------------------------------- /public/icon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/icon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/icon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/icon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/icon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/icon/favicon-16x16.png -------------------------------------------------------------------------------- /public/icon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/icon/favicon-32x32.png -------------------------------------------------------------------------------- /public/icon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/icon/favicon-96x96.png -------------------------------------------------------------------------------- /public/icon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/icon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/icon/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/icon/social.png -------------------------------------------------------------------------------- /public/img/bsre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/img/bsre.png -------------------------------------------------------------------------------- /public/img/cacat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/img/cacat_logo.png -------------------------------------------------------------------------------- /public/img/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/img/download.png -------------------------------------------------------------------------------- /public/img/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/img/fb.png -------------------------------------------------------------------------------- /public/img/layanan/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/img/layanan/logo.png -------------------------------------------------------------------------------- /public/img/layanan/stempel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/img/layanan/stempel.png -------------------------------------------------------------------------------- /public/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/img/login.png -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/img/logo.png -------------------------------------------------------------------------------- /public/img/no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/img/no-image.png -------------------------------------------------------------------------------- /public/img/no-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/img/no-profile.png -------------------------------------------------------------------------------- /public/img/opendesa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/img/opendesa.png -------------------------------------------------------------------------------- /public/img/pengguna/kuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/img/pengguna/kuser.png -------------------------------------------------------------------------------- /public/img/pengguna/wuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/img/pengguna/wuser.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/index.php -------------------------------------------------------------------------------- /public/installer/css/sass/style.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/installer/css/sass/style.sass -------------------------------------------------------------------------------- /public/installer/css/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/installer/css/scss/style.scss -------------------------------------------------------------------------------- /public/installer/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/installer/css/style.css -------------------------------------------------------------------------------- /public/installer/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/installer/css/style.css.map -------------------------------------------------------------------------------- /public/installer/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/installer/css/style.min.css -------------------------------------------------------------------------------- /public/installer/css/style.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/installer/css/style.min.css.map -------------------------------------------------------------------------------- /public/installer/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/installer/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/installer/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/installer/fonts/ionicons.eot -------------------------------------------------------------------------------- /public/installer/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/installer/fonts/ionicons.svg -------------------------------------------------------------------------------- /public/installer/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/installer/fonts/ionicons.ttf -------------------------------------------------------------------------------- /public/installer/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/installer/fonts/ionicons.woff -------------------------------------------------------------------------------- /public/installer/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/installer/img/background.png -------------------------------------------------------------------------------- /public/installer/img/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/installer/img/pattern.png -------------------------------------------------------------------------------- /public/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/admin.js -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/custom.js -------------------------------------------------------------------------------- /public/js/github-buttons/buttons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/github-buttons/buttons.min.js -------------------------------------------------------------------------------- /public/js/html2canvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/html2canvas.min.js -------------------------------------------------------------------------------- /public/js/leaflet/L.Control.Locate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/L.Control.Locate.css -------------------------------------------------------------------------------- /public/js/leaflet/MarkerCluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/MarkerCluster.css -------------------------------------------------------------------------------- /public/js/leaflet/images/gpx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/images/gpx.png -------------------------------------------------------------------------------- /public/js/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /public/js/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/images/layers.png -------------------------------------------------------------------------------- /public/js/leaflet/leaflet-geoman.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet-geoman.css -------------------------------------------------------------------------------- /public/js/leaflet/leaflet-geoman.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet-geoman.min.js -------------------------------------------------------------------------------- /public/js/leaflet/leaflet-providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet-providers.js -------------------------------------------------------------------------------- /public/js/leaflet/leaflet-src.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet-src.esm.js -------------------------------------------------------------------------------- /public/js/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /public/js/leaflet/leaflet-src.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet-src.js.map -------------------------------------------------------------------------------- /public/js/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet.css -------------------------------------------------------------------------------- /public/js/leaflet/leaflet.draw-src.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet.draw-src.css -------------------------------------------------------------------------------- /public/js/leaflet/leaflet.draw-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet.draw-src.js -------------------------------------------------------------------------------- /public/js/leaflet/leaflet.draw-src.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet.draw-src.map -------------------------------------------------------------------------------- /public/js/leaflet/leaflet.draw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet.draw.css -------------------------------------------------------------------------------- /public/js/leaflet/leaflet.draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet.draw.js -------------------------------------------------------------------------------- /public/js/leaflet/leaflet.filelayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet.filelayer.js -------------------------------------------------------------------------------- /public/js/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet.js -------------------------------------------------------------------------------- /public/js/leaflet/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/leaflet.js.map -------------------------------------------------------------------------------- /public/js/leaflet/togeojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/togeojson.js -------------------------------------------------------------------------------- /public/js/leaflet/togpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/togpx.js -------------------------------------------------------------------------------- /public/js/leaflet/turf.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/leaflet/turf.min.js -------------------------------------------------------------------------------- /public/js/swiper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/swiper.min.js -------------------------------------------------------------------------------- /public/js/tinymce/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/.npmignore -------------------------------------------------------------------------------- /public/js/tinymce/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/CHANGELOG.md -------------------------------------------------------------------------------- /public/js/tinymce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/README.md -------------------------------------------------------------------------------- /public/js/tinymce/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/bower.json -------------------------------------------------------------------------------- /public/js/tinymce/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/composer.json -------------------------------------------------------------------------------- /public/js/tinymce/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/license.txt -------------------------------------------------------------------------------- /public/js/tinymce/models/dom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/models/dom/index.js -------------------------------------------------------------------------------- /public/js/tinymce/models/dom/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/models/dom/model.js -------------------------------------------------------------------------------- /public/js/tinymce/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/package.json -------------------------------------------------------------------------------- /public/js/tinymce/plugins/code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/plugins/code/index.js -------------------------------------------------------------------------------- /public/js/tinymce/plugins/help/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/plugins/help/index.js -------------------------------------------------------------------------------- /public/js/tinymce/plugins/link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/plugins/link/index.js -------------------------------------------------------------------------------- /public/js/tinymce/plugins/save/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/plugins/save/index.js -------------------------------------------------------------------------------- /public/js/tinymce/tinymce.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/tinymce.d.ts -------------------------------------------------------------------------------- /public/js/tinymce/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/tinymce.js -------------------------------------------------------------------------------- /public/js/tinymce/tinymce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/tinymce/tinymce.min.js -------------------------------------------------------------------------------- /public/js/upload_images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/js/upload_images.js -------------------------------------------------------------------------------- /public/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/manifest.webmanifest -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/swagger-ui/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/swagger-ui/favicon-16x16.png -------------------------------------------------------------------------------- /public/swagger-ui/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/swagger-ui/favicon-32x32.png -------------------------------------------------------------------------------- /public/swagger-ui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/swagger-ui/index.css -------------------------------------------------------------------------------- /public/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/swagger-ui/index.html -------------------------------------------------------------------------------- /public/swagger-ui/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/swagger-ui/oauth2-redirect.html -------------------------------------------------------------------------------- /public/swagger-ui/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/swagger-ui/swagger-ui-bundle.js -------------------------------------------------------------------------------- /public/swagger-ui/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/swagger-ui/swagger-ui.css -------------------------------------------------------------------------------- /public/swagger-ui/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/swagger-ui/swagger-ui.css.map -------------------------------------------------------------------------------- /public/swagger-ui/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/swagger-ui/swagger-ui.js -------------------------------------------------------------------------------- /public/swagger-ui/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/swagger-ui/swagger-ui.js.map -------------------------------------------------------------------------------- /public/themes/opendk/default/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/themes/opendk/default/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/themes/opendk/default/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/laravel-filemanager/files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/laravel-filemanager/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/scribe/images/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/public/vendor/scribe/images/navbar.png -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/lang/id/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/lang/id/auth.php -------------------------------------------------------------------------------- /resources/lang/id/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/lang/id/pagination.php -------------------------------------------------------------------------------- /resources/lang/id/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/lang/id/passwords.php -------------------------------------------------------------------------------- /resources/lang/id/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/lang/id/validation.php -------------------------------------------------------------------------------- /resources/views/auth/captcha.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/auth/captcha.blade.php -------------------------------------------------------------------------------- /resources/views/auth/change.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/auth/change.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/counter/cetak.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/counter/cetak.blade.php -------------------------------------------------------------------------------- /resources/views/counter/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/counter/index.blade.php -------------------------------------------------------------------------------- /resources/views/emails/2fa.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/emails/2fa.blade.php -------------------------------------------------------------------------------- /resources/views/emails/otp.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/emails/otp.blade.php -------------------------------------------------------------------------------- /resources/views/errors/401.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/errors/401.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/errors/419.blade.php -------------------------------------------------------------------------------- /resources/views/errors/429.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/errors/429.blade.php -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/errors/500.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/errors/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/errors/layout.blade.php -------------------------------------------------------------------------------- /resources/views/forms/aksi.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/forms/aksi.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/offline.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/offline.blade.php -------------------------------------------------------------------------------- /resources/views/role/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/role/create.blade.php -------------------------------------------------------------------------------- /resources/views/role/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/role/edit.blade.php -------------------------------------------------------------------------------- /resources/views/role/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/role/form.blade.php -------------------------------------------------------------------------------- /resources/views/role/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/role/index.blade.php -------------------------------------------------------------------------------- /resources/views/scribe/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/scribe/index.blade.php -------------------------------------------------------------------------------- /resources/views/sitemap/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/sitemap/index.blade.php -------------------------------------------------------------------------------- /resources/views/surat/arsip.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/surat/arsip.blade.php -------------------------------------------------------------------------------- /resources/views/surat/qrcode.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/surat/qrcode.blade.php -------------------------------------------------------------------------------- /resources/views/swagger.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/swagger.blade.php -------------------------------------------------------------------------------- /resources/views/user/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/user/create.blade.php -------------------------------------------------------------------------------- /resources/views/user/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/user/edit.blade.php -------------------------------------------------------------------------------- /resources/views/user/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/user/form.blade.php -------------------------------------------------------------------------------- /resources/views/user/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/user/index.blade.php -------------------------------------------------------------------------------- /resources/views/user/password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/resources/views/user/password.blade.php -------------------------------------------------------------------------------- /resources/views/user/show.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /routes/api-frontend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/routes/api-frontend.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/storage/app/.gitignore -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | !template_upload/ 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/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/laravel-excel/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /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/komplain/999123/lampiran1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/storage/komplain/999123/lampiran1.jpg -------------------------------------------------------------------------------- /storage/komplain/999123/lampiran2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/storage/komplain/999123/lampiran2.jpg -------------------------------------------------------------------------------- /storage/komplain/999123/lampiran3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/storage/komplain/999123/lampiran3.jpg -------------------------------------------------------------------------------- /storage/komplain/999123/lampiran4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/storage/komplain/999123/lampiran4.jpg -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /themes/opendk/default/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | vendor/ 3 | .DS_Store 4 | *.cache 5 | -------------------------------------------------------------------------------- /themes/opendk/default/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/themes/opendk/default/composer.json -------------------------------------------------------------------------------- /themes/opendk/default/lang/en/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/opendk/default/public/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/opendk/default/public/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/opendk/default/public/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSID/OpenDK/HEAD/vite.config.js --------------------------------------------------------------------------------