├── .babelrc ├── .editorconfig ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── workflows │ └── projects.yml ├── .gitignore ├── .travi.yml ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── WOKFLOW.md ├── assets ├── README.md ├── css │ ├── _body.scss │ ├── _breadcrumb.scss │ ├── _btn.scss │ ├── _cards.scss │ ├── _chart.scss │ ├── _colors.scss │ ├── _css_file_icons.scss │ ├── _cursor.scss │ ├── _dialogs.scss │ ├── _font-weights.scss │ ├── _fonts.scss │ ├── _links.scss │ ├── _mixin.scss │ ├── _stamps.scss │ ├── _table.scss │ ├── _theme.scss │ ├── styles.css │ ├── styles.css.map │ └── styles.scss ├── data │ ├── chapterDetails.json │ └── footer.json ├── fonts │ ├── fira │ │ ├── FiraSans-Black.ttf │ │ ├── FiraSans-BlackItalic.ttf │ │ ├── FiraSans-Bold.ttf │ │ ├── FiraSans-BoldItalic.ttf │ │ ├── FiraSans-ExtraBold.ttf │ │ ├── FiraSans-ExtraBoldItalic.ttf │ │ ├── FiraSans-ExtraLight.ttf │ │ ├── FiraSans-ExtraLightItalic.ttf │ │ ├── FiraSans-Italic.ttf │ │ ├── FiraSans-Light.ttf │ │ ├── FiraSans-LightItalic.ttf │ │ ├── FiraSans-Medium.ttf │ │ ├── FiraSans-MediumItalic.ttf │ │ ├── FiraSans-Regular.ttf │ │ ├── FiraSans-SemiBold.ttf │ │ ├── FiraSans-SemiBoldItalic.ttf │ │ ├── FiraSans-Thin.ttf │ │ ├── FiraSans-ThinItalic.ttf │ │ ├── OFL.txt │ │ └── oxygen.css │ ├── motserrat │ │ ├── Montserrat-Black.ttf │ │ ├── Montserrat-BlackItalic.ttf │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-BoldItalic.ttf │ │ ├── Montserrat-ExtraBold.ttf │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ ├── Montserrat-ExtraLight.ttf │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ ├── Montserrat-Italic.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-LightItalic.ttf │ │ ├── Montserrat-Medium.ttf │ │ ├── Montserrat-MediumItalic.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-SemiBold.ttf │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ ├── Montserrat-Thin.ttf │ │ └── Montserrat-ThinItalic.ttf │ ├── mulish │ │ ├── Mulish-Black.ttf │ │ ├── Mulish-BlackItalic.ttf │ │ ├── Mulish-Bold.ttf │ │ ├── Mulish-BoldItalic.ttf │ │ ├── Mulish-ExtraBold.ttf │ │ ├── Mulish-ExtraBoldItalic.ttf │ │ ├── Mulish-ExtraLight.ttf │ │ ├── Mulish-ExtraLightItalic.ttf │ │ ├── Mulish-Italic.ttf │ │ ├── Mulish-Light.ttf │ │ ├── Mulish-LightItalic.ttf │ │ ├── Mulish-Medium.ttf │ │ ├── Mulish-MediumItalic.ttf │ │ ├── Mulish-Regular.ttf │ │ ├── Mulish-SemiBold.ttf │ │ └── Mulish-SemiBoldItalic.ttf │ ├── oxygen │ │ ├── Oxygen-Bold.ttf │ │ ├── Oxygen-Light.ttf │ │ └── Oxygen-Regular.ttf │ ├── productsans │ │ ├── Product Sans Bold.ttf │ │ ├── Product-Sans-Bold-Italic.ttf │ │ ├── Product-Sans-Italic.ttf │ │ ├── Product-Sans-Light.ttf │ │ ├── Product-Sans-Regular.ttf │ │ ├── ProductSans-Black.ttf │ │ ├── ProductSans-BlackItalic.ttf │ │ ├── ProductSans-Bold.ttf │ │ ├── ProductSans-BoldItalic.ttf │ │ ├── ProductSans-Italic.ttf │ │ ├── ProductSans-Light.ttf │ │ ├── ProductSans-LightItalic.ttf │ │ ├── ProductSans-Medium.ttf │ │ ├── ProductSans-MediumItalic.ttf │ │ ├── ProductSans-Regular.ttf │ │ ├── ProductSans-Thin.ttf │ │ └── ProductSans-ThinItalic.ttf │ ├── roboto │ │ ├── LICENSE.txt │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-BlackItalic.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-MediumItalic.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ └── Roboto-ThinItalic.ttf │ └── sofia │ │ ├── Sofia-Pro-Extra-Light.otf │ │ ├── Sofia-Pro-Light.otf │ │ ├── Sofia-Pro-Medium.otf │ │ └── Sofia-Pro-Medium.ttf ├── images │ ├── 404.png │ ├── body_background.jpg │ ├── chat_bot.png │ ├── favicon.png │ ├── icon.png │ ├── logo.png │ ├── medical_physician_doctor_hands.png │ ├── reg_pannel_background.jpg │ ├── screenshot.png │ ├── stamp.png │ └── swagger.png ├── variables.css ├── variables.css.map └── variables.scss ├── components ├── PdfViewer.vue ├── README.md ├── TFooter.vue ├── _tool_bar.vue ├── charts │ ├── ApexBarChart.vue │ ├── ApexLineChart.vue │ ├── BasicBarChart.vue │ ├── DonutChartComponent.vue │ ├── PieChartComponent.vue │ ├── SmoothLineChart.vue │ ├── area_chart_spline.vue │ ├── line-chart-gradient.vue │ └── summary-card.vue ├── consultation │ ├── c_address_card.vue │ ├── c_info_card.vue │ ├── c_type_divider.vue │ ├── consultation_card.vue │ └── tabs │ │ ├── admissions.vue │ │ ├── biograph.vue │ │ ├── charges.vue │ │ ├── consultations.vue │ │ ├── diagnoses.vue │ │ ├── doctor.vue │ │ ├── insurance.vue │ │ ├── medicalservices.vue │ │ ├── medications.vue │ │ └── reports.vue ├── contact_form.vue ├── finance │ ├── receipt_component.vue │ ├── statistical-card.vue │ ├── total-cards.vue │ └── transactions_card.vue ├── medical │ ├── admission_info_card.vue │ ├── index.vue │ ├── medical_info_card.vue │ └── p_post_comment_tile.vue ├── patients │ ├── PatientListing.vue │ └── beds_list.vue ├── pharmacy │ └── tabs │ │ ├── categories.vue │ │ ├── groups.vue │ │ ├── measurement.vue │ │ └── medicine.vue ├── reports │ └── report.vue ├── services │ └── medical_service.vue ├── staff │ ├── staff_card.vue │ └── tabs │ │ └── appointments.vue └── statistics │ └── dashboard_card.vue ├── jest.config.js ├── jsconfig.json ├── layouts ├── README.md ├── dashboard.vue ├── default.vue ├── error.vue ├── finance.vue ├── home.vue └── settings.vue ├── middleware ├── README.md └── router.js ├── mixins └── mixins.js ├── nuxt.config.js ├── package-lock.json ├── package.json ├── pages ├── README.md ├── about.vue ├── admission │ └── _id │ │ ├── index.vue │ │ ├── visit.vue │ │ └── visits.vue ├── appointments.vue ├── calendar │ ├── index.vue │ └── list.vue ├── consultations │ ├── _id.vue │ └── index.vue ├── departments │ ├── _id.vue │ └── index.vue ├── example.vue ├── finance │ ├── bills │ │ ├── _id.vue │ │ └── index.vue │ ├── index.vue │ ├── reports.vue │ └── transactions.vue ├── index.vue ├── insurances │ ├── _id.vue │ └── index.vue ├── inventory.vue ├── inventory │ ├── bed.vue │ ├── bloods.vue │ ├── index.vue │ ├── medicine.vue │ └── ward │ │ ├── _id.vue │ │ └── index.vue ├── ipd.vue ├── lab.vue ├── me.vue ├── notifications.vue ├── opd.vue ├── patients │ ├── _id │ │ ├── _action │ │ │ └── index.vue │ │ ├── contacts │ │ │ ├── add.vue │ │ │ └── index.vue │ │ └── index.vue │ ├── add.vue │ └── index.vue ├── pharmacy │ └── index.vue ├── receipt.vue ├── reports │ ├── _id.vue │ └── index.vue ├── services │ ├── _service.vue │ ├── index.vue │ └── types.vue ├── settings │ ├── admin.vue │ ├── colors.vue │ ├── config │ │ ├── _command.vue │ │ └── email.vue │ ├── configurations.vue │ ├── index.vue │ ├── roles │ │ ├── _id.vue │ │ └── index.vue │ ├── selfservices.vue │ ├── sms.vue │ └── users.vue ├── settingsa.vue ├── signin.vue ├── staffs │ ├── _id.vue │ └── index.vue ├── stations.vue └── viewreport.vue ├── plugins ├── README.md ├── authaxios.js ├── axios.js ├── ga.js ├── i18n.js ├── meta.js ├── mixins.js ├── pwa.client.js ├── vue-apexcharts.js ├── vuepersistence.js └── vuetify.js ├── static ├── README.md ├── favicon.ico ├── google914a0b4ff7d56312.html ├── icon.png ├── lib │ ├── core │ │ ├── CoreControls.js │ │ ├── PDFInfoVersion1.chunk.js │ │ ├── SelectionInfoOld.chunk.js │ │ ├── external │ │ │ ├── Promise.js │ │ │ ├── decode.min.js │ │ │ ├── html2canvas.min.js │ │ │ ├── pako_inflate.min.js │ │ │ └── rawinflate.js │ │ ├── pako.chunk.js │ │ ├── pdfjs │ │ │ ├── PDFJSDocumentType.js │ │ │ ├── UIConfig.js │ │ │ ├── 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 │ │ │ ├── pdf.worker.js │ │ │ ├── pdfjsexpress.asm.js │ │ │ └── pdfjsexpress.wasm │ │ ├── vendors~ascii85.chunk.js │ │ └── vendors~pako.chunk.js │ └── ui │ │ ├── assets │ │ ├── calibrate.svg │ │ ├── cancel-24px.svg │ │ ├── edit-24px.svg │ │ ├── fonts │ │ │ ├── GreatVibes-Regular.woff │ │ │ └── GreatVibes-Regular.woff2 │ │ ├── ic-triangle.svg │ │ ├── ic_annotation_add_redact_black_24px.svg │ │ ├── ic_annotation_apply_redact_black_24px.svg │ │ ├── ic_annotation_area_black_24px.svg │ │ ├── ic_annotation_arrow_black_24px.svg │ │ ├── ic_annotation_callout_black_24px.svg │ │ ├── ic_annotation_circle_black_24px.svg │ │ ├── ic_annotation_cloud_black_24px.svg │ │ ├── ic_annotation_distance_black_24px.svg │ │ ├── ic_annotation_eraser_black_24px.svg │ │ ├── ic_annotation_free_highlight_black_24px.svg │ │ ├── ic_annotation_freehand_black_24px.svg │ │ ├── ic_annotation_freetext_black_24px.svg │ │ ├── ic_annotation_highlight_black_24px.svg │ │ ├── ic_annotation_image_black_24px.svg │ │ ├── ic_annotation_line_black_24px.svg │ │ ├── ic_annotation_perimeter_black_24px.svg │ │ ├── ic_annotation_polygon_black_24px.svg │ │ ├── ic_annotation_polyline_black_24px.svg │ │ ├── ic_annotation_rectangular_area_black_24px.svg │ │ ├── ic_annotation_redact_black_24px.svg │ │ ├── ic_annotation_ruler_black_24px.svg │ │ ├── ic_annotation_signature_black_24px.svg │ │ ├── ic_annotation_square_black_24px.svg │ │ ├── ic_annotation_squiggly_black_24px.svg │ │ ├── ic_annotation_stamp_black_24px.svg │ │ ├── ic_annotation_sticky_note_black_24px.svg │ │ ├── ic_annotation_strikeout_black_24px.svg │ │ ├── ic_annotation_underline_black_24px.svg │ │ ├── ic_annotations_black_24px.svg │ │ ├── ic_arrow_down_black_24px.svg │ │ ├── ic_arrow_drop_down_black_24px.svg │ │ ├── ic_arrow_up_black_24px.svg │ │ ├── ic_bookmarks_black_24px.svg │ │ ├── ic_check_black_24px.svg │ │ ├── ic_chevron_down_black_24px.svg │ │ ├── ic_chevron_left_black_24px.svg │ │ ├── ic_chevron_right_black_24px.svg │ │ ├── ic_chevron_up_black_24px.svg │ │ ├── ic_close_black_24px.svg │ │ ├── ic_comment_black_24px.svg │ │ ├── ic_copy_black_24px.svg │ │ ├── ic_crop_black_24px.svg │ │ ├── ic_delete_black_24px.svg │ │ ├── ic_edit_black_24px.svg │ │ ├── ic_extract_black_24px.svg │ │ ├── ic_fileattachment_24px.svg │ │ ├── ic_fit_page_black_24px.svg │ │ ├── ic_fit_width_black_24px.svg │ │ ├── ic_font_size_black_24px.svg │ │ ├── ic_group_24px.svg │ │ ├── ic_group_button_24px.svg │ │ ├── ic_layers_24px.svg │ │ ├── ic_left_sidebar_black_24px.svg │ │ ├── ic_list_black_24px.svg │ │ ├── ic_menu_black_24px.svg │ │ ├── ic_mode_day_black_24px.svg │ │ ├── ic_mode_night_black_24px.svg │ │ ├── ic_more_black_24px.svg │ │ ├── ic_outline_black_24px.svg │ │ ├── ic_overflow_black_24px.svg │ │ ├── ic_palette_black_24px.svg │ │ ├── ic_pan_black_24px.svg │ │ ├── ic_placeholder_black_24px.svg │ │ ├── ic_rotate_left_black_24px.svg │ │ ├── ic_rotate_right_black_24px.svg │ │ ├── ic_search_black_24px.svg │ │ ├── ic_select_black_24px.svg │ │ ├── ic_select_rectangular_black_24px.svg │ │ ├── ic_thumbnails_black_24px.svg │ │ ├── ic_thumbnails_grid_black_24px.svg │ │ ├── ic_ungroup_24px.svg │ │ ├── ic_view_mode_continuous_black_24px.svg │ │ ├── ic_view_mode_cover_black_24px.svg │ │ ├── ic_view_mode_facing_black_24px.svg │ │ ├── ic_view_mode_reflow_black_24px.svg │ │ ├── ic_view_mode_single_black_24px.svg │ │ ├── ic_viewer_settings_black_24px.svg │ │ ├── ic_zoom_in_black_24px.svg │ │ ├── ic_zoom_out_black_24px.svg │ │ ├── icon-download.svg │ │ ├── icon-text-bold.svg │ │ ├── icon-text-italic.svg │ │ ├── icon-text-underline.svg │ │ ├── icon-tool-link.svg │ │ ├── icon-tool-unlink.svg │ │ ├── pdftron.ico │ │ └── textselect_cursor.svg │ │ ├── configorigin.txt │ │ ├── i18n │ │ ├── translation-de.json │ │ ├── translation-en.json │ │ ├── translation-es.json │ │ ├── translation-fr.json │ │ ├── translation-ja.json │ │ ├── translation-ko.json │ │ ├── translation-nl.json │ │ ├── translation-pt_br.json │ │ ├── translation-ru.json │ │ ├── translation-zh_cn.json │ │ └── translation-zh_tw.json │ │ ├── index.html │ │ ├── style.css │ │ └── webviewer-ui.min.js ├── locales │ ├── content-ar.json │ ├── content-en.json │ ├── content-fr.json │ └── content-sw.json ├── logo.png ├── report.html ├── robots.txt ├── v.png └── vuetify-logo.svg ├── store ├── accounting.js ├── appointment.js ├── authentication.js ├── bills.js ├── bloodbank.js ├── calendar.js ├── configurations.js ├── consultations.js ├── contacts.js ├── departments.js ├── diagnosis.js ├── documents.js ├── index.js ├── insurances.js ├── inventory.js ├── laboratory.js ├── medicalservices.js ├── mutation-types.js ├── notifications.js ├── patient_insurances.js ├── patients.js ├── pharmacy.js ├── profile.js ├── radiology.js ├── reports.js ├── servicetypes.js ├── signup.js ├── smsconfigurations.js ├── statistics.js ├── template.js ├── theme.js ├── transactions.js └── users.js ├── test └── Logo.spec.js └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "test": { 4 | "presets": [ 5 | [ 6 | "@babel/preset-env", 7 | { 8 | "targets": { 9 | "node": "current" 10 | } 11 | } 12 | ] 13 | ] 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { 4 | browser: true, 5 | node: true 6 | }, 7 | extends: [ 8 | '@nuxtjs/eslint-config-typescript', 9 | 'plugin:nuxt/recommended' 10 | ], 11 | plugins: [ 12 | ], 13 | // add your custom rules here 14 | rules: {} 15 | } 16 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom issue template 3 | about: Describe this issue template's purpose here. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | ### Node template 3 | # Logs 4 | /logs 5 | *.log 6 | npm-debug.log* 7 | yarn-debug.log* 8 | yarn-error.log* 9 | 10 | # Runtime data 11 | pids 12 | *.pid 13 | *.seed 14 | *.pid.lock 15 | 16 | # Directory for instrumented libs generated by jscoverage/JSCover 17 | lib-cov 18 | 19 | # Coverage directory used by tools like istanbul 20 | coverage 21 | 22 | # nyc test coverage 23 | .nyc_output 24 | 25 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 26 | .grunt 27 | 28 | # Bower dependency directory (https://bower.io/) 29 | bower_components 30 | 31 | # node-waf configuration 32 | .lock-wscript 33 | 34 | # Compiled binary addons (https://nodejs.org/api/addons.html) 35 | build/Release 36 | 37 | # Dependency directories 38 | node_modules/ 39 | jspm_packages/ 40 | 41 | # TypeScript v1 declaration files 42 | typings/ 43 | 44 | # Optional npm cache directory 45 | .npm 46 | 47 | # Optional eslint cache 48 | .eslintcache 49 | 50 | # Optional REPL history 51 | .node_repl_history 52 | 53 | # Output of 'npm pack' 54 | *.tgz 55 | 56 | # Yarn Integrity file 57 | .yarn-integrity 58 | 59 | # dotenv environment variables file 60 | .env 61 | 62 | # parcel-bundler cache (https://parceljs.org/) 63 | .cache 64 | 65 | # next.js build output 66 | .next 67 | 68 | # nuxt.js build output 69 | .nuxt 70 | 71 | # Nuxt generate 72 | dist 73 | 74 | # vuepress build output 75 | .vuepress/dist 76 | 77 | # Serverless directories 78 | .serverless 79 | 80 | # IDE / Editor 81 | .idea 82 | 83 | # Service worker 84 | sw.* 85 | 86 | # macOS 87 | .DS_Store 88 | 89 | # Vim swap files 90 | *.swp 91 | -------------------------------------------------------------------------------- /.travi.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "node" 4 | 5 | install: 6 | - npm install 7 | - npm ci 8 | - npm run generate 9 | 10 | # Keep the npm cache around to speed up installs 11 | cache: 12 | directories: 13 | - "$HOME/.npm" 14 | 15 | script: 16 | - echo "Skipping tests" 17 | 18 | deploy: 19 | provider: pages 20 | skip_cleanup: true 21 | github_token: $GITHUB_TOKEN 22 | local_dir: dist 23 | on: 24 | branch: master 25 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.tabSize": 2, 3 | "editor.formatOnSave": true, 4 | "editor.formatOnType": true, 5 | // Always include all words from the current document. 6 | "javascript.suggest.alwaysAllWords": true, 7 | // Complete functions with their parameter signature. 8 | "javascript.suggest.completeFunctionCalls": true, 9 | "jshint.options": { 10 | "esversion": 8 11 | }, 12 | "files.autoSave": "onFocusChange", 13 | "files.autoSaveDelay": 10 14 | } -------------------------------------------------------------------------------- /WOKFLOW.md: -------------------------------------------------------------------------------- 1 | ## The roadmap. 2 | 3 | ### What the system should and shouldn't be able to do 4 | 5 | - Development steps 6 | - Appointment managements :heavy_check_mark: 7 | - Patient managements :heavy_check_mark: 8 | - Staff managements :heavy_check_mark: 9 | - Inventory Managements :heavy_check_mark: 10 | - Financial management 11 | - Insurance Managements 12 | - Reports managements 13 | - Patient self-service :heavy_check_mark: 14 | 15 | Due to insufficient manpower we are currently working with the first four sections. 16 | 17 | ## Are we in need of anything ? 18 | 19 | Actually yes. We are real in need of Health professionals such as doctors, nurses or anyone with such kind of knowledge of how health organizations work to re-direct us on the working flow, data collections, required reports etc. Also since we are expecting to include an finacial records as show in the [Development steps](what-the-system-should-and-shouldn't-be-able-to-do) and there is a flow of currency within an organization we are also expecting to need anyone with Accouting knowledge or experts. 20 | -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- 1 | # ASSETS 2 | 3 | **This directory is not required, you can delete it if you don't want to use it.** 4 | 5 | This directory contains your un-compiled assets such as LESS, SASS, or JavaScript. 6 | 7 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#webpacked). 8 | -------------------------------------------------------------------------------- /assets/css/_body.scss: -------------------------------------------------------------------------------- 1 | main { 2 | background-color: #f4f4f4; 3 | //background-image: url("../images/body_background.jpg"); 4 | background-size: cover; 5 | background-attachment: fixed; 6 | background-position: center; 7 | background-repeat: no-repeat; 8 | background-size: cover; 9 | -webkit-box-shadow: inset 0 0 0 1000px rgba(63, 203, 98, 0); 10 | box-shadow: inset 0 0 0 1000px rgba(63, 203, 98, 0); 11 | //zoom: 90%; 12 | 13 | &.v-main { 14 | &.default { 15 | zoom: 0%; 16 | } 17 | 18 | &.login { 19 | background: transparent; 20 | background-image: url("https://storage.googleapis.com/aims-edu/images/000/001/174/lead/64.jpg"); 21 | height: 70%; 22 | background-repeat: no-repeat; 23 | background-size: cover; 24 | } 25 | } 26 | } 27 | 28 | .v-application--wrap { 29 | background: transparent; 30 | background-image: url("https://storage.googleapis.com/aims-edu/images/000/001/174/lead/64.jpg"); 31 | height: 70%; 32 | background-repeat: no-repeat; 33 | background-size: cover; 34 | 35 | & footer.v-footer { 36 | background-color: white !important; 37 | opacity: 0.65; 38 | text-decoration-color: black; 39 | } 40 | } 41 | 42 | nav, 43 | header { 44 | zoom: 90%; 45 | } 46 | 47 | .page-enter-active, 48 | .page-leave-active { 49 | transition: opacity 0.5s; 50 | } 51 | 52 | .page-enter, 53 | .page-leave-to { 54 | opacity: 0; 55 | } 56 | 57 | .badge { 58 | z-index: 10 !important; 59 | } 60 | 61 | .apexcharts-toolbar { 62 | z-index: 0 !important; 63 | } -------------------------------------------------------------------------------- /assets/css/_btn.scss: -------------------------------------------------------------------------------- 1 | .button { 2 | background-color: $button_color; 3 | span { 4 | color: $color_white; 5 | font-weight: normal; 6 | font-size: small; 7 | } 8 | &.cancel { 9 | span { 10 | color: white; 11 | } 12 | background-color: $color_cream !important; 13 | } 14 | &.upload { 15 | background-color: $color_teal !important; 16 | } 17 | &.warning { 18 | background-color: $color_warning !important; 19 | span.v-btn__content { 20 | color: $color_white !important; 21 | } 22 | } 23 | &.delete { 24 | background-color: red !important; 25 | } 26 | &.error { 27 | background-color: $color_error !important; 28 | } 29 | i { 30 | font-weight: bold; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /assets/css/_cards.scss: -------------------------------------------------------------------------------- 1 | .v-card.neo { 2 | background: linear-gradient(145deg, #cacaca, #ffffff); 3 | box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff; 4 | } 5 | .swal-wide { 6 | width: 50px !important; 7 | } 8 | 9 | canvas { 10 | width: 100%; 11 | height: 100%; 12 | } 13 | .data-card { 14 | position: relative; 15 | height: 330px; 16 | > data-chart { 17 | height: 100px; 18 | #pie-chart canvas { 19 | height: 50px; 20 | width: 50px; 21 | } 22 | } 23 | } 24 | .card { 25 | /* Add shadows to create the "card" effect */ 26 | box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); 27 | transition: 0.3s; 28 | } 29 | .v-list-group { 30 | background-color: transparent; 31 | } 32 | .v-list-item__icon .v-list-group__header__prepend-icon { 33 | background-color: yellowgreen; 34 | } 35 | -------------------------------------------------------------------------------- /assets/css/_chart.scss: -------------------------------------------------------------------------------- 1 | text.apexcharts-title-text { 2 | font-family: "SofiaPro", sans-serif !important; 3 | } 4 | -------------------------------------------------------------------------------- /assets/css/_colors.scss: -------------------------------------------------------------------------------- 1 | $color_primary: #2cb673; 2 | $color_accent: #000000; 3 | $color_secondary: #ffffff; 4 | $color_success: #4caf50; 5 | $color_info: #2196f3; 6 | $color_warning: #fb8c00; 7 | $color_error: #ff0000; 8 | $color_default: #ffffff; 9 | $color_milky: #fdfff5; 10 | $color_teal: #00897b; 11 | $color_whitish: #f5f5f5; 12 | $color_dlue: #303edb; 13 | $color_white: #ffffff; 14 | $button_color: #2cb673; 15 | $color_cream: #c67f43; 16 | 17 | $button_color: #24a0ed; 18 | $color_drygreen: #2cb673; 19 | 20 | @mixin whitecolor { 21 | color: $color_white; 22 | } 23 | -------------------------------------------------------------------------------- /assets/css/_cursor.scss: -------------------------------------------------------------------------------- 1 | tbody tr { 2 | cursor: pointer; 3 | } 4 | tbody tr td.none-clickable { 5 | cursor: auto; 6 | } 7 | -------------------------------------------------------------------------------- /assets/css/_dialogs.scss: -------------------------------------------------------------------------------- 1 | .v-dialog__content { 2 | .v-dialog { 3 | .v-card { 4 | .v-card__title { 5 | span { 6 | color: $color_white; 7 | font-weight: normal; 8 | } 9 | } 10 | hr.v-divider { 11 | color: blue; 12 | height: 20px; 13 | font-weight: bold; 14 | } 15 | .v-card__actions { 16 | button { 17 | span { 18 | color: $color_white; 19 | font-weight: normal; 20 | font-size: small; 21 | } 22 | } 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /assets/css/_font-weights.scss: -------------------------------------------------------------------------------- 1 | a { 2 | &.link { 3 | text-decoration: none; 4 | text-decoration-color: grey; 5 | } 6 | } 7 | h1, 8 | h2, 9 | h3, 10 | h4, 11 | h5, 12 | h6 { 13 | @include font_family; 14 | font-weight: bold; 15 | color: black; 16 | } 17 | -------------------------------------------------------------------------------- /assets/css/_links.scss: -------------------------------------------------------------------------------- 1 | a, 2 | i { 3 | text-decoration: none; 4 | :hover { 5 | background-color: none; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assets/css/_mixin.scss: -------------------------------------------------------------------------------- 1 | @mixin font_family { 2 | font-family: "SofiaPro", sans-serif; 3 | } 4 | -------------------------------------------------------------------------------- /assets/css/_stamps.scss: -------------------------------------------------------------------------------- 1 | .stamp { 2 | transform: rotate(12deg); 3 | color: #555; 4 | font-size: 3rem; 5 | font-weight: 700; 6 | border: 0.25rem solid #555; 7 | display: inline-block; 8 | padding: 0.25rem 1rem; 9 | text-transform: uppercase; 10 | border-radius: 1rem; 11 | font-family: "Courier"; 12 | mask-image: url("../images/stamp.png"); 13 | mask-size: 944px 604px; 14 | mix-blend-mode: multiply; 15 | margin-top: 2%; 16 | } 17 | 18 | .is-nope { 19 | color: rgb(226, 38, 54); 20 | border: 0.5rem double rgb(218, 31, 46); 21 | transform: rotate(3deg); 22 | -webkit-mask-position: 2rem 3rem; 23 | mask-position: 2rem 3rem; 24 | font-size: 2rem; 25 | } 26 | 27 | .is-approved { 28 | color: #0a9928; 29 | border: 0.5rem solid #0a9928; 30 | -webkit-mask-position: 13rem 6rem; 31 | mask-position: 13rem 6rem; 32 | transform: rotate(-4deg); 33 | border-radius: 0; 34 | } 35 | 36 | .is-draft { 37 | color: #c4c4c4; 38 | border: 1rem double #c4c4c4; 39 | transform: rotate(-5deg); 40 | font-size: 6rem; 41 | font-family: "FiraSans"; 42 | border-radius: 0; 43 | padding: 0.5rem; 44 | } 45 | -------------------------------------------------------------------------------- /assets/css/_table.scss: -------------------------------------------------------------------------------- 1 | @mixin color_red { 2 | color: red; 3 | } 4 | 5 | table { 6 | border-collapse: collapse; 7 | empty-cells: show; 8 | } 9 | 10 | tr:nth-child(odd) { 11 | background: #eaeaea; 12 | 13 | &.strikeout { 14 | @include color_red; 15 | 16 | a { 17 | @include color_red; 18 | } 19 | } 20 | } 21 | 22 | tr:nth-child(even) { 23 | background: white; 24 | 25 | &.strikeout { 26 | @include color_red; 27 | 28 | a { 29 | @include color_red; 30 | } 31 | } 32 | } 33 | 34 | tr.strikeout { 35 | td { 36 | font-size: 10px !important; 37 | position: relative; 38 | 39 | &:not(:last-child) { 40 | &:before { 41 | content: " "; 42 | position: absolute; 43 | top: 50%; 44 | left: 0; 45 | border-bottom: 2px solid red; 46 | width: 100%; 47 | } 48 | 49 | &:after { 50 | content: "\00B7"; 51 | font-size: 1px; 52 | } 53 | } 54 | } 55 | } 56 | 57 | th { 58 | padding-top: 12px; 59 | padding-bottom: 12px; 60 | text-align: left; 61 | background-color: $color_primary; 62 | font-weight: b; 63 | color: white; 64 | 65 | span { 66 | color: white; 67 | } 68 | } 69 | 70 | .v-data-table { 71 | & header { 72 | background-color: $color_primary !important; 73 | } 74 | & .v-input.search { 75 | background-color: white !important; 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /assets/css/_theme.scss: -------------------------------------------------------------------------------- 1 | .v-tab { 2 | text-transform: none !important; 3 | } 4 | .theme--light.v-data-table tbody tr:nth-of-type(even) { 5 | background-color: rgba(227, 255, 235, 0); 6 | } 7 | .theme--dark.v-data-table tbody tr:nth-of-type(even) { 8 | background-color: rgba(227, 255, 235, 0); 9 | } 10 | .page-enter-active, 11 | .page-leave-active { 12 | transition: opacity 0.3s; 13 | } 14 | .page-enter, 15 | .page-leave-to { 16 | opacity: 0; 17 | } 18 | 19 | * { 20 | margin: 0; 21 | padding: 0; 22 | } 23 | -------------------------------------------------------------------------------- /assets/css/styles.scss: -------------------------------------------------------------------------------- 1 | @import "_colors"; 2 | @import "_fonts"; 3 | @import "_mixin"; 4 | @import "_body"; 5 | @import "_breadcrumb"; 6 | @import "_cards"; 7 | @import "_theme"; 8 | @import "_cursor"; 9 | @import "_table"; 10 | @import "_stamps"; 11 | @import "_css_file_icons"; 12 | @import "_btn"; 13 | @import "_dialogs"; 14 | @import "_chart"; 15 | @import "_font-weights.scss"; 16 | @import "_links.scss"; 17 | -------------------------------------------------------------------------------- /assets/data/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "AboutSession": [ 3 | { 4 | "LinkName": "Dashboard", 5 | "Link": "/about" 6 | }, 7 | { 8 | "LinkName": "Developers Groups", 9 | "Link": "https://app.slack.com/client/TC9AJDQMN/GQN93JKM2" 10 | } 11 | ], 12 | "ChapterResourcesSession": [ 13 | { 14 | "LinkName": "Become a Sponsor", 15 | "Link": "mailto:finspointa@gmail.com" 16 | }, 17 | { 18 | "LinkName": "Email Us", 19 | "Link": "mailto: finspointa@gmail.com" 20 | } 21 | ], 22 | "DevConsole": [ 23 | { 24 | "LinkName": "Google API Console", 25 | "Link": "https://console.developers.google.com/" 26 | }, 27 | { 28 | "LinkName": "Firebase Console", 29 | "Link": "https://console.firebase.google.com/" 30 | } 31 | ], 32 | "FooterEndSession": [ 33 | { 34 | "LinkName": "Code of Conduct", 35 | "Link": "https://docs.google.com/document/d/1Wz_w6Z7usMnXKFMpOY4IPbA35twK7Uc4CAxScGDiwOk/edit" 36 | }, 37 | { 38 | "LinkName": "Terms & Servies", 39 | "Link": "https://docs.google.com/document/d/14g3fv9NItiB8Hd-YGYyVYd2N4LRxe6Bx3syWse_wsiA/edit?usp=sharing" 40 | } 41 | ] 42 | } -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/FiraSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/fira/FiraSans-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/fira/oxygen.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Fira Sans'; 3 | font-style: normal; 4 | font-weight: 400; 5 | src: local("Fira Sans"), 6 | url(FiraSans-Regular.ttf) format("truetype"); 7 | } 8 | 9 | html { 10 | font-family: 'Fira Sans'; 11 | } -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/motserrat/Montserrat-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/motserrat/Montserrat-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/mulish/Mulish-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/mulish/Mulish-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/oxygen/Oxygen-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/oxygen/Oxygen-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/oxygen/Oxygen-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/oxygen/Oxygen-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/oxygen/Oxygen-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/oxygen/Oxygen-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/Product Sans Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/Product Sans Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/Product-Sans-Bold-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/Product-Sans-Bold-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/Product-Sans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/Product-Sans-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/Product-Sans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/Product-Sans-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/Product-Sans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/Product-Sans-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/ProductSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/ProductSans-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/ProductSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/ProductSans-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/ProductSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/ProductSans-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/ProductSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/ProductSans-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/ProductSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/ProductSans-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/ProductSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/ProductSans-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/ProductSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/ProductSans-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/ProductSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/ProductSans-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/ProductSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/ProductSans-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/ProductSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/ProductSans-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/ProductSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/ProductSans-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/productsans/ProductSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/productsans/ProductSans-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/sofia/Sofia-Pro-Extra-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/sofia/Sofia-Pro-Extra-Light.otf -------------------------------------------------------------------------------- /assets/fonts/sofia/Sofia-Pro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/sofia/Sofia-Pro-Light.otf -------------------------------------------------------------------------------- /assets/fonts/sofia/Sofia-Pro-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/sofia/Sofia-Pro-Medium.otf -------------------------------------------------------------------------------- /assets/fonts/sofia/Sofia-Pro-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/fonts/sofia/Sofia-Pro-Medium.ttf -------------------------------------------------------------------------------- /assets/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/images/404.png -------------------------------------------------------------------------------- /assets/images/body_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/images/body_background.jpg -------------------------------------------------------------------------------- /assets/images/chat_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/images/chat_bot.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/medical_physician_doctor_hands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/images/medical_physician_doctor_hands.png -------------------------------------------------------------------------------- /assets/images/reg_pannel_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/images/reg_pannel_background.jpg -------------------------------------------------------------------------------- /assets/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/images/screenshot.png -------------------------------------------------------------------------------- /assets/images/stamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/images/stamp.png -------------------------------------------------------------------------------- /assets/images/swagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/assets/images/swagger.png -------------------------------------------------------------------------------- /assets/variables.css: -------------------------------------------------------------------------------- 1 | /*# sourceMappingURL=variables.css.map */ -------------------------------------------------------------------------------- /assets/variables.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":"","file":"variables.css"} -------------------------------------------------------------------------------- /assets/variables.scss: -------------------------------------------------------------------------------- 1 | // Ref: https://github.com/nuxt-community/vuetify-module#customvariables 2 | // 3 | // The variables you want to modify 4 | // $font-size-root: 20px; 5 | -------------------------------------------------------------------------------- /components/PdfViewer.vue: -------------------------------------------------------------------------------- 1 | 17 | 44 | -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- 1 | # COMPONENTS 2 | 3 | **This directory is not required, you can delete it if you don't want to use it.** 4 | 5 | The components directory contains your Vue.js Components. 6 | 7 | _Nuxt.js doesn't supercharge these components._ 8 | -------------------------------------------------------------------------------- /components/_tool_bar.vue: -------------------------------------------------------------------------------- 1 | 9 | 19 | -------------------------------------------------------------------------------- /components/charts/area_chart_spline.vue: -------------------------------------------------------------------------------- 1 | 11 | 72 | -------------------------------------------------------------------------------- /components/consultation/c_type_divider.vue: -------------------------------------------------------------------------------- 1 | 11 | 16 | -------------------------------------------------------------------------------- /components/consultation/tabs/admissions.vue: -------------------------------------------------------------------------------- 1 | 38 | 60 | -------------------------------------------------------------------------------- /components/finance/statistical-card.vue: -------------------------------------------------------------------------------- 1 | 36 | 49 | 55 | -------------------------------------------------------------------------------- /components/finance/total-cards.vue: -------------------------------------------------------------------------------- 1 | 27 | 33 | -------------------------------------------------------------------------------- /components/medical/medical_info_card.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 45 | 58 | -------------------------------------------------------------------------------- /components/medical/p_post_comment_tile.vue: -------------------------------------------------------------------------------- 1 | 18 | 19 | 25 | 26 | 29 | -------------------------------------------------------------------------------- /components/statistics/dashboard_card.vue: -------------------------------------------------------------------------------- 1 | 26 | 39 | 45 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | moduleNameMapper: { 3 | '^@/(.*)$': '/$1', 4 | '^~/(.*)$': '/$1', 5 | '^vue$': 'vue/dist/vue.common.js' 6 | }, 7 | moduleFileExtensions: [ 8 | 'ts', 9 | 'js', 10 | 'vue', 11 | 'json' 12 | ], 13 | transform: { 14 | '^.+\\.ts$': 'ts-jest', 15 | '^.+\\.js$': 'babel-jest', 16 | '.*\\.(vue)$': 'vue-jest' 17 | }, 18 | collectCoverage: true, 19 | collectCoverageFrom: [ 20 | '/components/**/*.vue', 21 | '/pages/**/*.vue' 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "paths": { 5 | "~/*": ["./*"], 6 | "@/*": ["./*"], 7 | "~~/*": ["./*"], 8 | "@@/*": ["./*"] 9 | } 10 | }, 11 | "exclude": ["node_modules", ".nuxt", "dist"] 12 | } 13 | -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- 1 | # LAYOUTS 2 | 3 | **This directory is not required, you can delete it if you don't want to use it.** 4 | 5 | This directory contains your Application Layouts. 6 | 7 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/views#layouts). 8 | -------------------------------------------------------------------------------- /layouts/dashboard.vue: -------------------------------------------------------------------------------- 1 | 23 | 24 | 43 | 48 | -------------------------------------------------------------------------------- /layouts/error.vue: -------------------------------------------------------------------------------- 1 | 22 | 23 | 51 | 52 | 62 | -------------------------------------------------------------------------------- /layouts/home.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 40 | 46 | -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- 1 | # MIDDLEWARE 2 | 3 | **This directory is not required, you can delete it if you don't want to use it.** 4 | 5 | This directory contains your application middleware. 6 | Middleware let you define custom functions that can be run before rendering either a page or a group of pages. 7 | 8 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing#middleware). 9 | -------------------------------------------------------------------------------- /middleware/router.js: -------------------------------------------------------------------------------- 1 | export default ({ app, route, from, store, redirect }) => { 2 | app.router.beforeEach((to, from, next) => { 3 | const exipire = window.localStorage.getItem('date'); 4 | 5 | const status = ((exipire === null ? new Date().getTime() - 2 : exipire) - new Date().getTime()) > 0; 6 | if (!status && to.path !== "/signin" && to.path !== "/about") { 7 | store.dispatch("logout"); 8 | } else { 9 | next(); 10 | } 11 | }); 12 | app.router.afterEach((to, from) => { 13 | }); 14 | } -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- 1 | # PAGES 2 | 3 | This directory contains your Application Views and Routes. 4 | The framework reads all the `*.vue` files inside this directory and creates the router of your application. 5 | 6 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing). 7 | -------------------------------------------------------------------------------- /pages/consultations/index.vue: -------------------------------------------------------------------------------- 1 | 13 | 34 | -------------------------------------------------------------------------------- /pages/finance/reports.vue: -------------------------------------------------------------------------------- 1 | 21 | 42 | -------------------------------------------------------------------------------- /pages/inventory/bed.vue: -------------------------------------------------------------------------------- 1 | 36 | 58 | -------------------------------------------------------------------------------- /pages/inventory/index.vue: -------------------------------------------------------------------------------- 1 | 4 | 12 | -------------------------------------------------------------------------------- /pages/ipd.vue: -------------------------------------------------------------------------------- 1 | 17 | 37 | -------------------------------------------------------------------------------- /pages/lab.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /pages/opd.vue: -------------------------------------------------------------------------------- 1 | 17 | 37 | -------------------------------------------------------------------------------- /pages/patients/_id/contacts/add.vue: -------------------------------------------------------------------------------- 1 | 19 | 36 | -------------------------------------------------------------------------------- /pages/patients/index.vue: -------------------------------------------------------------------------------- 1 | 18 | 19 | 46 | -------------------------------------------------------------------------------- /pages/reports/_id.vue: -------------------------------------------------------------------------------- 1 | 19 | 38 | -------------------------------------------------------------------------------- /pages/reports/index.vue: -------------------------------------------------------------------------------- 1 | 13 | 35 | -------------------------------------------------------------------------------- /pages/services/index.vue: -------------------------------------------------------------------------------- 1 | 16 | 53 | -------------------------------------------------------------------------------- /pages/settings/admin.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 19 | 20 | 26 | -------------------------------------------------------------------------------- /pages/settings/colors.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 63 | -------------------------------------------------------------------------------- /pages/settings/config/_command.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 25 | 26 | 33 | -------------------------------------------------------------------------------- /pages/settings/config/email.vue: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /pages/settings/index.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 64 | 65 | 72 | -------------------------------------------------------------------------------- /pages/settings/roles/_id.vue: -------------------------------------------------------------------------------- 1 | 21 | 52 | -------------------------------------------------------------------------------- /pages/stations.vue: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /pages/viewreport.vue: -------------------------------------------------------------------------------- 1 | 11 | 16 | -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- 1 | # PLUGINS 2 | 3 | **This directory is not required, you can delete it if you don't want to use it.** 4 | 5 | This directory contains Javascript plugins that you want to run before mounting the root Vue.js application. 6 | 7 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/plugins). 8 | -------------------------------------------------------------------------------- /plugins/ga.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | 3 | export default ({ app }) => { 4 | /* 5 | ** Only run on client-side and only in production mode 6 | */ 7 | if (process.env.NODE_ENV !== 'production') 8 | return /* 9 | ** Include Google Analytics Script 10 | */ 11 | ; (function (i, s, o, g, r, a, m) { 12 | i['GoogleAnalyticsObject'] = r 13 | ; (i[r] = 14 | i[r] || 15 | function () { 16 | ; (i[r].q = i[r].q || []).push(arguments) 17 | }), 18 | (i[r].l = 1 * new Date()) 19 | ; (a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]) 20 | a.async = 1 21 | a.src = g 22 | m.parentNode.insertBefore(a, m) 23 | })( 24 | window, 25 | document, 26 | 'script', 27 | 'https://www.google-analytics.com/analytics.js', 28 | 'ga' 29 | ) 30 | /* 31 | ** Set the current page 32 | */ 33 | ga('create', 'UA-111588525-3', 'auto') 34 | /* 35 | ** Every time the route changes (fired on initialization too) 36 | */ 37 | app.router.afterEach((to, from) => { 38 | /* 39 | ** We tell Google Analytics to add a `pageview` 40 | */ 41 | ga('set', 'page', to.fullPath) 42 | ga('send', 'pageview') 43 | }) 44 | } -------------------------------------------------------------------------------- /plugins/i18n.js: -------------------------------------------------------------------------------- 1 | import Vue from "vue"; 2 | import VueI18n from "vue-i18n"; 3 | 4 | // Tell Vue to use our plugin 5 | Vue.use(VueI18n); 6 | 7 | export default ({ app }) => { 8 | // Set the i18n instance on app 9 | // This way we can use it globally in our components through this.$i18n 10 | app.i18n = new VueI18n({ 11 | // Set the initial locale 12 | locale: "en", 13 | 14 | // Set the fallback locale in case the current locale can't be found 15 | fallbackLocale: "en", 16 | 17 | // Associate each locale to a content file 18 | messages: { 19 | en: require("~/static/locales/content-en.json"), 20 | sw: require("~/static/locales/content-sw.json"), 21 | fr: require("~/static/locales/content-fr.json"), 22 | ar: require("~/static/locales/content-ar.json"), 23 | }, 24 | }); 25 | }; 26 | -------------------------------------------------------------------------------- /plugins/mixins.js: -------------------------------------------------------------------------------- 1 | import swal from "sweetalert"; 2 | export default { 3 | data() { 4 | return {}; 5 | }, 6 | computed: { 7 | isMdAndUp() { 8 | return $vuetify.breakpoint.mdAndUp; 9 | } 10 | 11 | }, 12 | methods: { 13 | async delete_selected_item(dipatch, item) { 14 | const willDelete = await swal({ 15 | title: "Are you sure?", 16 | text: "Are you sure that you want to delete this data?", 17 | icon: "warning", 18 | dangerMode: true, 19 | }); 20 | 21 | if (willDelete) { 22 | this.$store.dispatch(dipatch, item); 23 | swal("Deleted!", "Your imaginary file has been deleted!", "success"); 24 | } 25 | }, 26 | }, 27 | }; 28 | -------------------------------------------------------------------------------- /plugins/pwa.client.js: -------------------------------------------------------------------------------- 1 | window.addEventListener("beforeinstallprompt", (e) => { 2 | if (window.$nuxt.$route.path !== "/") { 3 | // Prevent Chrome 67 and earlier from automatically showing the prompt 4 | e.preventDefault(); 5 | } 6 | }); 7 | -------------------------------------------------------------------------------- /plugins/vue-apexcharts.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue'; 2 | import VueApexCharts from 'vue-apexcharts' 3 | Vue.component('apexchart', VueApexCharts) 4 | -------------------------------------------------------------------------------- /plugins/vuepersistence.js: -------------------------------------------------------------------------------- 1 | import createPersistedState from 'vuex-persistedstate' 2 | // import SecureLS from 'secure-ls' 3 | // const ls = new SecureLS({ isCompression: false }) 4 | import { EncryptStorage } from 'encrypt-storage' 5 | 6 | export const encryptStorage = new EncryptStorage('U2FsdGVkX1/2KEwOH+w4QaIcyq5521ZXB5pqw', { 7 | doNotEncryptValues: false 8 | }) 9 | export default ({ store }) => { 10 | window.onNuxtReady(() => { 11 | createPersistedState({ 12 | paths: [ 13 | "authentication", "inventory", "profile", "diagnoses", 14 | "templates", "users", "patients", "documents", "statistics", "theme", "smsconfiguration", "statisitics", 15 | "consultations", "departments", "medicalservices", "laboratory", 'bills', 'radiology', 'reports', 'accounting', 16 | 'servicetypes', 'pharmarcy', 'configuration', 'notifications', 17 | ], 18 | storage: { 19 | getItem: key => encryptStorage.getItem(key), 20 | setItem: (key, value) => encryptStorage.setItem(key, value), 21 | removeItem: key => encryptStorage.removeItem(key) 22 | } 23 | })(store) 24 | }) 25 | } -------------------------------------------------------------------------------- /plugins/vuetify.js: -------------------------------------------------------------------------------- 1 | // src/plugins/vuetify.js 2 | 3 | import Vue from "vue"; 4 | import Vuetify from "vuetify/lib"; 5 | // import colors from "vuetify/lib/util/colors"; 6 | Vue.use(Vuetify); 7 | export default (ctx) => { 8 | const vuetify = new Vuetify({ 9 | customVariables: ["~/assets/variables.scss"], 10 | theme: { 11 | dark: false, 12 | themes: { 13 | dark: { 14 | primary: '#06065e', 15 | accent: '#0000', 16 | secondary: '#ffffff', 17 | success: '#4CAF50', 18 | info: '#2196F3', 19 | warning: '#FB8C00', 20 | error: '#9D0000', 21 | default: "#354141", 22 | milky: "#01242F", 23 | dlue: "#1520A6", 24 | }, 25 | light: { 26 | primary: '#2CB673', 27 | accent: '#000000', 28 | secondary: '#ffffff', 29 | success: '#4CAF50', 30 | info: '#2196F3', 31 | warning: '#FB8C00', 32 | error: '#FF0000', 33 | default: "#FFFFFF", 34 | milky: "#FDFFF5", 35 | teal: "#00897B", 36 | whitish: "F5F5F5", 37 | dlue: "#1520A6", 38 | button: "#24a0ed" 39 | } 40 | 41 | }, 42 | }, 43 | }); 44 | ctx.app.vuetify = vuetify; 45 | ctx.$vuetify = vuetify.framework; 46 | }; 47 | -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- 1 | # STATIC 2 | 3 | **This directory is not required, you can delete it if you don't want to use it.** 4 | 5 | This directory contains your static files. 6 | Each file inside this directory is mapped to `/`. 7 | Thus you'd want to delete this README.md before deploying to production. 8 | 9 | Example: `/static/robots.txt` is mapped as `/robots.txt`. 10 | 11 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#static). 12 | -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/favicon.ico -------------------------------------------------------------------------------- /static/google914a0b4ff7d56312.html: -------------------------------------------------------------------------------- 1 | google-site-verification: google914a0b4ff7d56312.html -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/icon.png -------------------------------------------------------------------------------- /static/lib/core/pdfjs/UIConfig.js: -------------------------------------------------------------------------------- 1 | !function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="/core/pdfjs/",r(r.s=0)}([function(e,t,r){e.exports=r(1)},function(e,t){window.addEventListener("viewerLoaded",(function(){var e=window.readerControl;e.disableFeatures(e.Feature.Download),e.disableTools(["CropCreateTool"]),e.disableElements(["cropToolButton"])}))}]); -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/78-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/78-EUC-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/78-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/78-EUC-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/78-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/78-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/78-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/78-RKSJ-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/78-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/78-RKSJ-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/78-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/78-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/78ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/78ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/78ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/78ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/83pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/83pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/90ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/90ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/90ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/90ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/90msp-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/90msp-RKSJ-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/90msp-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/90msp-RKSJ-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/90pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/90pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/90pv-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/90pv-RKSJ-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Add-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Add-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Add-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Add-RKSJ-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Add-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Add-RKSJ-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Add-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Add-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-CNS1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-CNS1-0.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-CNS1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-CNS1-1.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-CNS1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-CNS1-2.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-CNS1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-CNS1-3.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-CNS1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-CNS1-4.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-CNS1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-CNS1-5.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-CNS1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-CNS1-6.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-CNS1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-CNS1-UCS2.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-GB1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-GB1-0.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-GB1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-GB1-1.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-GB1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-GB1-2.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-GB1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-GB1-3.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-GB1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-GB1-4.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-GB1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-GB1-5.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-GB1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-GB1-UCS2.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-Japan1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-Japan1-0.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-Japan1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-Japan1-1.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-Japan1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-Japan1-2.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-Japan1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-Japan1-3.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-Japan1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-Japan1-4.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-Japan1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-Japan1-5.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-Japan1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-Japan1-6.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-Japan1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-Japan1-UCS2.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-Korea1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-Korea1-0.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-Korea1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-Korea1-1.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-Korea1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-Korea1-2.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Adobe-Korea1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Adobe-Korea1-UCS2.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/B5-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/B5-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/B5pc-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/B5pc-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/B5pc-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/B5pc-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/CNS-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/CNS-EUC-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/CNS-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/CNS-EUC-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/CNS1-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/CNS1-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/CNS1-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/CNS1-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/CNS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/CNS2-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/CNS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/CNS2-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/ETHK-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/ETHK-B5-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/ETHK-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/ETHK-B5-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/ETen-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/ETen-B5-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/ETen-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/ETen-B5-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/ETenms-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/ETenms-B5-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/ETenms-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/ETenms-B5-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/EUC-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/EUC-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Ext-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Ext-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Ext-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Ext-RKSJ-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Ext-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Ext-RKSJ-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Ext-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Ext-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GB-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GB-EUC-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GB-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GB-EUC-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GB-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GB-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GB-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GB-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBK-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBK-EUC-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBK-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBK-EUC-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBK2K-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBK2K-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBK2K-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBK2K-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBKp-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBKp-EUC-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBKp-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBKp-EUC-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBT-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBT-EUC-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBT-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBT-EUC-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBT-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBT-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBT-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBT-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBTpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBTpc-EUC-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBTpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBTpc-EUC-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBpc-EUC-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/GBpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/GBpc-EUC-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/HKdla-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/HKdla-B5-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/HKdla-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/HKdla-B5-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/HKdlb-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/HKdlb-B5-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/HKdlb-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/HKdlb-B5-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/HKgccs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/HKgccs-B5-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/HKgccs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/HKgccs-B5-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/HKm314-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/HKm314-B5-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/HKm314-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/HKm314-B5-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/HKm471-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/HKm471-B5-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/HKm471-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/HKm471-B5-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/HKscs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/HKscs-B5-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/HKscs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/HKscs-B5-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Hankaku.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Hankaku.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Hiragana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Hiragana.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/KSC-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/KSC-EUC-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/KSC-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/KSC-EUC-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/KSC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/KSC-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/KSC-Johab-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/KSC-Johab-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/KSC-Johab-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/KSC-Johab-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/KSC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/KSC-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/KSCms-UHC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/KSCms-UHC-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/KSCms-UHC-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/KSCms-UHC-HW-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/KSCms-UHC-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/KSCms-UHC-HW-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/KSCms-UHC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/KSCms-UHC-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/KSCpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/KSCpc-EUC-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/KSCpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/KSCpc-EUC-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Katakana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Katakana.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/NWP-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/NWP-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/NWP-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/NWP-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/RKSJ-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/RKSJ-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/Roman.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/Roman.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniCNS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniCNS-UCS2-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniCNS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniCNS-UCS2-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniCNS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniCNS-UTF16-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniCNS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniCNS-UTF16-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniCNS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniCNS-UTF32-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniCNS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniCNS-UTF32-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniCNS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniCNS-UTF8-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniCNS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniCNS-UTF8-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniGB-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniGB-UCS2-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniGB-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniGB-UCS2-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniGB-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniGB-UTF16-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniGB-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniGB-UTF16-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniGB-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniGB-UTF32-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniGB-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniGB-UTF32-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniGB-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniGB-UTF8-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniGB-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniGB-UTF8-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS-UCS2-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS-UCS2-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS-UCS2-HW-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS-UCS2-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS-UTF16-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS-UTF16-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS-UTF32-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS-UTF32-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS-UTF8-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS-UTF8-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS2004-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS2004-UTF16-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS2004-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS2004-UTF16-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS2004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS2004-UTF32-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS2004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS2004-UTF32-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS2004-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS2004-UTF8-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJIS2004-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJIS2004-UTF8-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJISPro-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJISPro-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJISPro-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJISPro-UCS2-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJISPro-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJISPro-UTF8-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJISX0213-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJISX0213-UTF32-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJISX0213-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJISX0213-UTF32-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJISX02132004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJISX02132004-UTF32-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniJISX02132004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniJISX02132004-UTF32-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniKS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniKS-UCS2-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniKS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniKS-UCS2-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniKS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniKS-UTF16-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniKS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniKS-UTF16-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniKS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniKS-UTF32-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniKS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniKS-UTF32-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniKS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniKS-UTF8-H.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/UniKS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/UniKS-UTF8-V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/V.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/cmaps/WP-Symbol.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/cmaps/WP-Symbol.bcmap -------------------------------------------------------------------------------- /static/lib/core/pdfjs/pdfjsexpress.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/core/pdfjs/pdfjsexpress.wasm -------------------------------------------------------------------------------- /static/lib/ui/assets/calibrate.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/lib/ui/assets/cancel-24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/lib/ui/assets/edit-24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/lib/ui/assets/fonts/GreatVibes-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/ui/assets/fonts/GreatVibes-Regular.woff -------------------------------------------------------------------------------- /static/lib/ui/assets/fonts/GreatVibes-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/ui/assets/fonts/GreatVibes-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/ui/assets/ic-triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Triangle 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_add_redact_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_apply_redact_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_area_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_arrow_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_callout_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_circle_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_cloud_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_distance_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_eraser_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_free_highlight_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_freehand_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_freetext_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_highlight_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_image_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_line_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_perimeter_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_polygon_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_polyline_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_rectangular_area_black_24px.svg: -------------------------------------------------------------------------------- 1 | icon - tool - measurement - area - line -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_redact_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_ruler_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_square_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_squiggly_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_stamp_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_sticky_note_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_strikeout_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotation_underline_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_annotations_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_arrow_down_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 9 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_arrow_drop_down_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_arrow_up_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_bookmarks_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_check_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_chevron_down_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_chevron_left_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_chevron_right_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_chevron_up_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_close_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_comment_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_copy_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_crop_black_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_delete_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_edit_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_extract_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_fileattachment_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | icon - attachment 8 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_fit_page_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_fit_width_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_font_size_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_group_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_group_button_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_layers_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_left_sidebar_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_list_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_menu_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_mode_day_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_mode_night_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_more_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_outline_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_overflow_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_palette_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_pan_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_placeholder_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_rotate_left_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_rotate_right_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_search_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_select_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_select_rectangular_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_thumbnails_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_thumbnails_grid_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_ungroup_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_view_mode_continuous_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_view_mode_cover_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_view_mode_facing_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_view_mode_reflow_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_view_mode_single_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_viewer_settings_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_zoom_in_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/ic_zoom_out_black_24px.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/lib/ui/assets/icon-download.svg: -------------------------------------------------------------------------------- 1 | icon - header - download -------------------------------------------------------------------------------- /static/lib/ui/assets/icon-text-bold.svg: -------------------------------------------------------------------------------- 1 | icon - line - text - bold -------------------------------------------------------------------------------- /static/lib/ui/assets/icon-text-italic.svg: -------------------------------------------------------------------------------- 1 | icon - line - text - italic -------------------------------------------------------------------------------- /static/lib/ui/assets/icon-text-underline.svg: -------------------------------------------------------------------------------- 1 | icon - line - text - underline -------------------------------------------------------------------------------- /static/lib/ui/assets/icon-tool-link.svg: -------------------------------------------------------------------------------- 1 | icon - tool - link -------------------------------------------------------------------------------- /static/lib/ui/assets/icon-tool-unlink.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/lib/ui/assets/pdftron.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/lib/ui/assets/pdftron.ico -------------------------------------------------------------------------------- /static/lib/ui/assets/textselect_cursor.svg: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /static/lib/ui/configorigin.txt: -------------------------------------------------------------------------------- 1 | # If the WebViewer lib folder is on another origin from your app then you will 2 | # need to include your app's origin here if you want to load a config file -------------------------------------------------------------------------------- /static/lib/ui/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | WebViewer UI 9 | 10 | 11 |
12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /static/locales/content-ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": { 3 | "heading": { 4 | "applicationname": "Ospic HMIS" 5 | }, 6 | "button": { 7 | "btncontactus": "Contact Us", 8 | "btncalculator": "Go to Calculator", 9 | "btnsignin": "Sign In", 10 | "btnsignup": "Sign Up", 11 | "btnchangelanguages": "Change Language", 12 | "buttonsignin": "Sign In", 13 | "buttonsignup": "Sign Up", 14 | "btncalculate": "Submit", 15 | "btncancel": "Cancel", 16 | "btnclear": "Clear", 17 | "btnback": "Back", 18 | "btnhome": "Home", 19 | "btnsave": "Save" 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /static/locales/content-fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": { 3 | "heading": { 4 | "applicationname": "Ospic HMIS" 5 | }, 6 | "button": { 7 | "btncontactus": "Contact Us", 8 | "btncalculator": "Go to Calculator", 9 | "btnsignin": "Sign In", 10 | "btnsignup": "Sign Up", 11 | "btnchangelanguages": "Change Language", 12 | "buttonsignin": "Sign In", 13 | "buttonsignup": "Sign Up", 14 | "btncalculate": "Submit", 15 | "btncancel": "Cancel", 16 | "btnclear": "Clear", 17 | "btnback": "Back", 18 | "btnhome": "Home", 19 | "btnsave": "Save" 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/logo.png -------------------------------------------------------------------------------- /static/report.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | webviewer-vue-sample 9 | 10 | 11 | 14 |
15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Disallow: 3 | Sitemap: http://app.ospicx.com/sitemap.xml -------------------------------------------------------------------------------- /static/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ospic/webapp/6acb40346011be732ad1d7a70c52232fd99c0549/static/v.png -------------------------------------------------------------------------------- /static/vuetify-logo.svg: -------------------------------------------------------------------------------- 1 | Artboard 46 2 | -------------------------------------------------------------------------------- /store/bills.js: -------------------------------------------------------------------------------- 1 | const state = () => ({ 2 | showLoader: Boolean, 3 | bills: [], 4 | bill: {} 5 | }); 6 | 7 | const mutations = { 8 | /**Fetch bills */ 9 | 10 | ["GET_BILLS"](state) { 11 | state.showLoader = true; 12 | }, 13 | ["GET_BILLS_FAILED"](state) { 14 | state.showLoader = false; 15 | }, 16 | ["GET_BILLS_ERROR"](state) { 17 | state.showLoader = false; 18 | state.bills = []; 19 | }, 20 | ["GET_BILLS_SUCCESS"](state, payload) { 21 | state.showLoader = false; 22 | state.bills = payload; 23 | }, 24 | 25 | ["PAY_BILL"](state) { 26 | state.showLoader = true; 27 | }, 28 | ["PAY_BILL_FAILED"](state) { 29 | state.showLoader = false; 30 | }, 31 | ["PAY_BILL_ERROR"](state) { 32 | state.showLoader = false; 33 | }, 34 | ["PAY_BILL_SUCCESS"](state, payload) { 35 | state.showLoader = false; 36 | state.bill = payload; 37 | }, 38 | } 39 | 40 | const actions = { 41 | 42 | async get_bills({ commit }) { 43 | commit("GET_BILLS"); 44 | await this.$api.$get('bills/') 45 | .then(response => { 46 | commit("GET_BILLS_SUCCESS", response); 47 | }).catch(error => { 48 | commit("GET_BILLS_ERROR"); 49 | console.log(error); 50 | 51 | }); 52 | }, 53 | async pay_bill({ commit }, payload) { 54 | commit("PAY_BILL"); 55 | await this.$api.$put('bills/', payload) 56 | .then(response => { 57 | commit("PAY_BILL_SUCCESS", response); 58 | }).catch(error => { 59 | commit("PAY_BILL_ERROR"); 60 | console.log(error); 61 | 62 | }); 63 | } 64 | } 65 | const getters = { 66 | bills: function (state) { 67 | return state.bills; 68 | } 69 | } 70 | 71 | export default { 72 | namespaced: false, 73 | state, 74 | mutations, 75 | actions, 76 | getters 77 | } 78 | -------------------------------------------------------------------------------- /store/diagnosis.js: -------------------------------------------------------------------------------- 1 | const state = () => ({ 2 | showLoader: Boolean, 3 | diagnosis: {}, 4 | diagnoses: [] 5 | }); 6 | 7 | const mutations = { 8 | ["ADD_NEW_DIAGNOSIS"](state) { 9 | state.showLoader = true; 10 | }, 11 | ["ADD_NEW_DIAGNOSIS_FAILED"](state) { 12 | state.showLoader = false; 13 | }, 14 | ["ADD_NEW_DIAGNOSIS_ERROR"](state) { 15 | state.showLoader = false; 16 | }, 17 | ["ADD_NEW_DIAGNOSIS_SUCCESS"](state, payload) { 18 | state.showLoader = false; 19 | state.diagnosis = payload; 20 | 21 | }, 22 | } 23 | 24 | const actions = { 25 | async create_new_diagnosis({ commit }, id, payload) { 26 | commit("ADD_NEW_DIAGNOSIS"); 27 | await this.$api.$post(`diagnoses/${id}`, payload) 28 | .then(response => { 29 | commit("ADD_NEW_DIAGNOSIS_SUCCESS", response); 30 | 31 | }).catch(error => { 32 | commit("ADD_NEW_DIAGNOSIS_ERROR"); 33 | console.log(error); 34 | 35 | }); 36 | 37 | }, 38 | } 39 | 40 | const getters = { 41 | 42 | } 43 | export default { 44 | namespaced: false, 45 | state, 46 | mutations, 47 | actions, 48 | getters 49 | } -------------------------------------------------------------------------------- /store/documents.js: -------------------------------------------------------------------------------- 1 | const state = () => ({ 2 | showLoader: Boolean, 3 | image: {}, 4 | images: [] 5 | }); 6 | 7 | const mutations = { 8 | 9 | ["UPDATE_PROFILE_PICTURE"](state) { 10 | state.showLoader = true; 11 | }, 12 | ["UPDATE_PROFILE_PICTURE_FAILED"](state) { 13 | state.showLoader = false; 14 | }, 15 | ["UPDATE_PROFILE_PICTURE_ERROR"](state) { 16 | state.showLoader = false; 17 | }, 18 | ["UPDATE_PROFILE_PICTURE_SUCCESS"](state, payload) { 19 | state.showLoader = false; 20 | this.image = payload; 21 | }, 22 | 23 | } 24 | const actions = { 25 | async update_patient_profile_image({ commit }, id, payload) { 26 | commit("UPDATE_PROFILE_PICTURE"); 27 | await this.$api.$patch(`patients/${id}/images/`, payload, con) 28 | .then(response => { 29 | commit("UPDATE_PROFILE_PICTURE_SUCCESS", response); 30 | 31 | }).catch(error => { 32 | commit("UPDATE_PROFILE_PICTURE_ERROR"); 33 | console.log(error); 34 | 35 | }); 36 | 37 | } 38 | 39 | } 40 | const getters = { 41 | 42 | } 43 | 44 | export default { 45 | namespaced: false, 46 | state, 47 | mutations, 48 | actions, 49 | getters 50 | } -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- 1 | export const strict = false; 2 | export const namespaced = false; 3 | export const state = () => ({ 4 | counter: 0 5 | }) 6 | 7 | export const mutations = { 8 | increment(state) { 9 | state.counter++ 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /store/signup.js: -------------------------------------------------------------------------------- 1 | 2 | const state = () => ({ 3 | registration: {}, 4 | isLoading: Boolean, 5 | userdata: {} 6 | }); 7 | 8 | const mutations = { 9 | ["SIGNUP"](state) { 10 | state.isLoading = true; 11 | }, 12 | ["SIGNUP_SUCCESS"](state, payload) { 13 | state.isLoading = false; 14 | state.userdata = payload; 15 | }, 16 | ["SIGNUP_FAILED"](state) { 17 | state.isLoading = false; 18 | }, 19 | ["SIGNUP_ERROR"](state) { 20 | state.isLoading = false; 21 | } 22 | }; 23 | const actions = { 24 | async signup({ commit }, payload) { 25 | commit("SIGNUP"); 26 | await this.$api.$post(`auth/signup/`, payload) 27 | .then(response => { 28 | if (response.message != null) { 29 | commit("SIGNUP_SUCCESS", response); 30 | this.$router.push('/signin'); 31 | } 32 | }).catch(error => { 33 | commit("SIGNUP_FAILED"); 34 | }); 35 | } 36 | 37 | }; 38 | const getters = {}; 39 | export default { 40 | namespaced: false, 41 | state, 42 | getters, 43 | mutations, 44 | actions, 45 | }; 46 | -------------------------------------------------------------------------------- /store/theme.js: -------------------------------------------------------------------------------- 1 | const state = () => ({ 2 | isDark: false 3 | }); 4 | 5 | const mutations = { 6 | ["LIGHT_THEME"](state) { 7 | state.isDark = false; 8 | }, 9 | 10 | ["DARK_THEME"](state) { 11 | state.isDark = true; 12 | }, 13 | 14 | } 15 | const actions = { 16 | async change_to_dark({ commit }) { 17 | commit("DARK_THEME"); 18 | 19 | }, 20 | async change_to_light({ commit }) { 21 | commit("LIGHT_THEME"); 22 | } 23 | } 24 | const getters = { 25 | isDark: function (state) { 26 | return state.isDark; 27 | } 28 | 29 | } 30 | 31 | export default { 32 | namespaced: false, 33 | state, 34 | mutations, 35 | actions, 36 | getters 37 | } -------------------------------------------------------------------------------- /test/Logo.spec.js: -------------------------------------------------------------------------------- 1 | import { mount } from '@vue/test-utils' 2 | import Logo from '@/components/_tool_bar.vue' 3 | 4 | describe('Logo', () => { 5 | test('is a Vue instance', () => { 6 | const wrapper = mount(Logo) 7 | expect(wrapper.vm).toBeTruthy() 8 | }) 9 | }) 10 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2018", 4 | "module": "ESNext", 5 | "moduleResolution": "Node", 6 | "lib": [ 7 | "ESNext", 8 | "ESNext.AsyncIterable", 9 | "DOM" 10 | ], 11 | "esModuleInterop": true, 12 | "allowJs": true, 13 | "sourceMap": true, 14 | "strict": true, 15 | "noEmit": true, 16 | "experimentalDecorators": true, 17 | "baseUrl": ".", 18 | "paths": { 19 | "~/*": [ 20 | "./*" 21 | ], 22 | "@/*": [ 23 | "./*" 24 | ] 25 | }, 26 | "types": [ 27 | "@types/node", 28 | "@nuxt/types", 29 | "@nuxtjs/axios" 30 | ] 31 | }, 32 | "exclude": [ 33 | "node_modules", 34 | ".nuxt", 35 | "dist" 36 | ] 37 | } --------------------------------------------------------------------------------