├── .editorconfig ├── .gitignore ├── .htaccess ├── README.md ├── application ├── .htaccess ├── cache │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Admin.php │ ├── Login.php │ ├── Register.php │ ├── Report.php │ ├── User.php │ └── index.html ├── core │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ ├── Captcha.php │ ├── Pdf.php │ ├── index.html │ ├── phpcaptcha │ │ ├── Captcha.php │ │ └── Resources │ │ │ ├── fonts │ │ │ ├── AntykwaBold.ttf │ │ │ ├── Candice.ttf │ │ │ ├── Ding-DongDaddyO.ttf │ │ │ ├── Duality.ttf │ │ │ ├── Heineken.ttf │ │ │ ├── Jura.ttf │ │ │ ├── StayPuft.ttf │ │ │ ├── TimesNewRomanBold.ttf │ │ │ └── VeraSansBold.ttf │ │ │ ├── tools │ │ │ └── dictionary-import │ │ │ │ ├── README.txt │ │ │ │ ├── importwords.php │ │ │ │ ├── sample-words-en.txt │ │ │ │ └── sample-words-es.txt │ │ │ └── words │ │ │ ├── en.php │ │ │ └── es.php │ └── tcpdf │ │ ├── CHANGELOG.TXT │ │ ├── LICENSE.TXT │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ └── tcpdf_config.php │ │ ├── examples │ │ ├── barcodes │ │ │ ├── example_1d_html.php │ │ │ ├── example_1d_png.php │ │ │ ├── example_1d_svg.php │ │ │ ├── example_1d_svgi.php │ │ │ ├── example_2d_datamatrix_html.php │ │ │ ├── example_2d_datamatrix_png.php │ │ │ ├── example_2d_datamatrix_svg.php │ │ │ ├── example_2d_datamatrix_svgi.php │ │ │ ├── example_2d_pdf417_html.php │ │ │ ├── example_2d_pdf417_png.php │ │ │ ├── example_2d_pdf417_svg.php │ │ │ ├── example_2d_pdf417_svgi.php │ │ │ ├── example_2d_qrcode_html.php │ │ │ ├── example_2d_qrcode_png.php │ │ │ ├── example_2d_qrcode_svg.php │ │ │ ├── example_2d_qrcode_svgi.php │ │ │ ├── tcpdf_barcodes_1d_include.php │ │ │ └── tcpdf_barcodes_2d_include.php │ │ ├── config │ │ │ └── tcpdf_config_alt.php │ │ ├── data │ │ │ ├── cert │ │ │ │ ├── tcpdf.crt │ │ │ │ ├── tcpdf.fdf │ │ │ │ └── tcpdf.p12 │ │ │ ├── chapter_demo_1.txt │ │ │ ├── chapter_demo_2.txt │ │ │ ├── table_data_demo.txt │ │ │ └── utf8test.txt │ │ ├── example_001.php │ │ ├── example_002.php │ │ ├── example_003.php │ │ ├── example_004.php │ │ ├── example_005.php │ │ ├── example_006.php │ │ ├── example_007.php │ │ ├── example_008.php │ │ ├── example_009.php │ │ ├── example_010.php │ │ ├── example_011.php │ │ ├── example_012.pdf │ │ ├── example_012.php │ │ ├── example_013.php │ │ ├── example_014.php │ │ ├── example_015.php │ │ ├── example_016.php │ │ ├── example_017.php │ │ ├── example_018.php │ │ ├── example_019.php │ │ ├── example_020.php │ │ ├── example_021.php │ │ ├── example_022.php │ │ ├── example_023.php │ │ ├── example_024.php │ │ ├── example_025.php │ │ ├── example_026.php │ │ ├── example_027.php │ │ ├── example_028.php │ │ ├── example_029.php │ │ ├── example_030.php │ │ ├── example_031.php │ │ ├── example_032.php │ │ ├── example_033.php │ │ ├── example_034.php │ │ ├── example_035.php │ │ ├── example_036.php │ │ ├── example_037.php │ │ ├── example_038.php │ │ ├── example_039.php │ │ ├── example_040.php │ │ ├── example_041.php │ │ ├── example_042.php │ │ ├── example_043.php │ │ ├── example_044.php │ │ ├── example_045.php │ │ ├── example_046.php │ │ ├── example_047.php │ │ ├── example_048.php │ │ ├── example_049.php │ │ ├── example_050.php │ │ ├── example_051.php │ │ ├── example_052.php │ │ ├── example_053.php │ │ ├── example_054.php │ │ ├── example_055.php │ │ ├── example_056.php │ │ ├── example_057.php │ │ ├── example_058.php │ │ ├── example_059.php │ │ ├── example_060.php │ │ ├── example_061.php │ │ ├── example_062.php │ │ ├── example_063.php │ │ ├── example_064.php │ │ ├── example_065.php │ │ ├── images │ │ │ ├── _blank.png │ │ │ ├── alpha.png │ │ │ ├── image_demo.jpg │ │ │ ├── image_with_alpha.png │ │ │ ├── img.png │ │ │ ├── logo.png │ │ │ ├── logo_example.gif │ │ │ ├── logo_example.jpg │ │ │ ├── logo_example.png │ │ │ ├── tcpdf_box.ai │ │ │ ├── tcpdf_box.svg │ │ │ ├── tcpdf_cell.png │ │ │ ├── tcpdf_logo.jpg │ │ │ ├── tcpdf_signature.png │ │ │ ├── testsvg.svg │ │ │ ├── tux.svg │ │ │ └── unsada.jpg │ │ ├── index.php │ │ ├── lang │ │ │ ├── afr.php │ │ │ ├── ara.php │ │ │ ├── aze.php │ │ │ ├── bel.php │ │ │ ├── bra.php │ │ │ ├── bul.php │ │ │ ├── cat.php │ │ │ ├── ces.php │ │ │ ├── chi.php │ │ │ ├── cym.php │ │ │ ├── dan.php │ │ │ ├── eng.php │ │ │ ├── est.php │ │ │ ├── eus.php │ │ │ ├── far.php │ │ │ ├── fra.php │ │ │ ├── ger.php │ │ │ ├── gle.php │ │ │ ├── glg.php │ │ │ ├── hat.php │ │ │ ├── heb.php │ │ │ ├── hrv.php │ │ │ ├── hun.php │ │ │ ├── hye.php │ │ │ ├── ind.php │ │ │ ├── ita.php │ │ │ ├── jpn.php │ │ │ ├── kat.php │ │ │ ├── kor.php │ │ │ ├── mkd.php │ │ │ ├── mlt.php │ │ │ ├── msa.php │ │ │ ├── nld.php │ │ │ ├── nob.php │ │ │ ├── pol.php │ │ │ ├── por.php │ │ │ ├── ron.php │ │ │ ├── rus.php │ │ │ ├── slv.php │ │ │ ├── spa.php │ │ │ ├── sqi.php │ │ │ ├── srp.php │ │ │ ├── swa.php │ │ │ ├── swe.php │ │ │ ├── ukr.php │ │ │ ├── urd.php │ │ │ ├── yid.php │ │ │ └── zho.php │ │ └── tcpdf_include.php │ │ ├── fonts │ │ ├── ae_fonts_2.0 │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── ChangeLog.9745.BAK │ │ │ └── README │ │ ├── aealarabiya.ctg.z │ │ ├── aealarabiya.php │ │ ├── aealarabiya.z │ │ ├── aefurat.ctg.z │ │ ├── aefurat.php │ │ ├── aefurat.z │ │ ├── cid0cs.php │ │ ├── cid0ct.php │ │ ├── cid0jp.php │ │ ├── cid0kr.php │ │ ├── courier.php │ │ ├── courierb.php │ │ ├── courierbi.php │ │ ├── courieri.php │ │ ├── dejavu-fonts-ttf-2.33 │ │ │ ├── AUTHORS │ │ │ ├── BUGS │ │ │ ├── LICENSE │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── langcover.txt │ │ │ ├── status.txt │ │ │ └── unicover.txt │ │ ├── dejavu-fonts-ttf-2.34 │ │ │ ├── AUTHORS │ │ │ ├── BUGS │ │ │ ├── LICENSE │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── langcover.txt │ │ │ ├── status.txt │ │ │ └── unicover.txt │ │ ├── dejavusans.ctg.z │ │ ├── dejavusans.php │ │ ├── dejavusans.z │ │ ├── dejavusansb.ctg.z │ │ ├── dejavusansb.php │ │ ├── dejavusansb.z │ │ ├── dejavusansbi.ctg.z │ │ ├── dejavusansbi.php │ │ ├── dejavusansbi.z │ │ ├── dejavusanscondensed.ctg.z │ │ ├── dejavusanscondensed.php │ │ ├── dejavusanscondensed.z │ │ ├── dejavusanscondensedb.ctg.z │ │ ├── dejavusanscondensedb.php │ │ ├── dejavusanscondensedb.z │ │ ├── dejavusanscondensedbi.ctg.z │ │ ├── dejavusanscondensedbi.php │ │ ├── dejavusanscondensedbi.z │ │ ├── dejavusanscondensedi.ctg.z │ │ ├── dejavusanscondensedi.php │ │ ├── dejavusanscondensedi.z │ │ ├── dejavusansextralight.ctg.z │ │ ├── dejavusansextralight.php │ │ ├── dejavusansextralight.z │ │ ├── dejavusansi.ctg.z │ │ ├── dejavusansi.php │ │ ├── dejavusansi.z │ │ ├── dejavusansmono.ctg.z │ │ ├── dejavusansmono.php │ │ ├── dejavusansmono.z │ │ ├── dejavusansmonob.ctg.z │ │ ├── dejavusansmonob.php │ │ ├── dejavusansmonob.z │ │ ├── dejavusansmonobi.ctg.z │ │ ├── dejavusansmonobi.php │ │ ├── dejavusansmonobi.z │ │ ├── dejavusansmonoi.ctg.z │ │ ├── dejavusansmonoi.php │ │ ├── dejavusansmonoi.z │ │ ├── dejavuserif.ctg.z │ │ ├── dejavuserif.php │ │ ├── dejavuserif.z │ │ ├── dejavuserifb.ctg.z │ │ ├── dejavuserifb.php │ │ ├── dejavuserifb.z │ │ ├── dejavuserifbi.ctg.z │ │ ├── dejavuserifbi.php │ │ ├── dejavuserifbi.z │ │ ├── dejavuserifcondensed.ctg.z │ │ ├── dejavuserifcondensed.php │ │ ├── dejavuserifcondensed.z │ │ ├── dejavuserifcondensedb.ctg.z │ │ ├── dejavuserifcondensedb.php │ │ ├── dejavuserifcondensedb.z │ │ ├── dejavuserifcondensedbi.ctg.z │ │ ├── dejavuserifcondensedbi.php │ │ ├── dejavuserifcondensedbi.z │ │ ├── dejavuserifcondensedi.ctg.z │ │ ├── dejavuserifcondensedi.php │ │ ├── dejavuserifcondensedi.z │ │ ├── dejavuserifi.ctg.z │ │ ├── dejavuserifi.php │ │ ├── dejavuserifi.z │ │ ├── freefont-20100919 │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── CREDITS │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ └── README │ │ ├── freefont-20120503 │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── CREDITS │ │ │ ├── ChangeLog │ │ │ ├── ChangeLog.10070.BAK │ │ │ ├── INSTALL │ │ │ ├── README │ │ │ ├── TROUBLESHOOTING │ │ │ └── USAGE │ │ ├── freemono.ctg.z │ │ ├── freemono.php │ │ ├── freemono.z │ │ ├── freemonob.ctg.z │ │ ├── freemonob.php │ │ ├── freemonob.z │ │ ├── freemonobi.ctg.z │ │ ├── freemonobi.php │ │ ├── freemonobi.z │ │ ├── freemonoi.ctg.z │ │ ├── freemonoi.php │ │ ├── freemonoi.z │ │ ├── freesans.ctg.z │ │ ├── freesans.php │ │ ├── freesans.z │ │ ├── freesansb.ctg.z │ │ ├── freesansb.php │ │ ├── freesansb.z │ │ ├── freesansbi.ctg.z │ │ ├── freesansbi.php │ │ ├── freesansbi.z │ │ ├── freesansi.ctg.z │ │ ├── freesansi.php │ │ ├── freesansi.z │ │ ├── freeserif.ctg.z │ │ ├── freeserif.php │ │ ├── freeserif.z │ │ ├── freeserifb.ctg.z │ │ ├── freeserifb.php │ │ ├── freeserifb.z │ │ ├── freeserifbi.ctg.z │ │ ├── freeserifbi.php │ │ ├── freeserifbi.z │ │ ├── freeserifi.ctg.z │ │ ├── freeserifi.php │ │ ├── freeserifi.z │ │ ├── helvetica.php │ │ ├── helveticab.php │ │ ├── helveticabi.php │ │ ├── helveticai.php │ │ ├── hysmyeongjostdmedium.php │ │ ├── kozgopromedium.php │ │ ├── kozminproregular.php │ │ ├── msungstdlight.php │ │ ├── pdfacourier.php │ │ ├── pdfacourier.z │ │ ├── pdfacourierb.php │ │ ├── pdfacourierb.z │ │ ├── pdfacourierbi.php │ │ ├── pdfacourierbi.z │ │ ├── pdfacourieri.php │ │ ├── pdfacourieri.z │ │ ├── pdfahelvetica.php │ │ ├── pdfahelvetica.z │ │ ├── pdfahelveticab.php │ │ ├── pdfahelveticab.z │ │ ├── pdfahelveticabi.php │ │ ├── pdfahelveticabi.z │ │ ├── pdfahelveticai.php │ │ ├── pdfahelveticai.z │ │ ├── pdfasymbol.php │ │ ├── pdfasymbol.z │ │ ├── pdfatimes.php │ │ ├── pdfatimes.z │ │ ├── pdfatimesb.php │ │ ├── pdfatimesb.z │ │ ├── pdfatimesbi.php │ │ ├── pdfatimesbi.z │ │ ├── pdfatimesi.php │ │ ├── pdfatimesi.z │ │ ├── pdfazapfdingbats.php │ │ ├── pdfazapfdingbats.z │ │ ├── stsongstdlight.php │ │ ├── symbol.php │ │ ├── times.php │ │ ├── timesb.php │ │ ├── timesbi.php │ │ ├── timesi.php │ │ ├── uni2cid_ac15.php │ │ ├── uni2cid_ag15.php │ │ ├── uni2cid_aj16.php │ │ ├── uni2cid_ak12.php │ │ └── zapfdingbats.php │ │ ├── images │ │ └── logo.png │ │ ├── include │ │ ├── barcodes │ │ │ ├── datamatrix.php │ │ │ ├── pdf417.php │ │ │ └── qrcode.php │ │ ├── sRGB.icc │ │ ├── tcpdf_colors.php │ │ ├── tcpdf_filters.php │ │ ├── tcpdf_font_data.php │ │ ├── tcpdf_fonts.php │ │ ├── tcpdf_images.php │ │ └── tcpdf_static.php │ │ ├── tcpdf.php │ │ ├── tcpdf_autoconfig.php │ │ ├── tcpdf_barcodes_1d.php │ │ ├── tcpdf_barcodes_2d.php │ │ ├── tcpdf_import.php │ │ ├── tcpdf_parser.php │ │ └── tools │ │ ├── .htaccess │ │ ├── convert_fonts_examples.txt │ │ └── tcpdf_addfont.php ├── logs │ └── index.html ├── models │ ├── M_admin.php │ ├── M_login.php │ ├── M_user.php │ └── index.html ├── third_party │ └── index.html └── views │ ├── admin │ ├── form_barangmasuk │ │ ├── form_insert.php │ │ └── form_update.php │ ├── form_satuan │ │ ├── form_insert.php │ │ └── form_update.php │ ├── form_users │ │ ├── form_insert.php │ │ └── form_update.php │ ├── index.php │ ├── index2.php │ ├── perpindahan_barang │ │ └── form_update.php │ ├── profile.php │ ├── starter.php │ ├── tabel │ │ ├── tabel_barangkeluar.php │ │ ├── tabel_barangmasuk.php │ │ └── tabel_satuan.php │ └── users.php │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── index.html │ ├── login │ ├── login.php │ └── register.php │ ├── user │ ├── index.php │ ├── setting.php │ ├── tabel │ │ ├── tabel_barangkeluar.php │ │ └── tabel_barangmasuk.php │ └── templates │ │ ├── footer.php │ │ └── header.php │ └── welcome_message.php ├── assets ├── datetimepicker │ ├── .gitattributes │ ├── .gitignore │ ├── .jshintrc │ ├── .npmignore │ ├── .travis.yml │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── build │ │ ├── build.less │ │ └── build_standalone.less │ ├── css │ │ ├── bootstrap-datetimepicker.css │ │ └── bootstrap-datetimepicker.min.css │ ├── js │ │ ├── bootstrap-datetimepicker.js │ │ ├── bootstrap-datetimepicker.min.js │ │ └── locales │ │ │ ├── bootstrap-datetimepicker.ar.js │ │ │ ├── bootstrap-datetimepicker.az.js │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ ├── bootstrap-datetimepicker.bn.js │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ ├── bootstrap-datetimepicker.ee.js │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ ├── bootstrap-datetimepicker.hy.js │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ ├── bootstrap-datetimepicker.ka.js │ │ │ ├── bootstrap-datetimepicker.ko.js │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ ├── bootstrap-datetimepicker.no.js │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ ├── less │ │ └── datetimepicker.less │ ├── minify.sh │ ├── package.json │ ├── sample in bootstrap v2 │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ ├── index.html │ │ └── jquery │ │ │ └── jquery-1.8.3.min.js │ ├── sample in bootstrap v3 │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ ├── index.html │ │ └── jquery │ │ │ └── jquery-1.8.3.min.js │ ├── screenshot │ │ ├── standard_day.png │ │ ├── standard_day_meridian.png │ │ ├── standard_decade.png │ │ ├── standard_full.png │ │ ├── standard_hour.png │ │ ├── standard_hour_meridian.png │ │ ├── standard_month.png │ │ └── standard_year.png │ └── tests │ │ ├── README.md │ │ ├── _coverage.html │ │ ├── assets │ │ ├── coverage.js │ │ ├── jquery-1.7.1.min.js │ │ ├── mock.js │ │ ├── qunit-logging.js │ │ ├── qunit.css │ │ ├── qunit.js │ │ └── utils.js │ │ ├── run-qunit.js │ │ ├── suites │ │ ├── component.js │ │ ├── events.js │ │ ├── formats.js │ │ ├── inline.js │ │ ├── keyboard_navigation │ │ │ ├── 2011.js │ │ │ ├── 2012.js │ │ │ └── all.js │ │ ├── mouse_navigation │ │ │ ├── 2011.js │ │ │ ├── 2012.js │ │ │ └── all.js │ │ └── options.js │ │ ├── tests.html │ │ └── tests.min.html ├── fontawesome │ ├── 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 ├── login │ ├── css │ │ └── style.css │ ├── js │ │ └── index.js │ └── scss │ │ └── style.scss ├── simple-sidebar │ ├── css │ │ └── simple-sidebar.css │ └── vendor │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ └── jquery │ │ ├── jquery.js │ │ └── jquery.min.js ├── style.css ├── sweetalert │ ├── .editorconfig │ ├── .gitignore │ ├── .jshintrc │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dev │ │ ├── gulpfile-wrap-template.js │ │ ├── ie9.css │ │ ├── loader-animation.css │ │ ├── modules │ │ │ ├── default-params.js │ │ │ ├── handle-click.js │ │ │ ├── handle-dom.js │ │ │ ├── handle-key.js │ │ │ ├── handle-swal-dom.js │ │ │ ├── injected-html.js │ │ │ ├── set-params.js │ │ │ └── utils.js │ │ ├── sweetalert.es6.js │ │ └── sweetalert.scss │ ├── dist │ │ ├── sweetalert-dev.js │ │ ├── sweetalert.css │ │ └── sweetalert.min.js │ ├── example │ │ ├── example.css │ │ ├── example.scss │ │ └── images │ │ │ ├── logo_big.png │ │ │ ├── logo_big@2x.png │ │ │ ├── logo_small.png │ │ │ ├── logo_small@2x.png │ │ │ ├── te-logo-small.svg │ │ │ ├── thumbs-up.jpg │ │ │ ├── vs_icon.png │ │ │ └── vs_icon@2x.png │ ├── gulpfile.js │ ├── index.html │ ├── lib │ │ ├── modules │ │ │ ├── default-params.js │ │ │ ├── handle-click.js │ │ │ ├── handle-dom.js │ │ │ ├── handle-key.js │ │ │ ├── handle-swal-dom.js │ │ │ ├── injected-html.js │ │ │ ├── set-params.js │ │ │ └── utils.js │ │ └── sweetalert.js │ ├── package.json │ ├── sweetalert.gif │ ├── test │ │ ├── index.html │ │ └── tests.js │ └── themes │ │ ├── facebook │ │ ├── facebook.css │ │ └── facebook.scss │ │ ├── google │ │ ├── google.css │ │ └── google.scss │ │ └── twitter │ │ ├── twitter.css │ │ └── twitter.scss ├── upload │ ├── logo.png │ └── user │ │ └── img │ │ ├── IMG_20170528_203824.jpg │ │ ├── IMG_20170528_2038241.jpg │ │ ├── karang_taruna_logo.png │ │ ├── karang_taruna_logo1.png │ │ ├── karang_taruna_logo2.png │ │ ├── karang_taruna_logo3.png │ │ ├── karang_taruna_logo4.png │ │ ├── logo_unsada.jpg │ │ ├── logo_unsada1.jpg │ │ ├── nopic.png │ │ ├── nopic1.png │ │ ├── nopic2.png │ │ ├── nopic3.png │ │ ├── nopic4.png │ │ ├── nopic5.png │ │ └── walpaper_ubuntu1.jpg └── web_admin │ ├── 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 │ ├── 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-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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.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 │ │ │ ├── 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-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-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.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 │ │ │ │ │ ├── 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 │ │ │ ├── filetools │ │ │ │ ├── lang │ │ │ │ │ ├── az.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.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 │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── 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-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 │ │ │ │ │ ├── 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 │ │ │ ├── lineutils │ │ │ │ └── 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-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 │ │ │ ├── notificationaggregator │ │ │ │ └── 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-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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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-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 │ │ │ │ │ ├── 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 │ │ │ ├── uploadimage │ │ │ │ └── plugin.js │ │ │ ├── uploadwidget │ │ │ │ ├── lang │ │ │ │ │ ├── az.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.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 │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── widget │ │ │ │ ├── images │ │ │ │ │ └── handle.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-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 │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.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 │ │ │ ├── widgetselection │ │ │ │ └── plugin.js │ │ │ ├── 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 │ │ └── js │ │ │ ├── jquery.dataTables.js │ │ │ └── jquery.dataTables.min.js │ ├── eve-raphael │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── e.html │ │ ├── eve.js │ │ └── package.json │ ├── 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.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.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 │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.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 │ │ ├── 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 │ ├── 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 │ │ │ ├── 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.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ └── tests.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ ├── 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.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── layout │ │ ├── boxed.html │ │ ├── collapsed-sidebar.html │ │ ├── fixed.html │ │ └── top-nav.html │ ├── mailbox │ │ ├── compose.html │ │ ├── mailbox.html │ │ └── read-mail.html │ ├── tables │ │ └── simple.html │ └── widgets.html │ └── plugins │ ├── bootstrap-slider │ ├── bootstrap-slider.js │ └── slider.css │ ├── bootstrap-wysihtml5 │ ├── bootstrap3-wysihtml5.all.js │ ├── bootstrap3-wysihtml5.all.min.js │ ├── bootstrap3-wysihtml5.css │ └── bootstrap3-wysihtml5.min.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 ├── composer.json ├── contributing.md ├── index.php ├── license.txt ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ ├── compat │ │ ├── hash.php │ │ ├── index.html │ │ ├── mbstring.php │ │ ├── password.php │ │ └── standard.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_query_builder.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── ibase │ │ │ ├── ibase_driver.php │ │ │ ├── ibase_forge.php │ │ │ ├── ibase_result.php │ │ │ ├── ibase_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ ├── pdo_utility.php │ │ │ └── subdrivers │ │ │ │ ├── index.html │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ └── pdo_sqlsrv_forge.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ ├── sqlite3_driver.php │ │ │ ├── sqlite3_forge.php │ │ │ ├── sqlite3_result.php │ │ │ └── sqlite3_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ ├── Cache_redis.php │ │ ├── Cache_wincache.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Encryption.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Javascript │ ├── Jquery.php │ └── index.html │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session │ ├── Session.php │ ├── SessionHandlerInterface.php │ ├── Session_driver.php │ ├── drivers │ │ ├── Session_database_driver.php │ │ ├── Session_files_driver.php │ │ ├── Session_memcached_driver.php │ │ ├── Session_redis_driver.php │ │ └── index.html │ └── index.html │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ └── index.html ├── user_guide ├── .buildinfo ├── DCO.html ├── _downloads │ └── ELDocs.tmbundle.zip ├── _images │ ├── appflowchart.gif │ └── smile.gif ├── _static │ ├── ajax-loader.gif │ ├── basic.css │ ├── ci-icon.ico │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── css │ │ ├── badge_only.css │ │ ├── citheme.css │ │ └── theme.css │ ├── doctools.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── images │ │ └── ci-icon.ico │ ├── jquery-3.1.0.js │ ├── jquery.js │ ├── js │ │ ├── oldtheme.js │ │ └── theme.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── changelog.html ├── contributing │ └── index.html ├── database │ ├── caching.html │ ├── call_function.html │ ├── configuration.html │ ├── connecting.html │ ├── db_driver_reference.html │ ├── examples.html │ ├── forge.html │ ├── helpers.html │ ├── index.html │ ├── metadata.html │ ├── queries.html │ ├── query_builder.html │ ├── results.html │ ├── transactions.html │ └── utilities.html ├── documentation │ └── index.html ├── general │ ├── alternative_php.html │ ├── ancillary_classes.html │ ├── autoloader.html │ ├── caching.html │ ├── cli.html │ ├── common_functions.html │ ├── compatibility_functions.html │ ├── controllers.html │ ├── core_classes.html │ ├── creating_drivers.html │ ├── creating_libraries.html │ ├── credits.html │ ├── drivers.html │ ├── environments.html │ ├── errors.html │ ├── helpers.html │ ├── hooks.html │ ├── index.html │ ├── libraries.html │ ├── managing_apps.html │ ├── models.html │ ├── profiling.html │ ├── requirements.html │ ├── reserved_names.html │ ├── routing.html │ ├── security.html │ ├── styleguide.html │ ├── urls.html │ ├── views.html │ └── welcome.html ├── genindex.html ├── helpers │ ├── array_helper.html │ ├── captcha_helper.html │ ├── cookie_helper.html │ ├── date_helper.html │ ├── directory_helper.html │ ├── download_helper.html │ ├── email_helper.html │ ├── file_helper.html │ ├── form_helper.html │ ├── html_helper.html │ ├── index.html │ ├── inflector_helper.html │ ├── language_helper.html │ ├── number_helper.html │ ├── path_helper.html │ ├── security_helper.html │ ├── smiley_helper.html │ ├── string_helper.html │ ├── text_helper.html │ ├── typography_helper.html │ ├── url_helper.html │ └── xml_helper.html ├── index.html ├── installation │ ├── downloads.html │ ├── index.html │ ├── troubleshooting.html │ ├── upgrade_120.html │ ├── upgrade_130.html │ ├── upgrade_131.html │ ├── upgrade_132.html │ ├── upgrade_133.html │ ├── upgrade_140.html │ ├── upgrade_141.html │ ├── upgrade_150.html │ ├── upgrade_152.html │ ├── upgrade_153.html │ ├── upgrade_154.html │ ├── upgrade_160.html │ ├── upgrade_161.html │ ├── upgrade_162.html │ ├── upgrade_163.html │ ├── upgrade_170.html │ ├── upgrade_171.html │ ├── upgrade_172.html │ ├── upgrade_200.html │ ├── upgrade_201.html │ ├── upgrade_202.html │ ├── upgrade_203.html │ ├── upgrade_210.html │ ├── upgrade_211.html │ ├── upgrade_212.html │ ├── upgrade_213.html │ ├── upgrade_214.html │ ├── upgrade_220.html │ ├── upgrade_221.html │ ├── upgrade_222.html │ ├── upgrade_223.html │ ├── upgrade_300.html │ ├── upgrade_301.html │ ├── upgrade_302.html │ ├── upgrade_303.html │ ├── upgrade_304.html │ ├── upgrade_305.html │ ├── upgrade_306.html │ ├── upgrade_310.html │ ├── upgrade_311.html │ ├── upgrade_312.html │ ├── upgrade_313.html │ ├── upgrade_314.html │ ├── upgrade_315.html │ ├── upgrade_316.html │ ├── upgrade_b11.html │ └── upgrading.html ├── libraries │ ├── benchmark.html │ ├── caching.html │ ├── calendar.html │ ├── cart.html │ ├── config.html │ ├── email.html │ ├── encrypt.html │ ├── encryption.html │ ├── file_uploading.html │ ├── form_validation.html │ ├── ftp.html │ ├── image_lib.html │ ├── index.html │ ├── input.html │ ├── javascript.html │ ├── language.html │ ├── loader.html │ ├── migration.html │ ├── output.html │ ├── pagination.html │ ├── parser.html │ ├── security.html │ ├── sessions.html │ ├── table.html │ ├── trackback.html │ ├── typography.html │ ├── unit_testing.html │ ├── uri.html │ ├── user_agent.html │ ├── xmlrpc.html │ └── zip.html ├── license.html ├── objects.inv ├── overview │ ├── appflow.html │ ├── at_a_glance.html │ ├── features.html │ ├── getting_started.html │ ├── goals.html │ ├── index.html │ └── mvc.html ├── search.html ├── searchindex.js └── tutorial │ ├── conclusion.html │ ├── create_news_items.html │ ├── index.html │ ├── news_section.html │ └── static_pages.html └── web_gudang.sql /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/README.md -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/.htaccess -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/memcached.php -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/controllers/Admin.php -------------------------------------------------------------------------------- /application/controllers/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/controllers/Login.php -------------------------------------------------------------------------------- /application/controllers/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/controllers/Register.php -------------------------------------------------------------------------------- /application/controllers/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/controllers/Report.php -------------------------------------------------------------------------------- /application/controllers/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/controllers/User.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/language/english/index.html -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/language/index.html -------------------------------------------------------------------------------- /application/libraries/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/libraries/Captcha.php -------------------------------------------------------------------------------- /application/libraries/Pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/libraries/Pdf.php -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/libraries/tcpdf/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/libraries/tcpdf/LICENSE.TXT -------------------------------------------------------------------------------- /application/libraries/tcpdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/libraries/tcpdf/README.md -------------------------------------------------------------------------------- /application/libraries/tcpdf/tcpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/libraries/tcpdf/tcpdf.php -------------------------------------------------------------------------------- /application/libraries/tcpdf/tools/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/models/M_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/models/M_admin.php -------------------------------------------------------------------------------- /application/models/M_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/models/M_login.php -------------------------------------------------------------------------------- /application/models/M_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/models/M_user.php -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/admin/index.php -------------------------------------------------------------------------------- /application/views/admin/index2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/admin/index2.php -------------------------------------------------------------------------------- /application/views/admin/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/admin/profile.php -------------------------------------------------------------------------------- /application/views/admin/starter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/admin/starter.php -------------------------------------------------------------------------------- /application/views/admin/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/admin/users.php -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/errors/cli/index.html -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/errors/html/index.html -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/errors/index.html -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/index.html -------------------------------------------------------------------------------- /application/views/login/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/login/login.php -------------------------------------------------------------------------------- /application/views/login/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/login/register.php -------------------------------------------------------------------------------- /application/views/user/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/user/index.php -------------------------------------------------------------------------------- /application/views/user/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/user/setting.php -------------------------------------------------------------------------------- /application/views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/application/views/welcome_message.php -------------------------------------------------------------------------------- /assets/datetimepicker/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/.gitattributes -------------------------------------------------------------------------------- /assets/datetimepicker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/.gitignore -------------------------------------------------------------------------------- /assets/datetimepicker/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/.jshintrc -------------------------------------------------------------------------------- /assets/datetimepicker/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/.npmignore -------------------------------------------------------------------------------- /assets/datetimepicker/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/.travis.yml -------------------------------------------------------------------------------- /assets/datetimepicker/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/Gruntfile.js -------------------------------------------------------------------------------- /assets/datetimepicker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/LICENSE -------------------------------------------------------------------------------- /assets/datetimepicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/README.md -------------------------------------------------------------------------------- /assets/datetimepicker/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/bower.json -------------------------------------------------------------------------------- /assets/datetimepicker/build/build.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/build/build.less -------------------------------------------------------------------------------- /assets/datetimepicker/minify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/minify.sh -------------------------------------------------------------------------------- /assets/datetimepicker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/package.json -------------------------------------------------------------------------------- /assets/datetimepicker/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/tests/README.md -------------------------------------------------------------------------------- /assets/datetimepicker/tests/run-qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/tests/run-qunit.js -------------------------------------------------------------------------------- /assets/datetimepicker/tests/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/datetimepicker/tests/tests.html -------------------------------------------------------------------------------- /assets/fontawesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/HELP-US-OUT.txt -------------------------------------------------------------------------------- /assets/fontawesome/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/bower.json -------------------------------------------------------------------------------- /assets/fontawesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/css/font-awesome.css -------------------------------------------------------------------------------- /assets/fontawesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fontawesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/less/animated.less -------------------------------------------------------------------------------- /assets/fontawesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/less/core.less -------------------------------------------------------------------------------- /assets/fontawesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/less/fixed-width.less -------------------------------------------------------------------------------- /assets/fontawesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/less/icons.less -------------------------------------------------------------------------------- /assets/fontawesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/less/larger.less -------------------------------------------------------------------------------- /assets/fontawesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/less/list.less -------------------------------------------------------------------------------- /assets/fontawesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/less/mixins.less -------------------------------------------------------------------------------- /assets/fontawesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/less/path.less -------------------------------------------------------------------------------- /assets/fontawesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/less/stacked.less -------------------------------------------------------------------------------- /assets/fontawesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/less/variables.less -------------------------------------------------------------------------------- /assets/fontawesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/scss/_animated.scss -------------------------------------------------------------------------------- /assets/fontawesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/scss/_core.scss -------------------------------------------------------------------------------- /assets/fontawesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/scss/_icons.scss -------------------------------------------------------------------------------- /assets/fontawesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/scss/_larger.scss -------------------------------------------------------------------------------- /assets/fontawesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/scss/_list.scss -------------------------------------------------------------------------------- /assets/fontawesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/scss/_mixins.scss -------------------------------------------------------------------------------- /assets/fontawesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/scss/_path.scss -------------------------------------------------------------------------------- /assets/fontawesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/scss/_stacked.scss -------------------------------------------------------------------------------- /assets/fontawesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/fontawesome/scss/_variables.scss -------------------------------------------------------------------------------- /assets/login/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/login/css/style.css -------------------------------------------------------------------------------- /assets/login/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/login/js/index.js -------------------------------------------------------------------------------- /assets/login/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/login/scss/style.scss -------------------------------------------------------------------------------- /assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/style.css -------------------------------------------------------------------------------- /assets/sweetalert/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/.editorconfig -------------------------------------------------------------------------------- /assets/sweetalert/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/.gitignore -------------------------------------------------------------------------------- /assets/sweetalert/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/.jshintrc -------------------------------------------------------------------------------- /assets/sweetalert/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/.travis.yml -------------------------------------------------------------------------------- /assets/sweetalert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/LICENSE -------------------------------------------------------------------------------- /assets/sweetalert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/README.md -------------------------------------------------------------------------------- /assets/sweetalert/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/bower.json -------------------------------------------------------------------------------- /assets/sweetalert/dev/ie9.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/dev/ie9.css -------------------------------------------------------------------------------- /assets/sweetalert/dev/modules/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/dev/modules/utils.js -------------------------------------------------------------------------------- /assets/sweetalert/dev/sweetalert.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/dev/sweetalert.es6.js -------------------------------------------------------------------------------- /assets/sweetalert/dev/sweetalert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/dev/sweetalert.scss -------------------------------------------------------------------------------- /assets/sweetalert/dist/sweetalert-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/dist/sweetalert-dev.js -------------------------------------------------------------------------------- /assets/sweetalert/dist/sweetalert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/dist/sweetalert.css -------------------------------------------------------------------------------- /assets/sweetalert/dist/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/dist/sweetalert.min.js -------------------------------------------------------------------------------- /assets/sweetalert/example/example.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/example/example.css -------------------------------------------------------------------------------- /assets/sweetalert/example/example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/example/example.scss -------------------------------------------------------------------------------- /assets/sweetalert/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/gulpfile.js -------------------------------------------------------------------------------- /assets/sweetalert/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/index.html -------------------------------------------------------------------------------- /assets/sweetalert/lib/modules/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/lib/modules/utils.js -------------------------------------------------------------------------------- /assets/sweetalert/lib/sweetalert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/lib/sweetalert.js -------------------------------------------------------------------------------- /assets/sweetalert/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/package.json -------------------------------------------------------------------------------- /assets/sweetalert/sweetalert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/sweetalert.gif -------------------------------------------------------------------------------- /assets/sweetalert/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/test/index.html -------------------------------------------------------------------------------- /assets/sweetalert/test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/sweetalert/test/tests.js -------------------------------------------------------------------------------- /assets/upload/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/upload/logo.png -------------------------------------------------------------------------------- /assets/upload/user/img/logo_unsada.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/upload/user/img/logo_unsada.jpg -------------------------------------------------------------------------------- /assets/upload/user/img/logo_unsada1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/upload/user/img/logo_unsada1.jpg -------------------------------------------------------------------------------- /assets/upload/user/img/nopic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/upload/user/img/nopic.png -------------------------------------------------------------------------------- /assets/upload/user/img/nopic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/upload/user/img/nopic1.png -------------------------------------------------------------------------------- /assets/upload/user/img/nopic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/upload/user/img/nopic2.png -------------------------------------------------------------------------------- /assets/upload/user/img/nopic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/upload/user/img/nopic3.png -------------------------------------------------------------------------------- /assets/upload/user/img/nopic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/upload/user/img/nopic4.png -------------------------------------------------------------------------------- /assets/upload/user/img/nopic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/upload/user/img/nopic5.png -------------------------------------------------------------------------------- /assets/web_admin/bower_components/bootstrap-datepicker/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx_rtd_theme 2 | -------------------------------------------------------------------------------- /assets/web_admin/bower_components/bootstrap-daterangepicker/example/browserify/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/web_admin/bower_components/chart.js/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | 4 | node_modules/* 5 | custom/* 6 | 7 | docs/index.md 8 | -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","af",{toolbar:"Nuwe bladsy"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ar",{toolbar:"صفحة جديدة"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","az",{toolbar:"Yeni səhifə"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bg",{toolbar:"Нова страница"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bn",{toolbar:"নতুন পৃষ্ঠা"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bs",{toolbar:"Novi dokument"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ca",{toolbar:"Nova pàgina"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","cs",{toolbar:"Nová stránka"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","cy",{toolbar:"Tudalen Newydd"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","da",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","de-ch",{toolbar:"Neue Seite"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","de",{toolbar:"Neue Seite"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","el",{toolbar:"Νέα Σελίδα"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-au",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-ca",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-gb",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","eo",{toolbar:"Nova Paĝo"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","es-mx",{toolbar:"Página nueva"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","es",{toolbar:"Nueva Página"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","et",{toolbar:"Uus leht"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","eu",{toolbar:"Orrialde berria"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fa",{toolbar:"برگهٴ تازه"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fi",{toolbar:"Tyhjennä"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fo",{toolbar:"Nýggj síða"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","gl",{toolbar:"Páxina nova"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","gu",{toolbar:"નવુ પાનું"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","he",{toolbar:"דף חדש"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hi",{toolbar:"नया पेज"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hr",{toolbar:"Nova stranica"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hu",{toolbar:"Új oldal"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","id",{toolbar:"Halaman Baru"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","is",{toolbar:"Ný síða"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","it",{toolbar:"Nuova pagina"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ja",{toolbar:"新しいページ"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ka",{toolbar:"ახალი გვერდი"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","km",{toolbar:"ទំព័រ​ថ្មី"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ko",{toolbar:"새 페이지"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ku",{toolbar:"پەڕەیەکی نوێ"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","lt",{toolbar:"Naujas puslapis"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","lv",{toolbar:"Jauna lapa"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/mk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","mk",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","mn",{toolbar:"Шинэ хуудас"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ms",{toolbar:"Helaian Baru"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","nb",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","nl",{toolbar:"Nieuwe pagina"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","no",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","oc",{toolbar:"Pagina novèla"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pl",{toolbar:"Nowa strona"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pt-br",{toolbar:"Novo"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pt",{toolbar:"Nova página"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ro",{toolbar:"Pagină nouă"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ru",{toolbar:"Новая страница"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","si",{toolbar:"නව පිටුවක්"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sk",{toolbar:"Nová stránka"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sl",{toolbar:"Nova stran"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sq",{toolbar:"Faqe e Re"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sr-latn",{toolbar:"Nova stranica"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sr",{toolbar:"Нова страница"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sv",{toolbar:"Ny sida"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","tr",{toolbar:"Yeni Sayfa"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","tt",{toolbar:"Яңа бит"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ug",{toolbar:"يېڭى بەت"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","uk",{toolbar:"Нова сторінка"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","vi",{toolbar:"Trang mới"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","zh-cn",{toolbar:"新建"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/newpage/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","zh",{toolbar:"新增網頁"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/preview/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("preview","sr",{preview:"Изглед странице"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","af",{toolbar:"Druk"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ar",{toolbar:"طباعة"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","az",{toolbar:"Çap et"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","bg",{toolbar:"Печат"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","bs",{toolbar:"Štampaj"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ca",{toolbar:"Imprimeix"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","cs",{toolbar:"Tisk"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","cy",{toolbar:"Argraffu"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","da",{toolbar:"Udskriv"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","de-ch",{toolbar:"Drucken"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","de",{toolbar:"Drucken"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","el",{toolbar:"Εκτύπωση"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","eo",{toolbar:"Presi"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","es-mx",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","es",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","eu",{toolbar:"Inprimatu"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fa",{toolbar:"چاپ"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fi",{toolbar:"Tulosta"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fo",{toolbar:"Prenta"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fr-ca",{toolbar:"Imprimer"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fr",{toolbar:"Imprimer"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","gl",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","gu",{toolbar:"પ્રિન્ટ"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","he",{toolbar:"הדפסה"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hi",{toolbar:"प्रिन्ट"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hr",{toolbar:"Ispiši"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hu",{toolbar:"Nyomtatás"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","id",{toolbar:"Cetak"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","is",{toolbar:"Prenta"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","it",{toolbar:"Stampa"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ja",{toolbar:"印刷"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ka",{toolbar:"ბეჭდვა"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","km",{toolbar:"បោះពុម្ព"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ko",{toolbar:"인쇄"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ku",{toolbar:"چاپکردن"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","lt",{toolbar:"Spausdinti"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","lv",{toolbar:"Drukāt"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","mn",{toolbar:"Хэвлэх"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ms",{toolbar:"Cetak"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","nb",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","nl",{toolbar:"Afdrukken"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","no",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","oc",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","pl",{toolbar:"Drukuj"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","pt-br",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","pt",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ro",{toolbar:"Printează"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ru",{toolbar:"Печать"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sk",{toolbar:"Tlač"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sl",{toolbar:"Natisni"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sq",{toolbar:"Shtype"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sr-latn",{toolbar:"Štampa"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sr",{toolbar:"Штампа"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sv",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","th",{toolbar:"สั่งพิมพ์"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","tr",{toolbar:"Yazdır"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","tt",{toolbar:"Бастыру"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ug",{toolbar:"باس "}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","uk",{toolbar:"Друк"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","vi",{toolbar:"In"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","zh-cn",{toolbar:"打印"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/print/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","zh",{toolbar:"列印"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","af",{toolbar:"Bewaar"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ar",{toolbar:"حفظ"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","az",{toolbar:"Yadda saxla"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bg",{toolbar:"Запис"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bn",{toolbar:"সংরক্ষন করি"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bs",{toolbar:"Snimi"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ca",{toolbar:"Desa"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","cs",{toolbar:"Uložit"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","cy",{toolbar:"Cadw"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","da",{toolbar:"Gem"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","de-ch",{toolbar:"Speichern"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","de",{toolbar:"Speichern"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","el",{toolbar:"Αποθήκευση"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-au",{toolbar:"Save"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-ca",{toolbar:"Save"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-gb",{toolbar:"Save"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en",{toolbar:"Save"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","eo",{toolbar:"Konservi"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","es-mx",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","es",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","et",{toolbar:"Salvestamine"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","eu",{toolbar:"Gorde"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fa",{toolbar:"ذخیره"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fi",{toolbar:"Tallenna"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fo",{toolbar:"Goym"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fr-ca",{toolbar:"Sauvegarder"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fr",{toolbar:"Enregistrer"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","gl",{toolbar:"Gardar"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","gu",{toolbar:"સેવ"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","he",{toolbar:"שמירה"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hi",{toolbar:"सेव"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hr",{toolbar:"Snimi"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hu",{toolbar:"Mentés"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","id",{toolbar:"Simpan"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","is",{toolbar:"Vista"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","it",{toolbar:"Salva"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ja",{toolbar:"保存"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ka",{toolbar:"ჩაწერა"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","km",{toolbar:"រក្សាទុក"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ko",{toolbar:"저장"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ku",{toolbar:"پاشکەوتکردن"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","lt",{toolbar:"Išsaugoti"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","lv",{toolbar:"Saglabāt"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/mk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","mk",{toolbar:"Save"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","mn",{toolbar:"Хадгалах"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ms",{toolbar:"Simpan"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","nb",{toolbar:"Lagre"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","nl",{toolbar:"Opslaan"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","no",{toolbar:"Lagre"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","oc",{toolbar:"Enregistrar"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pl",{toolbar:"Zapisz"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pt-br",{toolbar:"Salvar"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pt",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ro",{toolbar:"Salvează"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ru",{toolbar:"Сохранить"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sk",{toolbar:"Uložiť"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sl",{toolbar:"Shrani"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sq",{toolbar:"Ruaje"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sr-latn",{toolbar:"Sačuvaj"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sr",{toolbar:"Сачувај"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sv",{toolbar:"Spara"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","th",{toolbar:"บันทึก"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","tr",{toolbar:"Kaydet"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","tt",{toolbar:"Саклау"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ug",{toolbar:"ساقلا"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","uk",{toolbar:"Зберегти"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","vi",{toolbar:"Lưu"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","zh-cn",{toolbar:"保存"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/save/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","zh",{toolbar:"儲存"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","af",{toolbar:"Selekteer alles"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ar",{toolbar:"تحديد الكل"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","az",{toolbar:"Hamısını seç"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","bg",{toolbar:"Избери всичко"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","bs",{toolbar:"Selektuj sve"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ca",{toolbar:"Selecciona-ho tot"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","cs",{toolbar:"Vybrat vše"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","cy",{toolbar:"Dewis Popeth"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","da",{toolbar:"Vælg alt"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","de-ch",{toolbar:"Alles auswählen"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","de",{toolbar:"Alles auswählen"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","el",{toolbar:"Επιλογή όλων"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","eo",{toolbar:"Elekti ĉion"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","es-mx",{toolbar:"Seleccionar todo"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","es",{toolbar:"Seleccionar Todo"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","et",{toolbar:"Kõige valimine"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","eu",{toolbar:"Hautatu dena"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fa",{toolbar:"گزینش همه"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fi",{toolbar:"Valitse kaikki"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fo",{toolbar:"Markera alt"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fr-ca",{toolbar:"Sélectionner tout"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fr",{toolbar:"Tout sélectionner"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","he",{toolbar:"בחירת הכל"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","hr",{toolbar:"Odaberi sve"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","hu",{toolbar:"Mindent kijelöl"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","id",{toolbar:"Pilih Semua"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","is",{toolbar:"Velja allt"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","it",{toolbar:"Seleziona tutto"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ja",{toolbar:"すべて選択"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","km",{toolbar:"រើស​ទាំង​អស់"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ko",{toolbar:"모두 선택"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ku",{toolbar:"دیاریکردنی هەمووی"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","lt",{toolbar:"Pažymėti viską"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","lv",{toolbar:"Iezīmēt visu"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","mn",{toolbar:"Бүгдийг нь сонгох"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ms",{toolbar:"Pilih Semua"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","nb",{toolbar:"Merk alt"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","no",{toolbar:"Merk alt"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","oc",{toolbar:"Seleccionar tot"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","pl",{toolbar:"Zaznacz wszystko"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","pt-br",{toolbar:"Selecionar Tudo"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","pt",{toolbar:"Selecionar tudo"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ru",{toolbar:"Выделить все"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","si",{toolbar:"සියල්ලම "}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sk",{toolbar:"Vybrať všetko"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sl",{toolbar:"Izberi vse"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sq",{toolbar:"Përzgjidh të Gjitha"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sr-latn",{toolbar:"Označi sve"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sr",{toolbar:"Означи све"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sv",{toolbar:"Markera allt"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","th",{toolbar:"เลือกทั้งหมด"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","tr",{toolbar:"Tümünü Seç"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","tt",{toolbar:"Барысын сайлау"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ug",{toolbar:"ھەممىنى تاللا"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","uk",{toolbar:"Виділити все"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","vi",{toolbar:"Chọn tất cả"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","zh-cn",{toolbar:"全选"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/selectall/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","zh",{toolbar:"全選"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","af",{toolbar:"Toon blokke"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ar",{toolbar:"مخطط تفصيلي"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","az",{toolbar:"Blokları göstər"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","bg",{toolbar:"Показва блокове"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ca",{toolbar:"Mostra els blocs"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","cs",{toolbar:"Ukázat bloky"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","cy",{toolbar:"Dangos Blociau"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","da",{toolbar:"Vis afsnitsmærker"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","de-ch",{toolbar:"Blöcke anzeigen"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","de",{toolbar:"Blöcke anzeigen"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","el",{toolbar:"Προβολή Τμημάτων"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","eo",{toolbar:"Montri la blokojn"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","es-mx",{toolbar:"Mostrar bloques"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","et",{toolbar:"Blokkide näitamine"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","eu",{toolbar:"Erakutsi blokeak"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fa",{toolbar:"نمایش بلوک‌ها"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fi",{toolbar:"Näytä elementit"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fo",{toolbar:"Vís blokkar"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fr-ca",{toolbar:"Afficher les blocs"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fr",{toolbar:"Afficher les blocs"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","gl",{toolbar:"Amosar os bloques"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","gu",{toolbar:"બ્લૉક બતાવવું"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","he",{toolbar:"הצגת בלוקים"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","hi",{toolbar:"ब्लॉक दिखायें"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","hr",{toolbar:"Prikaži blokove"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","hu",{toolbar:"Blokkok megjelenítése"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","id",{toolbar:"Perlihatkan Blok"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","is",{toolbar:"Sýna blokkir"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","it",{toolbar:"Visualizza Blocchi"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ja",{toolbar:"ブロック表示"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","km",{toolbar:"បង្ហាញ​ប្លក់"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ko",{toolbar:"블록 보기"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","lt",{toolbar:"Rodyti blokus"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","lv",{toolbar:"Parādīt blokus"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","nb",{toolbar:"Vis blokker"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","nl",{toolbar:"Toon blokken"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","no",{toolbar:"Vis blokker"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","oc",{toolbar:"Afichar los blòts"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","pl",{toolbar:"Pokaż bloki"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","pt",{toolbar:"Exibir blocos"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ro",{toolbar:"Arată blocurile"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ru",{toolbar:"Отображать блоки"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sk",{toolbar:"Ukázať bloky"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sl",{toolbar:"Prikaži ograde"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sq",{toolbar:"Shfaq Blloqet"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","th",{toolbar:"แสดงบล็อคข้อมูล"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","tr",{toolbar:"Blokları Göster"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","tt",{toolbar:"Блокларны күрсәтү"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ug",{toolbar:"بۆلەكنى كۆرسەت"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","uk",{toolbar:"Показувати блоки"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","vi",{toolbar:"Hiển thị các khối"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","zh-cn",{toolbar:"显示区块"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/showblocks/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","zh",{toolbar:"顯示區塊"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ckeditor/plugins/sourcedialog/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bn",{toolbar:"উৎস",title:"সোর্স"}); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/ion.rangeSlider/.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /assets/web_admin/bower_components/jquery-knob/.gitignore: -------------------------------------------------------------------------------- 1 | nbproject/ -------------------------------------------------------------------------------- /assets/web_admin/bower_components/jquery-sparkline/src/footer.js: -------------------------------------------------------------------------------- 1 | }))}(document, Math)); 2 | -------------------------------------------------------------------------------- /assets/web_admin/bower_components/jquery-sparkline/version.txt: -------------------------------------------------------------------------------- 1 | 2.1.3 2 | -------------------------------------------------------------------------------- /assets/web_admin/bower_components/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/web_admin/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/web_admin/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/web_admin/bower_components/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/web_admin/bower_components/jvectormap/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | jquery.jvectormap.min.js 3 | -------------------------------------------------------------------------------- /assets/web_admin/bower_components/raphael/dev/test/vml/dom.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | module('DOM'); 4 | 5 | })(); -------------------------------------------------------------------------------- /assets/web_admin/bower_components/select2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/js/i18n/build.txt 3 | .sass-cache 4 | -------------------------------------------------------------------------------- /assets/web_admin/build/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/grunt/.jshintrc -------------------------------------------------------------------------------- /assets/web_admin/build/js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/js/.jscsrc -------------------------------------------------------------------------------- /assets/web_admin/build/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/js/.jshintrc -------------------------------------------------------------------------------- /assets/web_admin/build/js/BoxRefresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/js/BoxRefresh.js -------------------------------------------------------------------------------- /assets/web_admin/build/js/BoxWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/js/BoxWidget.js -------------------------------------------------------------------------------- /assets/web_admin/build/js/DirectChat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/js/DirectChat.js -------------------------------------------------------------------------------- /assets/web_admin/build/js/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/js/Layout.js -------------------------------------------------------------------------------- /assets/web_admin/build/js/PushMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/js/PushMenu.js -------------------------------------------------------------------------------- /assets/web_admin/build/js/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/js/TodoList.js -------------------------------------------------------------------------------- /assets/web_admin/build/js/Tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/js/Tree.js -------------------------------------------------------------------------------- /assets/web_admin/build/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/.csslintrc -------------------------------------------------------------------------------- /assets/web_admin/build/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/alerts.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/boxes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/boxes.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/buttons.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/callout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/callout.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/core.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/forms.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/header.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/invoice.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/invoice.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/labels.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/mailbox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/mailbox.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/mixins.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/modal.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/navs.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/plugins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/plugins.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/print.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/profile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/profile.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/select2.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/select2.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/sidebar.less -------------------------------------------------------------------------------- /assets/web_admin/build/less/table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/build/less/table.less -------------------------------------------------------------------------------- /assets/web_admin/dist/css/AdminLTE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/css/AdminLTE.css -------------------------------------------------------------------------------- /assets/web_admin/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/img/avatar.png -------------------------------------------------------------------------------- /assets/web_admin/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/img/avatar04.png -------------------------------------------------------------------------------- /assets/web_admin/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/img/avatar2.png -------------------------------------------------------------------------------- /assets/web_admin/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/img/avatar3.png -------------------------------------------------------------------------------- /assets/web_admin/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/img/avatar5.png -------------------------------------------------------------------------------- /assets/web_admin/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /assets/web_admin/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /assets/web_admin/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/img/icons.png -------------------------------------------------------------------------------- /assets/web_admin/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/img/photo1.png -------------------------------------------------------------------------------- /assets/web_admin/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/img/photo2.png -------------------------------------------------------------------------------- /assets/web_admin/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/img/photo3.jpg -------------------------------------------------------------------------------- /assets/web_admin/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/img/photo4.jpg -------------------------------------------------------------------------------- /assets/web_admin/dist/js/adminlte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/js/adminlte.js -------------------------------------------------------------------------------- /assets/web_admin/dist/js/adminlte.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/js/adminlte.min.js -------------------------------------------------------------------------------- /assets/web_admin/dist/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/dist/js/demo.js -------------------------------------------------------------------------------- /assets/web_admin/pages/UI/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/pages/UI/buttons.html -------------------------------------------------------------------------------- /assets/web_admin/pages/UI/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/pages/UI/general.html -------------------------------------------------------------------------------- /assets/web_admin/pages/UI/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/pages/UI/icons.html -------------------------------------------------------------------------------- /assets/web_admin/pages/UI/modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/pages/UI/modals.html -------------------------------------------------------------------------------- /assets/web_admin/pages/UI/sliders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/pages/UI/sliders.html -------------------------------------------------------------------------------- /assets/web_admin/pages/UI/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/pages/UI/timeline.html -------------------------------------------------------------------------------- /assets/web_admin/pages/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/pages/calendar.html -------------------------------------------------------------------------------- /assets/web_admin/pages/charts/flot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/pages/charts/flot.html -------------------------------------------------------------------------------- /assets/web_admin/pages/examples/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/pages/examples/404.html -------------------------------------------------------------------------------- /assets/web_admin/pages/examples/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/pages/examples/500.html -------------------------------------------------------------------------------- /assets/web_admin/pages/layout/boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/pages/layout/boxed.html -------------------------------------------------------------------------------- /assets/web_admin/pages/layout/fixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/pages/layout/fixed.html -------------------------------------------------------------------------------- /assets/web_admin/pages/widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/pages/widgets.html -------------------------------------------------------------------------------- /assets/web_admin/plugins/iCheck/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/plugins/iCheck/all.css -------------------------------------------------------------------------------- /assets/web_admin/plugins/pace/pace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/plugins/pace/pace.css -------------------------------------------------------------------------------- /assets/web_admin/plugins/pace/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/assets/web_admin/plugins/pace/pace.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/composer.json -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/contributing.md -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/index.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/license.txt -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/.htaccess -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Log.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/compat/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/compat/hash.php -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/compat/index.html -------------------------------------------------------------------------------- /system/core/compat/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/compat/mbstring.php -------------------------------------------------------------------------------- /system/core/compat/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/compat/password.php -------------------------------------------------------------------------------- /system/core/compat/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/compat/standard.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_query_builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/DB_query_builder.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/drivers/ibase/index.html -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/language/english/date_lang.php -------------------------------------------------------------------------------- /system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/language/english/db_lang.php -------------------------------------------------------------------------------- /system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/language/english/email_lang.php -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/language/english/number_lang.php -------------------------------------------------------------------------------- /system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Encryption.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Javascript/Jquery.php -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Javascript/index.html -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Session/Session.php -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Session/index.html -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /user_guide/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/.buildinfo -------------------------------------------------------------------------------- /user_guide/DCO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/DCO.html -------------------------------------------------------------------------------- /user_guide/_images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_images/appflowchart.gif -------------------------------------------------------------------------------- /user_guide/_images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_images/smile.gif -------------------------------------------------------------------------------- /user_guide/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/ajax-loader.gif -------------------------------------------------------------------------------- /user_guide/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/basic.css -------------------------------------------------------------------------------- /user_guide/_static/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/comment-bright.png -------------------------------------------------------------------------------- /user_guide/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/comment-close.png -------------------------------------------------------------------------------- /user_guide/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/comment.png -------------------------------------------------------------------------------- /user_guide/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/css/badge_only.css -------------------------------------------------------------------------------- /user_guide/_static/css/citheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/css/citheme.css -------------------------------------------------------------------------------- /user_guide/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/css/theme.css -------------------------------------------------------------------------------- /user_guide/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/doctools.js -------------------------------------------------------------------------------- /user_guide/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/down-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/down.png -------------------------------------------------------------------------------- /user_guide/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/file.png -------------------------------------------------------------------------------- /user_guide/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /user_guide/_static/images/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/images/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/jquery-3.1.0.js -------------------------------------------------------------------------------- /user_guide/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/jquery.js -------------------------------------------------------------------------------- /user_guide/_static/js/oldtheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/js/oldtheme.js -------------------------------------------------------------------------------- /user_guide/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/js/theme.js -------------------------------------------------------------------------------- /user_guide/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/minus.png -------------------------------------------------------------------------------- /user_guide/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/plus.png -------------------------------------------------------------------------------- /user_guide/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/pygments.css -------------------------------------------------------------------------------- /user_guide/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/searchtools.js -------------------------------------------------------------------------------- /user_guide/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /user_guide/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/underscore.js -------------------------------------------------------------------------------- /user_guide/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/up-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/up.png -------------------------------------------------------------------------------- /user_guide/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/_static/websupport.js -------------------------------------------------------------------------------- /user_guide/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/changelog.html -------------------------------------------------------------------------------- /user_guide/contributing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/contributing/index.html -------------------------------------------------------------------------------- /user_guide/database/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/caching.html -------------------------------------------------------------------------------- /user_guide/database/call_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/call_function.html -------------------------------------------------------------------------------- /user_guide/database/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/configuration.html -------------------------------------------------------------------------------- /user_guide/database/connecting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/connecting.html -------------------------------------------------------------------------------- /user_guide/database/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/examples.html -------------------------------------------------------------------------------- /user_guide/database/forge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/forge.html -------------------------------------------------------------------------------- /user_guide/database/helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/helpers.html -------------------------------------------------------------------------------- /user_guide/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/index.html -------------------------------------------------------------------------------- /user_guide/database/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/metadata.html -------------------------------------------------------------------------------- /user_guide/database/queries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/queries.html -------------------------------------------------------------------------------- /user_guide/database/query_builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/query_builder.html -------------------------------------------------------------------------------- /user_guide/database/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/results.html -------------------------------------------------------------------------------- /user_guide/database/transactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/transactions.html -------------------------------------------------------------------------------- /user_guide/database/utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/database/utilities.html -------------------------------------------------------------------------------- /user_guide/documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/documentation/index.html -------------------------------------------------------------------------------- /user_guide/general/alternative_php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/alternative_php.html -------------------------------------------------------------------------------- /user_guide/general/autoloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/autoloader.html -------------------------------------------------------------------------------- /user_guide/general/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/caching.html -------------------------------------------------------------------------------- /user_guide/general/cli.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/cli.html -------------------------------------------------------------------------------- /user_guide/general/common_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/common_functions.html -------------------------------------------------------------------------------- /user_guide/general/controllers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/controllers.html -------------------------------------------------------------------------------- /user_guide/general/core_classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/core_classes.html -------------------------------------------------------------------------------- /user_guide/general/creating_drivers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/creating_drivers.html -------------------------------------------------------------------------------- /user_guide/general/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/credits.html -------------------------------------------------------------------------------- /user_guide/general/drivers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/drivers.html -------------------------------------------------------------------------------- /user_guide/general/environments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/environments.html -------------------------------------------------------------------------------- /user_guide/general/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/errors.html -------------------------------------------------------------------------------- /user_guide/general/helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/helpers.html -------------------------------------------------------------------------------- /user_guide/general/hooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/hooks.html -------------------------------------------------------------------------------- /user_guide/general/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/index.html -------------------------------------------------------------------------------- /user_guide/general/libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/libraries.html -------------------------------------------------------------------------------- /user_guide/general/managing_apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/managing_apps.html -------------------------------------------------------------------------------- /user_guide/general/models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/models.html -------------------------------------------------------------------------------- /user_guide/general/profiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/profiling.html -------------------------------------------------------------------------------- /user_guide/general/requirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/requirements.html -------------------------------------------------------------------------------- /user_guide/general/reserved_names.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/reserved_names.html -------------------------------------------------------------------------------- /user_guide/general/routing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/routing.html -------------------------------------------------------------------------------- /user_guide/general/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/security.html -------------------------------------------------------------------------------- /user_guide/general/styleguide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/styleguide.html -------------------------------------------------------------------------------- /user_guide/general/urls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/urls.html -------------------------------------------------------------------------------- /user_guide/general/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/views.html -------------------------------------------------------------------------------- /user_guide/general/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/general/welcome.html -------------------------------------------------------------------------------- /user_guide/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/genindex.html -------------------------------------------------------------------------------- /user_guide/helpers/array_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/array_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/captcha_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/captcha_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/cookie_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/cookie_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/date_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/date_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/directory_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/directory_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/download_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/download_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/email_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/email_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/file_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/file_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/form_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/form_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/html_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/html_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/index.html -------------------------------------------------------------------------------- /user_guide/helpers/inflector_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/inflector_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/language_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/language_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/number_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/number_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/path_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/path_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/security_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/security_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/smiley_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/smiley_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/string_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/string_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/text_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/text_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/url_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/url_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/xml_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/helpers/xml_helper.html -------------------------------------------------------------------------------- /user_guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/index.html -------------------------------------------------------------------------------- /user_guide/installation/downloads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/downloads.html -------------------------------------------------------------------------------- /user_guide/installation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/index.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_120.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_120.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_130.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_130.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_131.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_131.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_132.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_132.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_133.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_133.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_140.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_140.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_141.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_141.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_150.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_150.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_152.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_152.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_153.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_153.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_154.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_154.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_160.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_160.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_161.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_161.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_162.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_162.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_163.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_163.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_170.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_170.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_171.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_171.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_172.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_172.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_200.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_201.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_201.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_202.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_202.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_203.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_203.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_210.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_210.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_211.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_211.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_212.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_212.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_213.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_213.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_214.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_214.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_220.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_220.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_221.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_221.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_222.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_222.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_223.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_223.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_300.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_300.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_301.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_301.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_302.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/installation/upgrade_302.html -------------------------------------------------------------------------------- /user_guide/libraries/benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/benchmark.html -------------------------------------------------------------------------------- /user_guide/libraries/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/caching.html -------------------------------------------------------------------------------- /user_guide/libraries/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/calendar.html -------------------------------------------------------------------------------- /user_guide/libraries/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/cart.html -------------------------------------------------------------------------------- /user_guide/libraries/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/config.html -------------------------------------------------------------------------------- /user_guide/libraries/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/email.html -------------------------------------------------------------------------------- /user_guide/libraries/encrypt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/encrypt.html -------------------------------------------------------------------------------- /user_guide/libraries/encryption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/encryption.html -------------------------------------------------------------------------------- /user_guide/libraries/ftp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/ftp.html -------------------------------------------------------------------------------- /user_guide/libraries/image_lib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/image_lib.html -------------------------------------------------------------------------------- /user_guide/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/index.html -------------------------------------------------------------------------------- /user_guide/libraries/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/input.html -------------------------------------------------------------------------------- /user_guide/libraries/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/javascript.html -------------------------------------------------------------------------------- /user_guide/libraries/language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/language.html -------------------------------------------------------------------------------- /user_guide/libraries/loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/loader.html -------------------------------------------------------------------------------- /user_guide/libraries/migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/migration.html -------------------------------------------------------------------------------- /user_guide/libraries/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/output.html -------------------------------------------------------------------------------- /user_guide/libraries/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/pagination.html -------------------------------------------------------------------------------- /user_guide/libraries/parser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/parser.html -------------------------------------------------------------------------------- /user_guide/libraries/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/security.html -------------------------------------------------------------------------------- /user_guide/libraries/sessions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/sessions.html -------------------------------------------------------------------------------- /user_guide/libraries/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/table.html -------------------------------------------------------------------------------- /user_guide/libraries/trackback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/trackback.html -------------------------------------------------------------------------------- /user_guide/libraries/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/typography.html -------------------------------------------------------------------------------- /user_guide/libraries/uri.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/uri.html -------------------------------------------------------------------------------- /user_guide/libraries/user_agent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/user_agent.html -------------------------------------------------------------------------------- /user_guide/libraries/xmlrpc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/xmlrpc.html -------------------------------------------------------------------------------- /user_guide/libraries/zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/libraries/zip.html -------------------------------------------------------------------------------- /user_guide/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/license.html -------------------------------------------------------------------------------- /user_guide/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/objects.inv -------------------------------------------------------------------------------- /user_guide/overview/appflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/overview/appflow.html -------------------------------------------------------------------------------- /user_guide/overview/at_a_glance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/overview/at_a_glance.html -------------------------------------------------------------------------------- /user_guide/overview/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/overview/features.html -------------------------------------------------------------------------------- /user_guide/overview/goals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/overview/goals.html -------------------------------------------------------------------------------- /user_guide/overview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/overview/index.html -------------------------------------------------------------------------------- /user_guide/overview/mvc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/overview/mvc.html -------------------------------------------------------------------------------- /user_guide/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/search.html -------------------------------------------------------------------------------- /user_guide/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/searchindex.js -------------------------------------------------------------------------------- /user_guide/tutorial/conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/tutorial/conclusion.html -------------------------------------------------------------------------------- /user_guide/tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/tutorial/index.html -------------------------------------------------------------------------------- /user_guide/tutorial/news_section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/tutorial/news_section.html -------------------------------------------------------------------------------- /user_guide/tutorial/static_pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/user_guide/tutorial/static_pages.html -------------------------------------------------------------------------------- /web_gudang.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahidin/web-aplikasi-inventory-gudang/HEAD/web_gudang.sql --------------------------------------------------------------------------------