├── .gitattributes ├── .idea ├── Fileview.iml ├── dataSources.local.xml ├── dataSources.xml ├── dataSources │ └── c76c5d35-aff0-4c35-9895-dc8c065e3de8.xml ├── dictionaries │ └── jsonhua.xml ├── encodings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── Fileview ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── README.md ├── db.sqlite3 ├── file ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180613_1639.py │ ├── 0003_filename_classify.py │ ├── 0004_filename_time.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_auto_20180613_1639.cpython-36.pyc │ │ ├── 0003_filename_classify.cpython-36.pyc │ │ ├── 0004_filename_time.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── tests.py └── views.py ├── manage.py ├── statics ├── css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── common.css │ ├── component.css │ ├── default.css │ ├── main.css │ └── normalize.css ├── filepath │ └── django.pdf ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ └── lato │ │ ├── lato-black.eot │ │ ├── lato-black.svg │ │ ├── lato-black.ttf │ │ ├── lato-black.woff │ │ ├── lato-bold.eot │ │ ├── lato-bold.svg │ │ ├── lato-bold.ttf │ │ ├── lato-bold.woff │ │ ├── lato-bolditalic.eot │ │ ├── lato-bolditalic.svg │ │ ├── lato-bolditalic.ttf │ │ ├── lato-bolditalic.woff │ │ ├── lato-italic.eot │ │ ├── lato-italic.svg │ │ ├── lato-italic.ttf │ │ ├── lato-italic.woff │ │ ├── lato-light.eot │ │ ├── lato-light.svg │ │ ├── lato-light.ttf │ │ ├── lato-light.woff │ │ ├── lato-regular.eot │ │ ├── lato-regular.svg │ │ ├── lato-regular.ttf │ │ └── lato-regular.woff ├── images │ ├── Thumbs.db │ ├── air-balloon-1.png │ ├── air-balloon-2.png │ ├── captchaCode.jpg │ ├── circle.png │ ├── icon_card.png │ ├── icon_card_grey.png │ ├── icon_change.png │ ├── icon_change_grey.png │ ├── icon_char.png │ ├── icon_char_grey.png │ ├── icon_chara.png │ ├── icon_chara_grey.png │ ├── icon_house.png │ ├── icon_house_grey.png │ ├── icon_rule.png │ ├── icon_rule_grey.png │ ├── icon_source.png │ ├── icon_source_grey.png │ ├── icon_user.png │ ├── icon_user_grey.png │ ├── login-bg.jpg │ ├── login-foot.jpg │ ├── login.png │ ├── logo.png │ └── progress02.png └── js │ ├── DD_belatedPNG.js │ ├── PDFJSInNet │ └── PDFJSInNet │ │ ├── build │ │ ├── pdf.js │ │ └── pdf.worker.js │ │ ├── doc │ │ └── 09.pdf │ │ ├── web.config │ │ └── web │ │ ├── 09.pdf │ │ ├── cmaps │ │ ├── 78-EUC-H.bcmap │ │ ├── 78-EUC-V.bcmap │ │ ├── 78-H.bcmap │ │ ├── 78-RKSJ-H.bcmap │ │ ├── 78-RKSJ-V.bcmap │ │ ├── 78-V.bcmap │ │ ├── 78ms-RKSJ-H.bcmap │ │ ├── 78ms-RKSJ-V.bcmap │ │ ├── 83pv-RKSJ-H.bcmap │ │ ├── 90ms-RKSJ-H.bcmap │ │ ├── 90ms-RKSJ-V.bcmap │ │ ├── 90msp-RKSJ-H.bcmap │ │ ├── 90msp-RKSJ-V.bcmap │ │ ├── 90pv-RKSJ-H.bcmap │ │ ├── 90pv-RKSJ-V.bcmap │ │ ├── Add-H.bcmap │ │ ├── Add-RKSJ-H.bcmap │ │ ├── Add-RKSJ-V.bcmap │ │ ├── Add-V.bcmap │ │ ├── Adobe-CNS1-0.bcmap │ │ ├── Adobe-CNS1-1.bcmap │ │ ├── Adobe-CNS1-2.bcmap │ │ ├── Adobe-CNS1-3.bcmap │ │ ├── Adobe-CNS1-4.bcmap │ │ ├── Adobe-CNS1-5.bcmap │ │ ├── Adobe-CNS1-6.bcmap │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ ├── Adobe-GB1-0.bcmap │ │ ├── Adobe-GB1-1.bcmap │ │ ├── Adobe-GB1-2.bcmap │ │ ├── Adobe-GB1-3.bcmap │ │ ├── Adobe-GB1-4.bcmap │ │ ├── Adobe-GB1-5.bcmap │ │ ├── Adobe-GB1-UCS2.bcmap │ │ ├── Adobe-Japan1-0.bcmap │ │ ├── Adobe-Japan1-1.bcmap │ │ ├── Adobe-Japan1-2.bcmap │ │ ├── Adobe-Japan1-3.bcmap │ │ ├── Adobe-Japan1-4.bcmap │ │ ├── Adobe-Japan1-5.bcmap │ │ ├── Adobe-Japan1-6.bcmap │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ ├── Adobe-Korea1-0.bcmap │ │ ├── Adobe-Korea1-1.bcmap │ │ ├── Adobe-Korea1-2.bcmap │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ ├── B5-H.bcmap │ │ ├── B5-V.bcmap │ │ ├── B5pc-H.bcmap │ │ ├── B5pc-V.bcmap │ │ ├── CNS-EUC-H.bcmap │ │ ├── CNS-EUC-V.bcmap │ │ ├── CNS1-H.bcmap │ │ ├── CNS1-V.bcmap │ │ ├── CNS2-H.bcmap │ │ ├── CNS2-V.bcmap │ │ ├── ETHK-B5-H.bcmap │ │ ├── ETHK-B5-V.bcmap │ │ ├── ETen-B5-H.bcmap │ │ ├── ETen-B5-V.bcmap │ │ ├── ETenms-B5-H.bcmap │ │ ├── ETenms-B5-V.bcmap │ │ ├── EUC-H.bcmap │ │ ├── EUC-V.bcmap │ │ ├── Ext-H.bcmap │ │ ├── Ext-RKSJ-H.bcmap │ │ ├── Ext-RKSJ-V.bcmap │ │ ├── Ext-V.bcmap │ │ ├── GB-EUC-H.bcmap │ │ ├── GB-EUC-V.bcmap │ │ ├── GB-H.bcmap │ │ ├── GB-V.bcmap │ │ ├── GBK-EUC-H.bcmap │ │ ├── GBK-EUC-V.bcmap │ │ ├── GBK2K-H.bcmap │ │ ├── GBK2K-V.bcmap │ │ ├── GBKp-EUC-H.bcmap │ │ ├── GBKp-EUC-V.bcmap │ │ ├── GBT-EUC-H.bcmap │ │ ├── GBT-EUC-V.bcmap │ │ ├── GBT-H.bcmap │ │ ├── GBT-V.bcmap │ │ ├── GBTpc-EUC-H.bcmap │ │ ├── GBTpc-EUC-V.bcmap │ │ ├── GBpc-EUC-H.bcmap │ │ ├── GBpc-EUC-V.bcmap │ │ ├── H.bcmap │ │ ├── HKdla-B5-H.bcmap │ │ ├── HKdla-B5-V.bcmap │ │ ├── HKdlb-B5-H.bcmap │ │ ├── HKdlb-B5-V.bcmap │ │ ├── HKgccs-B5-H.bcmap │ │ ├── HKgccs-B5-V.bcmap │ │ ├── HKm314-B5-H.bcmap │ │ ├── HKm314-B5-V.bcmap │ │ ├── HKm471-B5-H.bcmap │ │ ├── HKm471-B5-V.bcmap │ │ ├── HKscs-B5-H.bcmap │ │ ├── HKscs-B5-V.bcmap │ │ ├── Hankaku.bcmap │ │ ├── Hiragana.bcmap │ │ ├── KSC-EUC-H.bcmap │ │ ├── KSC-EUC-V.bcmap │ │ ├── KSC-H.bcmap │ │ ├── KSC-Johab-H.bcmap │ │ ├── KSC-Johab-V.bcmap │ │ ├── KSC-V.bcmap │ │ ├── KSCms-UHC-H.bcmap │ │ ├── KSCms-UHC-HW-H.bcmap │ │ ├── KSCms-UHC-HW-V.bcmap │ │ ├── KSCms-UHC-V.bcmap │ │ ├── KSCpc-EUC-H.bcmap │ │ ├── KSCpc-EUC-V.bcmap │ │ ├── Katakana.bcmap │ │ ├── LICENSE │ │ ├── NWP-H.bcmap │ │ ├── NWP-V.bcmap │ │ ├── RKSJ-H.bcmap │ │ ├── RKSJ-V.bcmap │ │ ├── Roman.bcmap │ │ ├── UniCNS-UCS2-H.bcmap │ │ ├── UniCNS-UCS2-V.bcmap │ │ ├── UniCNS-UTF16-H.bcmap │ │ ├── UniCNS-UTF16-V.bcmap │ │ ├── UniCNS-UTF32-H.bcmap │ │ ├── UniCNS-UTF32-V.bcmap │ │ ├── UniCNS-UTF8-H.bcmap │ │ ├── UniCNS-UTF8-V.bcmap │ │ ├── UniGB-UCS2-H.bcmap │ │ ├── UniGB-UCS2-V.bcmap │ │ ├── UniGB-UTF16-H.bcmap │ │ ├── UniGB-UTF16-V.bcmap │ │ ├── UniGB-UTF32-H.bcmap │ │ ├── UniGB-UTF32-V.bcmap │ │ ├── UniGB-UTF8-H.bcmap │ │ ├── UniGB-UTF8-V.bcmap │ │ ├── UniJIS-UCS2-H.bcmap │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ ├── UniJIS-UCS2-V.bcmap │ │ ├── UniJIS-UTF16-H.bcmap │ │ ├── UniJIS-UTF16-V.bcmap │ │ ├── UniJIS-UTF32-H.bcmap │ │ ├── UniJIS-UTF32-V.bcmap │ │ ├── UniJIS-UTF8-H.bcmap │ │ ├── UniJIS-UTF8-V.bcmap │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ ├── UniJISPro-UCS2-V.bcmap │ │ ├── UniJISPro-UTF8-V.bcmap │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ ├── UniKS-UCS2-H.bcmap │ │ ├── UniKS-UCS2-V.bcmap │ │ ├── UniKS-UTF16-H.bcmap │ │ ├── UniKS-UTF16-V.bcmap │ │ ├── UniKS-UTF32-H.bcmap │ │ ├── UniKS-UTF32-V.bcmap │ │ ├── UniKS-UTF8-H.bcmap │ │ ├── UniKS-UTF8-V.bcmap │ │ ├── V.bcmap │ │ └── WP-Symbol.bcmap │ │ ├── compatibility.js │ │ ├── debugger.js │ │ ├── images │ │ ├── annotation-check.svg │ │ ├── annotation-comment.svg │ │ ├── annotation-help.svg │ │ ├── annotation-insert.svg │ │ ├── annotation-key.svg │ │ ├── annotation-newparagraph.svg │ │ ├── annotation-noicon.svg │ │ ├── annotation-note.svg │ │ ├── annotation-paragraph.svg │ │ ├── findbarButton-next-rtl.png │ │ ├── findbarButton-next-rtl@2x.png │ │ ├── findbarButton-next.png │ │ ├── findbarButton-next@2x.png │ │ ├── findbarButton-previous-rtl.png │ │ ├── findbarButton-previous-rtl@2x.png │ │ ├── findbarButton-previous.png │ │ ├── findbarButton-previous@2x.png │ │ ├── grab.cur │ │ ├── grabbing.cur │ │ ├── loading-icon.gif │ │ ├── loading-small.png │ │ ├── secondaryToolbarButton-documentProperties.png │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ ├── secondaryToolbarButton-firstPage.png │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ ├── secondaryToolbarButton-handTool.png │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ ├── secondaryToolbarButton-lastPage.png │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ ├── secondaryToolbarButton-rotateCw.png │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ ├── shadow.png │ │ ├── texture.png │ │ ├── toolbarButton-bookmark.png │ │ ├── toolbarButton-bookmark@2x.png │ │ ├── toolbarButton-download.png │ │ ├── toolbarButton-download@2x.png │ │ ├── toolbarButton-menuArrows.png │ │ ├── toolbarButton-menuArrows@2x.png │ │ ├── toolbarButton-openFile.png │ │ ├── toolbarButton-openFile@2x.png │ │ ├── toolbarButton-pageDown-rtl.png │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ ├── toolbarButton-pageDown.png │ │ ├── toolbarButton-pageDown@2x.png │ │ ├── toolbarButton-pageUp-rtl.png │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ ├── toolbarButton-pageUp.png │ │ ├── toolbarButton-pageUp@2x.png │ │ ├── toolbarButton-presentationMode.png │ │ ├── toolbarButton-presentationMode@2x.png │ │ ├── toolbarButton-print.png │ │ ├── toolbarButton-print@2x.png │ │ ├── toolbarButton-search.png │ │ ├── toolbarButton-search@2x.png │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ ├── toolbarButton-sidebarToggle.png │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ ├── toolbarButton-viewAttachments.png │ │ ├── toolbarButton-viewAttachments@2x.png │ │ ├── toolbarButton-viewOutline-rtl.png │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ ├── toolbarButton-viewOutline.png │ │ ├── toolbarButton-viewOutline@2x.png │ │ ├── toolbarButton-viewThumbnail.png │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ ├── toolbarButton-zoomIn.png │ │ ├── toolbarButton-zoomIn@2x.png │ │ ├── toolbarButton-zoomOut.png │ │ └── toolbarButton-zoomOut@2x.png │ │ ├── l10n.js │ │ ├── locale │ │ ├── ach │ │ │ └── viewer.properties │ │ ├── af │ │ │ └── viewer.properties │ │ ├── ak │ │ │ └── viewer.properties │ │ ├── an │ │ │ └── viewer.properties │ │ ├── ar │ │ │ └── viewer.properties │ │ ├── as │ │ │ └── viewer.properties │ │ ├── ast │ │ │ └── viewer.properties │ │ ├── az │ │ │ └── viewer.properties │ │ ├── be │ │ │ └── viewer.properties │ │ ├── bg │ │ │ └── viewer.properties │ │ ├── bn-BD │ │ │ └── viewer.properties │ │ ├── bn-IN │ │ │ └── viewer.properties │ │ ├── br │ │ │ └── viewer.properties │ │ ├── bs │ │ │ └── viewer.properties │ │ ├── ca │ │ │ └── viewer.properties │ │ ├── cs │ │ │ └── viewer.properties │ │ ├── csb │ │ │ └── viewer.properties │ │ ├── cy │ │ │ └── viewer.properties │ │ ├── da │ │ │ └── viewer.properties │ │ ├── de │ │ │ └── viewer.properties │ │ ├── el │ │ │ └── viewer.properties │ │ ├── en-GB │ │ │ └── viewer.properties │ │ ├── en-US │ │ │ └── viewer.properties │ │ ├── en-ZA │ │ │ └── viewer.properties │ │ ├── eo │ │ │ └── viewer.properties │ │ ├── es-AR │ │ │ └── viewer.properties │ │ ├── es-CL │ │ │ └── viewer.properties │ │ ├── es-ES │ │ │ └── viewer.properties │ │ ├── es-MX │ │ │ └── viewer.properties │ │ ├── et │ │ │ └── viewer.properties │ │ ├── eu │ │ │ └── viewer.properties │ │ ├── fa │ │ │ └── viewer.properties │ │ ├── ff │ │ │ └── viewer.properties │ │ ├── fi │ │ │ └── viewer.properties │ │ ├── fr │ │ │ └── viewer.properties │ │ ├── fy-NL │ │ │ └── viewer.properties │ │ ├── ga-IE │ │ │ └── viewer.properties │ │ ├── gd │ │ │ └── viewer.properties │ │ ├── gl │ │ │ └── viewer.properties │ │ ├── gu-IN │ │ │ └── viewer.properties │ │ ├── he │ │ │ └── viewer.properties │ │ ├── hi-IN │ │ │ └── viewer.properties │ │ ├── hr │ │ │ └── viewer.properties │ │ ├── hu │ │ │ └── viewer.properties │ │ ├── hy-AM │ │ │ └── viewer.properties │ │ ├── id │ │ │ └── viewer.properties │ │ ├── is │ │ │ └── viewer.properties │ │ ├── it │ │ │ └── viewer.properties │ │ ├── ja │ │ │ └── viewer.properties │ │ ├── ka │ │ │ └── viewer.properties │ │ ├── kk │ │ │ └── viewer.properties │ │ ├── km │ │ │ └── viewer.properties │ │ ├── kn │ │ │ └── viewer.properties │ │ ├── ko │ │ │ └── viewer.properties │ │ ├── ku │ │ │ └── viewer.properties │ │ ├── lg │ │ │ └── viewer.properties │ │ ├── lij │ │ │ └── viewer.properties │ │ ├── locale.properties │ │ ├── lt │ │ │ └── viewer.properties │ │ ├── lv │ │ │ └── viewer.properties │ │ ├── mai │ │ │ └── viewer.properties │ │ ├── mk │ │ │ └── viewer.properties │ │ ├── ml │ │ │ └── viewer.properties │ │ ├── mn │ │ │ └── viewer.properties │ │ ├── mr │ │ │ └── viewer.properties │ │ ├── ms │ │ │ └── viewer.properties │ │ ├── my │ │ │ └── viewer.properties │ │ ├── nb-NO │ │ │ └── viewer.properties │ │ ├── nl │ │ │ └── viewer.properties │ │ ├── nn-NO │ │ │ └── viewer.properties │ │ ├── nso │ │ │ └── viewer.properties │ │ ├── oc │ │ │ └── viewer.properties │ │ ├── or │ │ │ └── viewer.properties │ │ ├── pa-IN │ │ │ └── viewer.properties │ │ ├── pl │ │ │ └── viewer.properties │ │ ├── pt-BR │ │ │ └── viewer.properties │ │ ├── pt-PT │ │ │ └── viewer.properties │ │ ├── rm │ │ │ └── viewer.properties │ │ ├── ro │ │ │ └── viewer.properties │ │ ├── ru │ │ │ └── viewer.properties │ │ ├── rw │ │ │ └── viewer.properties │ │ ├── sah │ │ │ └── viewer.properties │ │ ├── si │ │ │ └── viewer.properties │ │ ├── sk │ │ │ └── viewer.properties │ │ ├── sl │ │ │ └── viewer.properties │ │ ├── son │ │ │ └── viewer.properties │ │ ├── sq │ │ │ └── viewer.properties │ │ ├── sr │ │ │ └── viewer.properties │ │ ├── sv-SE │ │ │ └── viewer.properties │ │ ├── sw │ │ │ └── viewer.properties │ │ ├── ta-LK │ │ │ └── viewer.properties │ │ ├── ta │ │ │ └── viewer.properties │ │ ├── te │ │ │ └── viewer.properties │ │ ├── th │ │ │ └── viewer.properties │ │ ├── tl │ │ │ └── viewer.properties │ │ ├── tn │ │ │ └── viewer.properties │ │ ├── tr │ │ │ └── viewer.properties │ │ ├── uk │ │ │ └── viewer.properties │ │ ├── ur │ │ │ └── viewer.properties │ │ ├── vi │ │ │ └── viewer.properties │ │ ├── wo │ │ │ └── viewer.properties │ │ ├── xh │ │ │ └── viewer.properties │ │ ├── zh-CN │ │ │ └── viewer.properties │ │ ├── zh-TW │ │ │ └── viewer.properties │ │ └── zu │ │ │ └── viewer.properties │ │ ├── python.pdf │ │ ├── viewer.css │ │ ├── viewer.html │ │ └── viewer.js │ ├── bootstrap.min.js │ ├── custom-file-input.js │ ├── fun.base.js │ ├── jQuery.js │ ├── jquery-3.3.1.min.js │ ├── jquery.min.js │ ├── jquery.nouislider.js │ ├── jquery.nouislider.min.js │ └── script.js └── templates ├── file_list.html ├── file_view.html ├── fileupload.html └── login.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/Fileview.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/.idea/Fileview.iml -------------------------------------------------------------------------------- /.idea/dataSources.local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/.idea/dataSources.local.xml -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/dataSources/c76c5d35-aff0-4c35-9895-dc8c065e3de8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/.idea/dataSources/c76c5d35-aff0-4c35-9895-dc8c065e3de8.xml -------------------------------------------------------------------------------- /.idea/dictionaries/jsonhua.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/.idea/dictionaries/jsonhua.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Fileview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Fileview/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/Fileview/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Fileview/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/Fileview/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /Fileview/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/Fileview/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /Fileview/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/Fileview/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /Fileview/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/Fileview/settings.py -------------------------------------------------------------------------------- /Fileview/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/Fileview/urls.py -------------------------------------------------------------------------------- /Fileview/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/Fileview/wsgi.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /file/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /file/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /file/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /file/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /file/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /file/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/admin.py -------------------------------------------------------------------------------- /file/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/apps.py -------------------------------------------------------------------------------- /file/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/migrations/0001_initial.py -------------------------------------------------------------------------------- /file/migrations/0002_auto_20180613_1639.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/migrations/0002_auto_20180613_1639.py -------------------------------------------------------------------------------- /file/migrations/0003_filename_classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/migrations/0003_filename_classify.py -------------------------------------------------------------------------------- /file/migrations/0004_filename_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/migrations/0004_filename_time.py -------------------------------------------------------------------------------- /file/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /file/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /file/migrations/__pycache__/0002_auto_20180613_1639.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/migrations/__pycache__/0002_auto_20180613_1639.cpython-36.pyc -------------------------------------------------------------------------------- /file/migrations/__pycache__/0003_filename_classify.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/migrations/__pycache__/0003_filename_classify.cpython-36.pyc -------------------------------------------------------------------------------- /file/migrations/__pycache__/0004_filename_time.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/migrations/__pycache__/0004_filename_time.cpython-36.pyc -------------------------------------------------------------------------------- /file/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /file/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/models.py -------------------------------------------------------------------------------- /file/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/tests.py -------------------------------------------------------------------------------- /file/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/file/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/manage.py -------------------------------------------------------------------------------- /statics/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/css/bootstrap.css -------------------------------------------------------------------------------- /statics/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/css/bootstrap.min.css -------------------------------------------------------------------------------- /statics/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/css/common.css -------------------------------------------------------------------------------- /statics/css/component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/css/component.css -------------------------------------------------------------------------------- /statics/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/css/default.css -------------------------------------------------------------------------------- /statics/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/css/main.css -------------------------------------------------------------------------------- /statics/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/css/normalize.css -------------------------------------------------------------------------------- /statics/filepath/django.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/filepath/django.pdf -------------------------------------------------------------------------------- /statics/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /statics/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /statics/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /statics/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /statics/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /statics/fonts/lato/lato-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-black.eot -------------------------------------------------------------------------------- /statics/fonts/lato/lato-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-black.svg -------------------------------------------------------------------------------- /statics/fonts/lato/lato-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-black.ttf -------------------------------------------------------------------------------- /statics/fonts/lato/lato-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-black.woff -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-bold.eot -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-bold.svg -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-bold.ttf -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-bold.woff -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bolditalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-bolditalic.svg -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /statics/fonts/lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-italic.eot -------------------------------------------------------------------------------- /statics/fonts/lato/lato-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-italic.svg -------------------------------------------------------------------------------- /statics/fonts/lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-italic.ttf -------------------------------------------------------------------------------- /statics/fonts/lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-italic.woff -------------------------------------------------------------------------------- /statics/fonts/lato/lato-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-light.eot -------------------------------------------------------------------------------- /statics/fonts/lato/lato-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-light.svg -------------------------------------------------------------------------------- /statics/fonts/lato/lato-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-light.ttf -------------------------------------------------------------------------------- /statics/fonts/lato/lato-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-light.woff -------------------------------------------------------------------------------- /statics/fonts/lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-regular.eot -------------------------------------------------------------------------------- /statics/fonts/lato/lato-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-regular.svg -------------------------------------------------------------------------------- /statics/fonts/lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-regular.ttf -------------------------------------------------------------------------------- /statics/fonts/lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/fonts/lato/lato-regular.woff -------------------------------------------------------------------------------- /statics/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/Thumbs.db -------------------------------------------------------------------------------- /statics/images/air-balloon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/air-balloon-1.png -------------------------------------------------------------------------------- /statics/images/air-balloon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/air-balloon-2.png -------------------------------------------------------------------------------- /statics/images/captchaCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/captchaCode.jpg -------------------------------------------------------------------------------- /statics/images/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/circle.png -------------------------------------------------------------------------------- /statics/images/icon_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_card.png -------------------------------------------------------------------------------- /statics/images/icon_card_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_card_grey.png -------------------------------------------------------------------------------- /statics/images/icon_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_change.png -------------------------------------------------------------------------------- /statics/images/icon_change_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_change_grey.png -------------------------------------------------------------------------------- /statics/images/icon_char.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_char.png -------------------------------------------------------------------------------- /statics/images/icon_char_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_char_grey.png -------------------------------------------------------------------------------- /statics/images/icon_chara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_chara.png -------------------------------------------------------------------------------- /statics/images/icon_chara_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_chara_grey.png -------------------------------------------------------------------------------- /statics/images/icon_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_house.png -------------------------------------------------------------------------------- /statics/images/icon_house_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_house_grey.png -------------------------------------------------------------------------------- /statics/images/icon_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_rule.png -------------------------------------------------------------------------------- /statics/images/icon_rule_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_rule_grey.png -------------------------------------------------------------------------------- /statics/images/icon_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_source.png -------------------------------------------------------------------------------- /statics/images/icon_source_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_source_grey.png -------------------------------------------------------------------------------- /statics/images/icon_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_user.png -------------------------------------------------------------------------------- /statics/images/icon_user_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/icon_user_grey.png -------------------------------------------------------------------------------- /statics/images/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/login-bg.jpg -------------------------------------------------------------------------------- /statics/images/login-foot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/login-foot.jpg -------------------------------------------------------------------------------- /statics/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/login.png -------------------------------------------------------------------------------- /statics/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/logo.png -------------------------------------------------------------------------------- /statics/images/progress02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/images/progress02.png -------------------------------------------------------------------------------- /statics/js/DD_belatedPNG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/DD_belatedPNG.js -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/build/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/build/pdf.js -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/build/pdf.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/build/pdf.worker.js -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/doc/09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/doc/09.pdf -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web.config -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/09.pdf -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/83pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/83pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90msp-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90msp-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90msp-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90msp-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90pv-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90pv-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-0.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-1.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-3.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-4.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-5.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-6.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-UCS2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-0.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-1.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-3.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-4.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-5.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-UCS2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-0.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-1.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-3.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-4.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-5.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-6.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-UCS2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-0.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-1.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-UCS2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5pc-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5pc-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5pc-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5pc-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS1-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS1-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS1-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS1-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS2-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS2-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETHK-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETHK-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETHK-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETHK-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETen-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETen-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETen-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETen-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETenms-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETenms-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETenms-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETenms-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK2K-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK2K-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK2K-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK2K-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBKp-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBKp-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBKp-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBKp-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBTpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBTpc-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBTpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBTpc-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBpc-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBpc-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdla-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdla-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdla-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdla-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdlb-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdlb-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdlb-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdlb-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKgccs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKgccs-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKgccs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKgccs-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm314-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm314-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm314-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm314-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm471-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm471-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm471-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm471-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKscs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKscs-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKscs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKscs-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Hankaku.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Hankaku.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Hiragana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Hiragana.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-Johab-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-Johab-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-Johab-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-Johab-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-HW-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-HW-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCpc-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCpc-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Katakana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Katakana.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/LICENSE -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/NWP-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/NWP-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/NWP-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/NWP-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Roman.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Roman.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UCS2-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UCS2-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-HW-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISPro-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISPro-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISPro-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISPro-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISPro-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISPro-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX0213-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX0213-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX0213-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX0213-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX02132004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX02132004-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX02132004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX02132004-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UCS2-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/WP-Symbol.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/WP-Symbol.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/compatibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/compatibility.js -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/debugger.js -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-check.svg -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-comment.svg -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-help.svg -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-insert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-insert.svg -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-key.svg -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-newparagraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-newparagraph.svg -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-noicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-noicon.svg -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-note.svg -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-paragraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-paragraph.svg -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/grab.cur -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/grabbing.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/grabbing.cur -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/loading-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/loading-icon.gif -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/loading-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/loading-small.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-documentProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-documentProperties.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-documentProperties@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-documentProperties@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-firstPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-firstPage.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-firstPage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-firstPage@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-handTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-handTool.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-handTool@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-handTool@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-lastPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-lastPage.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-lastPage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-lastPage@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCcw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCcw.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCcw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCcw@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCw.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCw@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/shadow.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/texture.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-bookmark.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-bookmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-bookmark@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-download.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-download@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-menuArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-menuArrows.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-menuArrows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-menuArrows@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-openFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-openFile.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-openFile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-openFile@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-presentationMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-presentationMode.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-presentationMode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-presentationMode@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-print.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-print@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-print@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-search.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-search@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewAttachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewAttachments.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewAttachments@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewAttachments@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewThumbnail.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewThumbnail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewThumbnail@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomIn.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomIn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomIn@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomOut.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomOut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomOut@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/l10n.js -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ach/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ach/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/af/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/af/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ak/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ak/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/an/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/an/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ar/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ar/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/as/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/as/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ast/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ast/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/az/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/az/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/be/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/be/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/bg/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/bg/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/bn-BD/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/bn-BD/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/bn-IN/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/bn-IN/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/br/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/br/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/bs/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/bs/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ca/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ca/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/cs/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/cs/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/csb/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/csb/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/cy/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/cy/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/da/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/da/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/de/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/de/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/el/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/el/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/en-GB/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/en-GB/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/en-US/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/en-US/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/en-ZA/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/en-ZA/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/eo/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/eo/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/es-AR/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/es-AR/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/es-CL/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/es-CL/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/es-ES/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/es-ES/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/es-MX/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/es-MX/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/et/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/et/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/eu/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/eu/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/fa/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/fa/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ff/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ff/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/fi/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/fi/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/fr/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/fr/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/fy-NL/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/fy-NL/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ga-IE/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ga-IE/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/gd/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/gd/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/gl/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/gl/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/gu-IN/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/gu-IN/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/he/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/he/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/hi-IN/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/hi-IN/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/hr/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/hr/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/hu/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/hu/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/hy-AM/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/hy-AM/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/id/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/id/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/is/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/is/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/it/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/it/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ja/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ja/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ka/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ka/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/kk/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/kk/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/km/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/km/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/kn/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/kn/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ko/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ko/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ku/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ku/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/lg/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/lg/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/lij/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/lij/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/locale.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/locale.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/lt/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/lt/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/lv/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/lv/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/mai/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/mai/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/mk/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/mk/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ml/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ml/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/mn/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/mn/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/mr/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/mr/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ms/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ms/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/my/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/my/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/nb-NO/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/nb-NO/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/nl/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/nl/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/nn-NO/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/nn-NO/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/nso/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/nso/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/oc/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/oc/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/or/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/or/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/pa-IN/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/pa-IN/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/pl/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/pl/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/pt-BR/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/pt-BR/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/pt-PT/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/pt-PT/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/rm/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/rm/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ro/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ro/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ru/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ru/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/rw/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/rw/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/sah/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/sah/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/si/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/si/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/sk/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/sk/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/sl/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/sl/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/son/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/son/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/sq/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/sq/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/sr/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/sr/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/sv-SE/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/sv-SE/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/sw/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/sw/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ta-LK/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ta-LK/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ta/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ta/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/te/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/te/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/th/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/th/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/tl/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/tl/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/tn/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/tn/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/tr/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/tr/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/uk/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/uk/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ur/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/ur/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/vi/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/vi/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/wo/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/wo/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/xh/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/xh/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/zh-CN/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/zh-CN/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/zh-TW/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/zh-TW/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/zu/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/locale/zu/viewer.properties -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/python.pdf -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/viewer.css -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/viewer.html -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/PDFJSInNet/PDFJSInNet/web/viewer.js -------------------------------------------------------------------------------- /statics/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/bootstrap.min.js -------------------------------------------------------------------------------- /statics/js/custom-file-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/custom-file-input.js -------------------------------------------------------------------------------- /statics/js/fun.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/fun.base.js -------------------------------------------------------------------------------- /statics/js/jQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/jQuery.js -------------------------------------------------------------------------------- /statics/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /statics/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/jquery.min.js -------------------------------------------------------------------------------- /statics/js/jquery.nouislider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/jquery.nouislider.js -------------------------------------------------------------------------------- /statics/js/jquery.nouislider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/jquery.nouislider.min.js -------------------------------------------------------------------------------- /statics/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/statics/js/script.js -------------------------------------------------------------------------------- /templates/file_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/templates/file_list.html -------------------------------------------------------------------------------- /templates/file_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/templates/file_view.html -------------------------------------------------------------------------------- /templates/fileupload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/templates/fileupload.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/HEAD/templates/login.html --------------------------------------------------------------------------------