diff --git a/docs/latest/_book/I-want-to/script-tag.html b/docs/latest/_book/I-want-to/script-tag.html index c9dd68706..70cea5bb8 100644 --- a/docs/latest/_book/I-want-to/script-tag.html +++ b/docs/latest/_book/I-want-to/script-tag.html @@ -21,6 +21,10 @@ + + + + @@ -383,7 +387,7 @@ @@ -405,6 +409,14 @@ + + + + + + + + diff --git a/docs/latest/_book/connecting-to-image-archives/dicomweb.html b/docs/latest/_book/connecting-to-image-archives/dicomweb.html index 7852c35a5..f3868632e 100644 --- a/docs/latest/_book/connecting-to-image-archives/dicomweb.html +++ b/docs/latest/_book/connecting-to-image-archives/dicomweb.html @@ -21,6 +21,10 @@ + + + + @@ -377,7 +381,7 @@ @@ -399,6 +403,14 @@ + + + + + + + + diff --git a/docs/latest/_book/contributing.html b/docs/latest/_book/contributing.html index fe2722358..2bd02e3e6 100644 --- a/docs/latest/_book/contributing.html +++ b/docs/latest/_book/contributing.html @@ -21,6 +21,10 @@ + + + + @@ -399,7 +403,7 @@ @@ -421,6 +425,14 @@ + + + + + + + + diff --git a/docs/latest/_book/essentials/getting-started.html b/docs/latest/_book/essentials/getting-started.html index 49ed43618..efe3efca5 100644 --- a/docs/latest/_book/essentials/getting-started.html +++ b/docs/latest/_book/essentials/getting-started.html @@ -21,6 +21,10 @@ + + + + @@ -475,7 +479,7 @@ npm start @@ -497,6 +501,14 @@ npm start + + + + + + + + diff --git a/docs/latest/_book/essentials/troubleshooting.html b/docs/latest/_book/essentials/troubleshooting.html index dc1c9f2f9..0e4512971 100644 --- a/docs/latest/_book/essentials/troubleshooting.html +++ b/docs/latest/_book/essentials/troubleshooting.html @@ -21,6 +21,10 @@ + + + + @@ -405,7 +409,7 @@ @@ -427,6 +431,14 @@ + + + + + + + + diff --git a/docs/latest/_book/faq/general.html b/docs/latest/_book/faq/general.html index f57b8d543..e00aade6f 100644 --- a/docs/latest/_book/faq/general.html +++ b/docs/latest/_book/faq/general.html @@ -21,6 +21,10 @@ + + + + @@ -415,7 +419,7 @@ @@ -437,6 +441,14 @@ + + + + + + + + diff --git a/docs/latest/_book/gitbook/gitbook-plugin-theme-cornerstone/cornerstone.css b/docs/latest/_book/gitbook/gitbook-plugin-theme-cornerstone/cornerstone.css index 9b1bfa032..329801593 100644 --- a/docs/latest/_book/gitbook/gitbook-plugin-theme-cornerstone/cornerstone.css +++ b/docs/latest/_book/gitbook/gitbook-plugin-theme-cornerstone/cornerstone.css @@ -30,6 +30,10 @@ li a { /* set correct fonts on sidebar and main page */ .book .book-body .page-wrapper .page-inner section.normal, .book-summary { font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif; } +.page-inner { + max-width: 95%; +} + /* sidebar */ .book-summary ul.summary li a, .book-summary ul.summary li span { diff --git a/docs/latest/_book/history/v1/I-want-to/add-a-logo-to-the-viewer.html b/docs/latest/_book/history/v1/I-want-to/add-a-logo-to-the-viewer.html deleted file mode 100644 index 7590b73b3..000000000 --- a/docs/latest/_book/history/v1/I-want-to/add-a-logo-to-the-viewer.html +++ /dev/null @@ -1,1009 +0,0 @@ - - - - - - - Add a Logo to the Viewer ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - - - - - - -
- -
- -
- - - - - - - - - -
-
- -
-
- -
- -

Add a Logo to the Viewer

-

The OHIF Framework provides ohif-header package to add a header into application layout. ohif-header package is designed as a custom block helper named header to define your own header context.

-

If you would like to add SVG logo to header please follow these steps.

-
    -
  1. Add your SVG logo into public folder.

    -
  2. -
  3. Add header content block which will be located on the top of the application layout into your application's main template. You can also pass some parameters to header content block to customize the header.

    -
      -
    • headerClasses: the list of classes which will be applied to header element
    • -
    • brandHref: the url of the logo to link
    • -
    -
  4. -
-
{{#header headerClasses="header-big bg-blue" brandHref="your logo link"}}
-...
-{{/header}}
-
-
    -
  1. Create a section called as brand in header content block and add your logo content which is displayed on the left side of the header as default into section brand.
  2. -
-
    {{#header}}
-        {{#section "brand"}}
-            <!-- Add logo image -->
-            <svg>
-                <use xlink:href="/yourLogo.svg"}}></use>
-            </svg>
-
-            <!-- Add logo text -->
-            <div>Logo Text</div>
-        {{/section}}
-    {{/header}}
-
-

For example, see how it works in OHIF Viewer

- - -
- -
-
-
- -

results matching ""

-
    - -
    -
    - -

    No results matching ""

    - -
    -
    -
    - -
    -
    - - -
    - - - - - - - - - - -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/I-want-to/add-a-tool-to-the-viewer.html b/docs/latest/_book/history/v1/I-want-to/add-a-tool-to-the-viewer.html deleted file mode 100644 index 7d95ceabd..000000000 --- a/docs/latest/_book/history/v1/I-want-to/add-a-tool-to-the-viewer.html +++ /dev/null @@ -1,993 +0,0 @@ - - - - - - - Add a Tool to the Viewer ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - -
    - -
    - - - - - - - - - -
    -
    - -
    -
    - -
    - -

    Add a Tool to the Viewer

    -

    To add a tool to the Viewer there are a few steps:

    -
      -
    1. Add the tool itself to the repository.

      -

      If you're using something from Cornerstone Tools you can skip this step.

      -

      Some examples of custom tools can be found in the lesion tracker: https://github.com/OHIF/Viewers/tree/master/Packages/ohif-lesiontracker/client/compatibility

      -
    2. -
    3. Add the toolbar button itself to the array of tools in the Toolbar: -https://github.com/OHIF/Viewers/blob/574a6d02b090b8b2f020430c5919f8377b8316c6/OHIFViewer/client/components/toolbarSection/toolbarSection.js

      -
    4. -
    5. A: Add it to the toolManager (if it's a tool, such as length / angle):

      -

      https://github.com/OHIF/Viewers/blob/574a6d02b090b8b2f020430c5919f8377b8316c6/Packages/lesiontracker/client/tools.js#L2

      -

      --- OR ---

      -

      B: Add it to the functionList if it's a command (e.g. toggle CINE play, or Invert the current viewport):

      -

      https://github.com/OHIF/Viewers/blob/574a6d02b090b8b2f020430c5919f8377b8316c6/OHIFViewer/client/components/viewer/viewer.js#L12

      -
    6. -
    - - -
    - -
    -
    -
    - -

    results matching ""

    -
      - -
      -
      - -

      No results matching ""

      - -
      -
      -
      - -
      -
      - - -
      - - - - - - - - - - -
      - - -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/assets/CNAME b/docs/latest/_book/history/v1/assets/CNAME deleted file mode 100644 index b6d936979..000000000 --- a/docs/latest/_book/history/v1/assets/CNAME +++ /dev/null @@ -1 +0,0 @@ -docs.ohif.org diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Assessment_Progress.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Assessment_Progress.png deleted file mode 100644 index 7d4021cf7..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Assessment_Progress.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Association_Dialog.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Association_Dialog.png deleted file mode 100644 index ec21eea3b..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Association_Dialog.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Audit_Trails.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Audit_Trails.png deleted file mode 100644 index 2296825b3..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Audit_Trails.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_CINE.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_CINE.png deleted file mode 100644 index 612898adb..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_CINE.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Change_Password.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Change_Password.png deleted file mode 100644 index ac7f7cff2..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Change_Password.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_CompareMode.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_CompareMode.png deleted file mode 100644 index d46678e07..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_CompareMode.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Comparison.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Comparison.png deleted file mode 100644 index c9c91b914..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Comparison.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Configuration_Menu.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Configuration_Menu.png deleted file mode 100644 index 8aaac07ac..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Configuration_Menu.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Conformance_Check.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Conformance_Check.png deleted file mode 100644 index 409ddf5a2..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Conformance_Check.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Download.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Download.png deleted file mode 100644 index 5ee99d709..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Download.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Ellipse.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Ellipse.png deleted file mode 100644 index cd21fe816..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Ellipse.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_FlipH.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_FlipH.png deleted file mode 100644 index e79adb120..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_FlipH.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_FlipV.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_FlipV.png deleted file mode 100644 index 99404b9ae..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_FlipV.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Forgot_Password.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Forgot_Password.png deleted file mode 100644 index 4114d898f..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Forgot_Password.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Generate_Report.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Generate_Report.png deleted file mode 100644 index b224172b2..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Generate_Report.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_HUD_Panel.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_HUD_Panel.png deleted file mode 100644 index ca8d6aa4b..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_HUD_Panel.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Image_Viewer.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Image_Viewer.png deleted file mode 100644 index 37d8a8201..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Image_Viewer.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_After_Prerequisites.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_After_Prerequisites.png deleted file mode 100644 index d0e808ea2..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_After_Prerequisites.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Desktop_Shortcuts.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Desktop_Shortcuts.png deleted file mode 100644 index c5fb9c3f3..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Desktop_Shortcuts.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Final.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Final.png deleted file mode 100644 index 720f532ea..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Final.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Finish.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Finish.png deleted file mode 100644 index 5656990eb..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Finish.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Initial.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Initial.png deleted file mode 100644 index 90457fa2b..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Initial.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Launch_Installation.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Launch_Installation.png deleted file mode 100644 index 78fa9d246..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Launch_Installation.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Launch_Uninstall.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Launch_Uninstall.png deleted file mode 100644 index 2935db087..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Launch_Uninstall.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_License_Aggrement.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_License_Aggrement.png deleted file mode 100644 index db2e2465e..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_License_Aggrement.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Prerequisites.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Prerequisites.png deleted file mode 100644 index b0fbe2ed4..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Prerequisites.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Select_Location.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Select_Location.png deleted file mode 100644 index 9d216e655..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Select_Location.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Services.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Services.png deleted file mode 100644 index cef807778..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Services.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Successful.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Successful.png deleted file mode 100644 index 15d9a9da9..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Successful.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Uninstall.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Uninstall.png deleted file mode 100644 index 4d9060f82..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Installer_Uninstall.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Invert.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Invert.png deleted file mode 100644 index e4f2e81d5..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Invert.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Key_Timepoints.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Key_Timepoints.png deleted file mode 100644 index 79b02e63a..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Key_Timepoints.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Keyboard_Shortcuts.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Keyboard_Shortcuts.png deleted file mode 100644 index ae00ff995..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Keyboard_Shortcuts.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Login.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Login.png deleted file mode 100644 index 58250b654..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Login.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Logout.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Logout.png deleted file mode 100644 index 04c488fa6..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Logout.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Magnify.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Magnify.png deleted file mode 100644 index c96db713d..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Magnify.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Measurements.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Measurements.png deleted file mode 100644 index a9f0ba537..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Measurements.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Need_Account.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Need_Account.png deleted file mode 100644 index 3493b4d6c..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Need_Account.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_NonTarget_Select_Location.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_NonTarget_Select_Location.png deleted file mode 100644 index 7eaa3e932..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_NonTarget_Select_Location.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_NonTarget_Tool.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_NonTarget_Tool.png deleted file mode 100644 index 7c2951246..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_NonTarget_Tool.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Delete_Select_Patient.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Delete_Select_Patient.png deleted file mode 100644 index 13d38194b..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Delete_Select_Patient.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Delete_Select_Study.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Delete_Select_Study.png deleted file mode 100644 index c2a7071e9..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Delete_Select_Study.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Delete_Study.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Delete_Study.png deleted file mode 100644 index b302d28eb..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Delete_Study.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Drag_and_Drop.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Drag_and_Drop.png deleted file mode 100644 index 3cbc0c96d..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Drag_and_Drop.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Start_Upload.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Start_Upload.png deleted file mode 100644 index 2fa7850d6..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Start_Upload.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Upload.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Upload.png deleted file mode 100644 index b6f34a910..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Upload.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Upload_Result.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Upload_Result.png deleted file mode 100644 index b545b1c69..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Orthanc_Upload_Result.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Pan.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Pan.png deleted file mode 100644 index 161a4f17a..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Pan.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Quick_Switch_Tool.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Quick_Switch_Tool.png deleted file mode 100644 index 478369c0e..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Quick_Switch_Tool.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Remove_Associate.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Remove_Associate.png deleted file mode 100644 index 4d3f580c6..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Remove_Associate.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Report_PDF.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Report_PDF.png deleted file mode 100644 index cb65fd0c3..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Report_PDF.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Reset.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Reset.png deleted file mode 100644 index e1e94fed2..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Reset.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Response_Criteria.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Response_Criteria.png deleted file mode 100644 index 01662fe12..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Response_Criteria.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Rotate_Right.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Rotate_Right.png deleted file mode 100644 index 246d3862a..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Rotate_Right.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Save1.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Save1.png deleted file mode 100644 index 040617fd0..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Save1.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Save2.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Save2.png deleted file mode 100644 index 615156f4c..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Save2.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Scroll.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Scroll.png deleted file mode 100644 index f8e0e3e54..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Scroll.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Select_Associate.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Select_Associate.png deleted file mode 100644 index 8916b0876..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Select_Associate.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Server_Info.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Server_Info.png deleted file mode 100644 index 4944121aa..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Server_Info.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_StackScroll_Multiple.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_StackScroll_Multiple.png deleted file mode 100644 index 6a0f757f6..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_StackScroll_Multiple.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_StackScroll_Single.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_StackScroll_Single.png deleted file mode 100644 index a9ee8eace..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_StackScroll_Single.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Studies_Panel.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Studies_Panel.png deleted file mode 100644 index ad170a732..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Studies_Panel.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_StudyList.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_StudyList.png deleted file mode 100644 index 3f126c784..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_StudyList.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target.png deleted file mode 100644 index 24fc066fc..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_CR.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_CR.png deleted file mode 100644 index f760cfaf7..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_CR.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_Delete.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_Delete.png deleted file mode 100644 index dafbadb5c..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_Delete.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_Label.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_Label.png deleted file mode 100644 index 5c9a9fe30..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_Label.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_Rename.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_Rename.png deleted file mode 100644 index 4d71bf308..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_Rename.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_UN.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_UN.png deleted file mode 100644 index e311ea0c3..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Target_UN.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Temp_Tool.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Temp_Tool.png deleted file mode 100644 index 8f92b2ead..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Temp_Tool.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Themes.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Themes.png deleted file mode 100644 index 5ae104f43..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Themes.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_View_Lesion.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_View_Lesion.png deleted file mode 100644 index aa4a026ed..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_View_Lesion.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_View_Series_Details.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_View_Series_Details.png deleted file mode 100644 index 4bac8b1ec..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_View_Series_Details.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_View_Study.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_View_Study.png deleted file mode 100644 index dc546b153..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_View_Study.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Viewer.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Viewer.png deleted file mode 100644 index effc7da90..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Viewer.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_WL.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_WL.png deleted file mode 100644 index d703e8b20..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_WL.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_WL_Presets.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_WL_Presets.png deleted file mode 100644 index 464912753..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_WL_Presets.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Zoom.png b/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Zoom.png deleted file mode 100644 index bdca718f1..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/LesionTracker/LT_Zoom.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/lesionTracker.png b/docs/latest/_book/history/v1/assets/img/lesionTracker.png deleted file mode 100644 index effc7da90..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/lesionTracker.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/viewer.png b/docs/latest/_book/history/v1/assets/img/viewer.png deleted file mode 100644 index 21eacd59a..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/viewer.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/assets/img/worklist.png b/docs/latest/_book/history/v1/assets/img/worklist.png deleted file mode 100644 index 3f126c784..000000000 Binary files a/docs/latest/_book/history/v1/assets/img/worklist.png and /dev/null differ diff --git a/docs/latest/_book/history/v1/connecting-to-image-archives/dcm4chee-with-docker.html b/docs/latest/_book/history/v1/connecting-to-image-archives/dcm4chee-with-docker.html deleted file mode 100644 index 7b1b3cfff..000000000 --- a/docs/latest/_book/history/v1/connecting-to-image-archives/dcm4chee-with-docker.html +++ /dev/null @@ -1,1016 +0,0 @@ - - - - - - - dcm4chee w/ Docker ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      -
      - - - - - - - - -
      - -
      - -
      - - - - - - - - - -
      -
      - -
      -
      - -
      - -

      DCM4CHEE with Docker

      -
        -
      1. Install Docker (https://www.docker.com/)
      2. -
      3. Follow the DCM4CHEE Guidelines for Running on Docker.

        -

        The easiest path is to use Docker-Compose which will start and stop multiple containers for you. There are excellent instructions provided by the DCM4CHEE team on the 'light archive' repository:

        -

        https://github.com/dcm4che/dcm4chee-arc-light/wiki/Running-on-Docker#use-docker-compose

        -
          -
        • Create docker-compose.yml and docker-compose.env files
        • -
        • Start the containers:

          -
          docker-compose start
          -
          -

          Note: If you are running this on Mac OSX you will probably need to change the default docker-compose.yml file slightly. Specifically, the paths that refer to /var/local/ will likely need to be changed to /opt/

          -
        • -
        -
      4. -
      5. Run the OHIF Viewer or Lesion Tracker using the dcm4cheeDIMSE.json configuration file

        -
      6. -
      -
      cd OHIFViewer
      -PACKAGE_DIRS="../Packages" meteor --settings ../config/dcm4cheeDIMSE.json
      -
      -

      Web Service URLs from DCM4CHEE:

      -

      Original source here: https://github.com/dcm4che/dcm4chee-arc-light/wiki/Running-on-Docker#web-service-urls

      -
      - -
      - - -
      - -
      -
      -
      - -

      results matching ""

      -
        - -
        -
        - -

        No results matching ""

        - -
        -
        -
        - -
        -
        - - -
        - - - - - - - - - - -
        - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/connecting-to-image-archives/dicomweb.html b/docs/latest/_book/history/v1/connecting-to-image-archives/dicomweb.html deleted file mode 100644 index ef7c8b9c0..000000000 --- a/docs/latest/_book/history/v1/connecting-to-image-archives/dicomweb.html +++ /dev/null @@ -1,984 +0,0 @@ - - - - - - - DICOM Web ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        -
        - - - - - - - - -
        - -
        - -
        - - - - - - - - - -
        -
        - -
        -
        - -
        - -

        DICOM Web

        -

        DICOMWeb refers to RESTful DICOM Services and is a recently standardized set of guidelines for exchanging medical images and imaging metadata over the internet. Not all archives fully support it yet, but it is gaining wider adoption.

        - - -
        - -
        -
        -
        - -

        results matching ""

        -
          - -
          -
          - -

          No results matching ""

          - -
          -
          -
          - -
          -
          - - -
          - - - - - - - - - - - - - - -
          - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/connecting-to-image-archives/dimse.html b/docs/latest/_book/history/v1/connecting-to-image-archives/dimse.html deleted file mode 100644 index de5c02745..000000000 --- a/docs/latest/_book/history/v1/connecting-to-image-archives/dimse.html +++ /dev/null @@ -1,978 +0,0 @@ - - - - - - - DICOM Message Service Element ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          -
          - - - - - - - - -
          - -
          - -
          - - - - - - - - - -
          -
          - -
          -
          - -
          - -

          DICOM Message Service Element

          -

          DIMSE Stands for DICOM Message Service Element and is the standard method through which DICOM archives communicate. We support this messaging standard for the retrieval of study, series, and instance metadata because it is widely support. For certain PACS systems, it also (currently) provides faster query results than DICOMWeb.

          - - -
          - -
          -
          -
          - -

          results matching ""

          -
            - -
            -
            - -

            No results matching ""

            - -
            -
            -
            - -
            -
            - - -
            - - - - - - - - - - -
            - - -
            - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/connecting-to-image-archives/options.html b/docs/latest/_book/history/v1/connecting-to-image-archives/options.html deleted file mode 100644 index 42caadc31..000000000 --- a/docs/latest/_book/history/v1/connecting-to-image-archives/options.html +++ /dev/null @@ -1,978 +0,0 @@ - - - - - - - What are my options? ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            -
            - - - - - - - - -
            - -
            - -
            - - - - - - - - - -
            -
            - -
            -
            - -
            - -

            Connecting to Image Archives

            -

            We support DIMSE and DICOMWeb. Which one to use is up to you and depends on your PACS system. DICOMWeb requires no setup on the PACS-side whatsoever, whereas DIMSE may require you to add the 'OHIFDCM' aeTitle to the known DICOM Modalities of your Archive. This is the case for Orthanc, for example (See https://github.com/OHIF/Viewers/wiki/Orthanc-with-DIMSE).

            - - -
            - -
            -
            -
            - -

            results matching ""

            -
              - -
              -
              - -

              No results matching ""

              - -
              -
              -
              - -
              -
              - - -
              - - - - - - - - - - -
              - - -
              - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/connecting-to-image-archives/orthanc-with-docker.html b/docs/latest/_book/history/v1/connecting-to-image-archives/orthanc-with-docker.html deleted file mode 100644 index 3a4603c69..000000000 --- a/docs/latest/_book/history/v1/connecting-to-image-archives/orthanc-with-docker.html +++ /dev/null @@ -1,1001 +0,0 @@ - - - - - - - Orthanc w/ Docker ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
              -
              - - - - - - - - -
              - -
              - -
              - - - - - - - - - -
              -
              - -
              -
              - -
              - -

              Orthanc with Docker

              -

              Depending on whether or not you want uploaded studies to persist in Orthanc after Docker has been closed, there are two different methods for starting the Docker image:

              -

              Temporary data storage

              -

              This command will start an instance of the jodogne/orthanc-plugins Docker image. All data will be removed when the instance is stopped!

              -
              docker run --rm -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins
              -

              Persistent data storage

              -

              In order to allow your data to persist after the instance is stopped, you first need to create an image and attached data volume with Docker. The steps are as follows:

              -
                -
              1. Create a persistent data volume for Orthanc to use

                -
                 docker create --name sampledata -v /sampledata jodogne/orthanc-plugins
                -

                Note: On Windows, you need to use an absolute path for the data volume, like so:

                -
                 docker create --name sampledata -v '//C/Users/erik/sampledata' jodogne/orthanc-plugins
                -
              2. -
              3. Run Orthanc from Docker with the data volume attached

                -
                 docker run --volumes-from sampledata -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins
                -
              4. -
              5. Upload your data and it will be persisted

                -
              6. -
              - - -
              - -
              -
              -
              - -

              results matching ""

              -
                - -
                -
                - -

                No results matching ""

                - -
                -
                -
                - -
                -
                - - -
                - - - - - - - - - - - - - - -
                - - -
                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/connecting-to-image-archives/osirix.html b/docs/latest/_book/history/v1/connecting-to-image-archives/osirix.html deleted file mode 100644 index 2882fbc8a..000000000 --- a/docs/latest/_book/history/v1/connecting-to-image-archives/osirix.html +++ /dev/null @@ -1,978 +0,0 @@ - - - - - - - Osirix ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                -
                - - - - - - - - -
                - -
                - -
                - - - - - - - - - -
                -
                - -
                -
                - -
                - -

                Example: Osirix

                -

                ...

                - - -
                - -
                -
                -
                - -

                results matching ""

                -
                  - -
                  -
                  - -

                  No results matching ""

                  - -
                  -
                  -
                  - -
                  -
                  - - -
                  - - - - - - - - - - -
                  - - -
                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/contributing.html b/docs/latest/_book/history/v1/contributing.html deleted file mode 100644 index 79f730343..000000000 --- a/docs/latest/_book/history/v1/contributing.html +++ /dev/null @@ -1,995 +0,0 @@ - - - - - - - Contributing ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                  -
                  - - - - - - - - -
                  - -
                  - -
                  - - - - - - - - - -
                  -
                  - -
                  -
                  - -
                  - -

                  Contributing

                  -

                  I would like to contribute code - how do I do this?

                  -

                  Fork the repository, make your change and submit a pull request.

                  -

                  Any guidance on submitting changes?

                  -

                  While we do appreciate code contributions, triaging and integrating contributed code changes can be very time consuming. Please consider the following tips when working on your pull requests:

                  -
                    -
                  • Functionality is appropriate for the repository. Consider posting on the forum if you are not sure.
                  • -
                  • Code quality is acceptable. We don't have coding standards defined, but make sure it passes ESLint and looks like the rest of the code in the repository.
                  • -
                  • Quality of design is acceptable. This is a bit subjective so you should consider posting on the forum for specific guidance.
                  • -
                  • The scope of the pull request is not too large. Please consider separate pull requests for each feature as big pull requests are very time consuming to understand.
                  • -
                  -

                  We will provide feedback on your pull requests as soon as possible. Following the tips above will help ensure your changes are reviewed.

                  -

                  Testing contribution pull requests

                  -

                  OHIF uses netlify so that pull requests are autogenerated and available for testing.

                  -

                  For example, this url allows you to test pull request 237, the request that created this FAQ entry, using data pulled from Amazon S3.

                  -

                  Replacing the number 237 in the link below with your pull request number should let you test it as well and you can use this link for discussions on github without requiring reviewers to download and build your branch.

                  -
                  https://deploy-preview-237--ohif.netlify.com/viewer/?url=https://s3.eu-central-1.amazonaws.com/ohif-viewer/sampleDICOM.json
                  -

                  If you have made a documentation change, a link like this will let you preview the gitbook generated by the pull request:

                  -
                  https://deploy-preview-237--ohif.netlify.com/contributing.html
                  -
                  - -
                  - -
                  -
                  -
                  - -

                  results matching ""

                  -
                    - -
                    -
                    - -

                    No results matching ""

                    - -
                    -
                    -
                    - -
                    -
                    - - -
                    - - - - - - - - - - -
                    - - -
                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/data/data-hierarchy.html b/docs/latest/_book/history/v1/data/data-hierarchy.html deleted file mode 100644 index d4446915d..000000000 --- a/docs/latest/_book/history/v1/data/data-hierarchy.html +++ /dev/null @@ -1,979 +0,0 @@ - - - - - - - Data Hierarchy ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    -
                    - - - - - - - - -
                    - -
                    - -
                    - - - - - - - - - -
                    -
                    - -
                    -
                    - -
                    - -

                    Data Hierarchy

                    -

                    Studies, Series, Instances, Frames

                    -

                    Display Sets

                    - - -
                    - -
                    -
                    -
                    - -

                    results matching ""

                    -
                      - -
                      -
                      - -

                      No results matching ""

                      - -
                      -
                      -
                      - -
                      -
                      - - -
                      - - - - - - - - - - -
                      - - -
                      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/data/image-viewport.html b/docs/latest/_book/history/v1/data/image-viewport.html deleted file mode 100644 index 2fc7ba1fb..000000000 --- a/docs/latest/_book/history/v1/data/image-viewport.html +++ /dev/null @@ -1,979 +0,0 @@ - - - - - - - Image Viewport ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                      -
                      - - - - - - - - -
                      - -
                      - -
                      - - - - - - - - - -
                      -
                      - -
                      -
                      - -
                      - -

                      Image Viewport

                      -

                      Main Viewport Component

                      -

                      The imageViewerViewport component

                      - - -
                      - -
                      -
                      -
                      - -

                      results matching ""

                      -
                        - -
                        -
                        - -

                        No results matching ""

                        - -
                        -
                        -
                        - -
                        -
                        - - -
                        - - - - - - - - - - -
                        - - -
                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/data/measurements-and-annotations.md b/docs/latest/_book/history/v1/data/measurements-and-annotations.md deleted file mode 100644 index 574f11845..000000000 --- a/docs/latest/_book/history/v1/data/measurements-and-annotations.md +++ /dev/null @@ -1 +0,0 @@ -# Measurements and Annotations diff --git a/docs/latest/_book/history/v1/data/tool-management.md b/docs/latest/_book/history/v1/data/tool-management.md deleted file mode 100644 index 399b04c8b..000000000 --- a/docs/latest/_book/history/v1/data/tool-management.md +++ /dev/null @@ -1 +0,0 @@ -# Tool Management diff --git a/docs/latest/_book/history/v1/deployment/building-for-production.html b/docs/latest/_book/history/v1/deployment/building-for-production.html deleted file mode 100644 index 15b7636f4..000000000 --- a/docs/latest/_book/history/v1/deployment/building-for-production.html +++ /dev/null @@ -1,1065 +0,0 @@ - - - - - - - Building for Production ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        -
                        - - - - - - - - -
                        - -
                        - -
                        - - - - - - - - - -
                        -
                        - -
                        -
                        - -
                        - -

                        Building for Production

                        -

                        This tutorial considers the current folder as OHIFViewer/.

                        -

                        Dependencies

                        -

                        First, you need to have installed:

                        - -

                        MongoDB is actually not required if you have a remote MongoDB. If your database is local then you need to have it running.

                        -

                        Check your packages

                        -

                        Inside of the viewer folder make sure NPM packages are updated for production:

                        -
                        npm install --production
                        -
                        -

                        Building

                        -

                        There are two ways of building OHIF Viewer for a specific DICOM server: Automatically or Manually.

                        -

                        For both, we use the meteor build (check it's docs) app and Orthanc Dicom Web Server.

                        -

                        For meteor build it's necessary to inform an output folder myOutputFolder. -Remember to change myOutputFolder to your folder location.

                        -

                        OHIF Viewer will be built using Orthanc DICOM Web server configuration file ../config/orthancDICOMWeb.json to set METEOR_SETTINGS environment var.

                        -

                        To run with another server, just point to the corresponding .json located in config folder or create your own.

                        -

                        Build automatically

                        -

                        After this step, go directly to Prepare to run production build.

                        -
                        Non-windows users
                        -
                        METEOR_PACKAGE_DIRS="../Packages" METEOR_SETTINGS=$(cat ../config/orthancDICOMWeb.json) meteor build --directory myOutputFolder
                        -
                        -
                        Windows users
                        -

                        Since there is no cat command in Windows cmd, use Windows PowerShell (at least version 3.0) instead.

                        -

                        In PowerShell, open a new shell as an admin:

                        -
                        Start-Process powershell -Verb runAs
                        -
                        -

                        Then:

                        -

                        Remember to change OHIFViewerFolderLocation to OHIFViewer's folder location.

                        -
                        cd OHIFViewerFolderLocation
                        -$settings = Get-Content ..\config\orthancDICOMWeb.json -Raw
                        -$settings = $settings -replace "`n","" -replace "`r","" -replace " ",""
                        -[Environment]::SetEnvironmentVariable("METEOR_SETTINGS", $settings, "Machine")
                        -SET METEOR_PACKAGE_DIRS="../Packages"
                        -meteor build --directory myOutputFolder
                        -
                        -

                        Build manually

                        -

                        OHIF Viewer will be built normally, but with no DICOM Server information, which needs to be added when running the build. This is described in Manually adding DICOM Server to the Viewer.

                        -
                        Non-windows users
                        -
                        METEOR_PACKAGE_DIRS="../Packages" meteor build --directory myOutputFolder
                        -
                        -
                        Windows users in cmd
                        -
                        SET METEOR_PACKAGE_DIRS="../Packages"
                        -meteor build --directory myOutputFolder
                        -
                        -

                        Prepare to run production build

                        -

                        If everything went ok, meteor build created a bundle folder inside myOutputFolder.

                        -

                        Remember to change myOutputFolder to your folder location.

                        -

                        Go to that folder:

                        -
                        cd myOutputFolder/bundle
                        -
                        -

                        Now install the NPM dependencies:

                        -
                        cd programs/server
                        -npm install
                        -
                        -

                        To run production build

                        -

                        Go back to the bundle folder:

                        -
                        cd ../..
                        -
                        -

                        or (Remember to change myOutputFolder to your folder location.):

                        -
                        cd myOutputFolder/bundle
                        -
                        -

                        3 environment variables are set before running Node.js:

                        -
                          -
                        • MONGO_URL: is the url to MongoDB. If it's local, you need to have it running
                        • -
                        • ROOT_URL: the hostname where you can access your Viewer in the browser
                        • -
                        • PORT: the port the Viewer will run
                        • -
                        -

                        This way, the Viewer can be accessed in http://localhost:3000, with MongoDB running locally using 27017 port (it's default).

                        -
                        Non-windows users
                        -
                        MONGO_URL=mongodb://localhost:27017/myapp ROOT_URL=http://localhost PORT=3000 node main.js
                        -
                        -
                        Windows users in cmd
                        -
                        SET MONGO_URL=mongodb://localhost:27017/myapp
                        -SET ROOT_URL=http://localhost
                        -SET PORT=3000
                        -node main.js
                        -
                        -

                        Manually adding DICOM Server to the Viewer

                        -

                        If DICOM Server was configured automatically during the building process, skip this step.

                        -

                        Access the viewer http://localhost:3000 and toggle the Options menu, located at top right corner. Select Server Information option.

                        -

                        In Server Information dialog click on Add a new server button and fill the fields accordingly to the DICOM Server to be added.

                        -

                        In case of doubts about any field in this dialog, use config/orthancDICOMWeb.json as reference.

                        -

                        After filling the form, click on the Save button and the new server will be listed. Make sure to activate it by clicking on the left most button (a checkbox button) in the Actions column.

                        -

                        Refresh the page and Viewer will be connected to the DICOM Server.

                        - - -
                        - -
                        -
                        -
                        - -

                        results matching ""

                        -
                          - -
                          -
                          - -

                          No results matching ""

                          - -
                          -
                          -
                          - -
                          -
                          - - -
                          - - - - - - - - - - -
                          - - -
                          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/deployment/security.html b/docs/latest/_book/history/v1/deployment/security.html deleted file mode 100644 index c6c629798..000000000 --- a/docs/latest/_book/history/v1/deployment/security.html +++ /dev/null @@ -1,977 +0,0 @@ - - - - - - - Security ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                          -
                          - - - - - - - - -
                          - -
                          - -
                          - - - - - - - - - -
                          -
                          - -
                          -
                          - -
                          - -

                          Security

                          - - -
                          - -
                          -
                          -
                          - -

                          results matching ""

                          -
                            - -
                            -
                            - -

                            No results matching ""

                            - -
                            -
                            -
                            - -
                            -
                            - - -
                            - - - - - - - - - - -
                            - - -
                            - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/essentials/architecture.html b/docs/latest/_book/history/v1/essentials/architecture.html deleted file mode 100644 index 5a16b9ddb..000000000 --- a/docs/latest/_book/history/v1/essentials/architecture.html +++ /dev/null @@ -1,995 +0,0 @@ - - - - - - - Architecture ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                            -
                            - - - - - - - - -
                            - -
                            - -
                            - - - - - - - - - -
                            -
                            - -
                            -
                            - -
                            - -

                            Architecture

                            -

                            Meteor

                            -

                            Meteor is built on top of Node.js, adding reactive templates (Blaze), a publish/subscribe mechanism (via WebSockets and the Distributed Data Protocol, and a fully integrated client-server MongoDB making it easy to create reactive data elements in the UI.

                            -

                            Structure of an OHIF Application

                            -

                            The OHIF Framework is built as a set of small Meteor packages which can be included as necessary in the final application. Since the logic and templates are largely pushed into packages, the actual application-specific code for each Viewer is relatively short.

                            -

                            In brief, to create a new Viewer application, you need to:

                            -
                              -
                            • Define the existing pages and the routes which will lead to them
                            • -
                            • Define the overall application layout
                            • -
                            • Include child templates from the OHIF Packages into your application layout
                            • -
                            • Specify desired template options as necessary (e.g. which tools should appear in the toolbar)
                            • -
                            -

                            User interface components for your application can be defined in any View layer supported by Meteor (Officially: Angular, React, Blaze, Unofficially: Vue).

                            - - -
                            - -
                            -
                            -
                            - -

                            results matching ""

                            -
                              - -
                              -
                              - -

                              No results matching ""

                              - -
                              -
                              -
                              - -
                              -
                              - - -
                              - - - - - - - - - - - - - - -
                              - - -
                              - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/essentials/configuration.html b/docs/latest/_book/history/v1/essentials/configuration.html deleted file mode 100644 index 308740587..000000000 --- a/docs/latest/_book/history/v1/essentials/configuration.html +++ /dev/null @@ -1,992 +0,0 @@ - - - - - - - Configuration ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                              -
                              - - - - - - - - -
                              - -
                              - -
                              - - - - - - - - - -
                              -
                              - -
                              -
                              - -
                              - -

                              Configurations

                              -

                              There are a few pre-defined settings files that you can find in config folder. These are Meteor files and all settings can be accessed as showed on Meteor Website. UI settings are also available as OHIF.uiSettings. See the schema for more information.

                              -

                              Server settings

                              -
                                -
                              • dropCollections (boolean): the server will drop all Mongo collections when it's set to true as soon as it has finished starting. This is useful for demo and development environments.
                              • -
                              -

                              UI Settings

                              -
                                -
                              • studyListDateFilterNumDays (integer): define the default date filter (range) on study list. If it's 02/15/2017 and this config is set to 5 then it will search for studies between 02/10/2017 and 02/15/2017.
                              • -
                              - - -
                              - -
                              -
                              -
                              - -

                              results matching ""

                              -
                                - -
                                -
                                - -

                                No results matching ""

                                - -
                                -
                                -
                                - -
                                -
                                - - -
                                - - - - - - - - - - - - - - -
                                - - -
                                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/essentials/getting-started.html b/docs/latest/_book/history/v1/essentials/getting-started.html deleted file mode 100644 index a097d285a..000000000 --- a/docs/latest/_book/history/v1/essentials/getting-started.html +++ /dev/null @@ -1,984 +0,0 @@ - - - - - - - Getting Started ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                -
                                - - - - - - - - -
                                - -
                                - -
                                - - - - - - - - - -
                                -
                                - -
                                -
                                - -
                                - -

                                Getting Started

                                -

                                ...

                                - - -
                                - -
                                -
                                -
                                - -

                                results matching ""

                                -
                                  - -
                                  -
                                  - -

                                  No results matching ""

                                  - -
                                  -
                                  -
                                  - -
                                  -
                                  - - -
                                  - - - - - - - - - - - - - - -
                                  - - -
                                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/essentials/installation.html b/docs/latest/_book/history/v1/essentials/installation.html deleted file mode 100644 index 579ffecfc..000000000 --- a/docs/latest/_book/history/v1/essentials/installation.html +++ /dev/null @@ -1,1045 +0,0 @@ - - - - - - - Installation ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                  -
                                  - - - - - - - - -
                                  - -
                                  - -
                                  - - - - - - - - - -
                                  -
                                  - -
                                  -
                                  - -
                                  - -

                                  Installation

                                  -

                                  Getting the Code

                                  -

                                  Either clone the repository using Git:

                                  -
                                  git clone git@github.com:OHIF/Viewers.git
                                  -
                                  -

                                  or Download the latest Master as a ZIP File.

                                  -

                                  Set up a DICOM server

                                  -
                                    -
                                  1. Choose and install an Image Archive
                                  2. -
                                  3. Upload some data into your archive (e.g. with DCMTK's storescu or your archive's web interface)
                                  4. -
                                  5. Keep the server running
                                  6. -
                                  -

                                  Open Source DICOM Image Archive Options

                                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                  ArchiveInstallation
                                  DCM4CHEE Archive 5.xInstallation with Docker
                                  OrthancInstallation with Docker
                                  DICOMcloud (DICOM Web only)Installation
                                  OsiriX (Mac OSX only)
                                  Horos (Mac OSX only)
                                  -

                                  Feel free to make a Pull Request if you want to add to this list.

                                  -

                                  Set up and test the OHIF Viewer (or LesionTracker) application:

                                  -
                                    -
                                  1. Install Meteor
                                  2. -
                                  3. Open a new terminal tab in one of the Application directories (OHIFViewer or LesionTracker)
                                  4. -
                                  5. Instruct Meteor to install all dependent NPM Packages

                                    -
                                    METEOR_PACKAGE_DIRS="../Packages" meteor npm install
                                    -
                                    -
                                  6. -
                                  7. Run Meteor using one of the available configuration files.

                                    -
                                    METEOR_PACKAGE_DIRS="../Packages" meteor --settings ../config/orthancDICOMWeb.json
                                    -
                                    -

                                    Note: On Windows, you may need to set PACKAGE_DIRS="../Packages" in your Environment Variables in your operating system settings.

                                    -
                                  8. -
                                  9. Launch the OHIF Viewer / Lesion Tracker Study List by visiting http://localhost:3000/ in a web browser.

                                    -

                                    If everything is working correctly, you should see the Study List from your archive when you visit the Study List.

                                    -
                                  10. -
                                  11. Double-click on a Study in the Study List to launch it in the Viewer

                                    -

                                    If everything is working correctly, you should see your study load into the Viewer.

                                    -
                                  12. -
                                  -

                                  Troubleshooting

                                  -
                                    -
                                  • If you receive a "No Studies Found" message and do not see your studies, try changing the Study Date filters to a wider range.
                                  • -
                                  • If you see any errors in your server console, check the Troubleshooting page for more in depth advice.
                                  • -
                                  - - -
                                  - -
                                  -
                                  -
                                  - -

                                  results matching ""

                                  -
                                    - -
                                    -
                                    - -

                                    No results matching ""

                                    - -
                                    -
                                    -
                                    - -
                                    -
                                    - - -
                                    - - - - - - - - - - -
                                    - - -
                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/essentials/meteor-packages.md b/docs/latest/_book/history/v1/essentials/meteor-packages.md deleted file mode 100644 index e172aba86..000000000 --- a/docs/latest/_book/history/v1/essentials/meteor-packages.md +++ /dev/null @@ -1,60 +0,0 @@ -# Meteor Packages - -### Commands (*ohif-commands*) -### Core (*ohif-core*) - -## Cornerstone Package (*ohif-cornerstone*) - -This package contains a number of front-end libraries that help us build web-based medical imaging applications. - -These are: -- [dicomParser](https://github.com/cornerstonejs/dicomParser): -A lightweight JavaScript library for parsing DICOM P10 byte streams in modern web browsers (IE10+), Node.js, and Meteor. - -- [Cornerstone Core](https://github.com/cornerstonejs/cornerstone): -A lightweight JavaScript library for displaying medical images in modern web browsers that support the HTML5 canvas element. - -- [Cornerstone Tools](https://github.com/cornerstonejs/cornerstoneTools): -A library built on top of cornerstone that provides a set of common tools needed in medical imaging to work with images and stacks of images - -- [Cornerstone Math](https://github.com/cornerstonejs/cornerstoneMath): -Math and computational geometry functionality for Cornerstone - -- [Cornerstone WADO Image Loader](https://github.com/cornerstonejs/cornerstoneWADOImageLoader): -A Cornerstone Image Loader for DICOM P10 instances over HTTP. This can be used to integrate cornerstone with WADO-URI servers or any other HTTP based server that returns DICOM P10 instances (e.g. Orthanc or custom servers). - -- [Hammer.js](https://github.com/hammerjs/hammer.js): -A JavaScript library for multi-touch gestures - -### Design (*ohif-design*) -### DICOM Services (*ohif-dicom-services*) -It contains a number of helper functions for retrieving common value types (e.g. JSON, patient name, image frame) from a DICOM image. This package is for server-side usage. - -### Hanging Protocols (*ohif-hanging-protocols*) -### Header (*ohif-header*) -### Hotkeys (*ohif-hotkeys*) - -### Lesion Tracker (*ohif-lesiontracker*) -This package stores all of the oncology-specific tools and functions developed for the Lesion Tracker application. Here we store, for example, the Target measurement and Non-target pointer tools that are used to monitor tumour burden over time. - -This package also stores Meteor components for the interactive lesion table used in the Lesion Tracker, and dialog boxes for the callbacks attached to the Target and Non-target tools. - -### Logging (*ohif-log*) -### Logging (*ohif-measurements*) -### Metadata (*ohif-metadata*) -### Polyfilling Functionality (*ohif-polyfill*) - -### Select Tree UI (*ohif-select-tree*) -### Server Settings UI (*ohif-servers*) -### Studies (*ohif-studies*) -### Study List UI (*ohif-study-list*) -### Common Themes (*ohif-themes-common*) -### Theming (*ohif-themes*) -### User Management (*ohif-user-management*) -### User (*ohif-user*) - -### Basic Viewer Components (*ohif-viewerbase*) -This is the largest package in the repository. It holds a large number of re-usable Meteor components that are used to build both the OHIF Viewer and Lesion Tracker. - -### WADO Proxy (*ohif-wadoproxy*) -Proxy for CORS diff --git a/docs/latest/_book/history/v1/essentials/troubleshooting.html b/docs/latest/_book/history/v1/essentials/troubleshooting.html deleted file mode 100644 index 169b2ccd1..000000000 --- a/docs/latest/_book/history/v1/essentials/troubleshooting.html +++ /dev/null @@ -1,1008 +0,0 @@ - - - - - - - Troubleshooting ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    -
                                    - - - - - - - - -
                                    - -
                                    - -
                                    - - - - - - - - - -
                                    -
                                    - -
                                    -
                                    - -
                                    - -

                                    Troubleshooting

                                    -

                                    Common Problems

                                    - - - - - - - - - - - - - - - - - - - - - -
                                    ProblemMost Common Reasons
                                    Can't retrieve Study List over DICOMWeb1. QIDO root URL is incorrect
                                    2. DICOM Web is not enabled on PACS
                                    Can't retrieve Study List over DIMSE1. PACS is not configured to allow connections from OHIF Meteor Server
                                    Can't retrieve images1. WADO Root URL is incorrect
                                    2. DICOM Web is not enabled on PACS
                                    3. HTTP Basic Authentication username and password are incorrect or not provided.
                                    -

                                    Debugging Steps

                                    -

                                    Can't retrieve Study List over DICOMWeb

                                    -
                                      -
                                    1. Check that you can query your PACS using an alternative DICOM Web client (e.g. cURL, or a Web Browser). If you cannot, then your PACS is configured incorrectly. Refer to the documentation of the image archive. -2.
                                    2. -
                                    -

                                    Can't retrieve Study List over DIMSE

                                    -

                                    Can't retrieve images

                                    - - -
                                    - -
                                    -
                                    -
                                    - -

                                    results matching ""

                                    -
                                      - -
                                      -
                                      - -

                                      No results matching ""

                                      - -
                                      -
                                      -
                                      - -
                                      -
                                      - - -
                                      - - - - - - - - - - -
                                      - - -
                                      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/example-applications/lesion-tracker.html b/docs/latest/_book/history/v1/example-applications/lesion-tracker.html deleted file mode 100644 index 00b6c52f4..000000000 --- a/docs/latest/_book/history/v1/example-applications/lesion-tracker.html +++ /dev/null @@ -1,983 +0,0 @@ - - - - - - - Lesion Tracker ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                      -
                                      - - - - - - - - -
                                      - -
                                      - -
                                      - - - - - - - - - -
                                      -
                                      - -
                                      -
                                      - -
                                      - -

                                      Lesion Tracker

                                      - - -
                                      - -
                                      -
                                      -
                                      - -

                                      results matching ""

                                      -
                                        - -
                                        -
                                        - -

                                        No results matching ""

                                        - -
                                        -
                                        -
                                        - -
                                        -
                                        - - -
                                        - - - - - - - - - - - - - - -
                                        - - -
                                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/example-applications/ohif-viewer.html b/docs/latest/_book/history/v1/example-applications/ohif-viewer.html deleted file mode 100644 index ef6798344..000000000 --- a/docs/latest/_book/history/v1/example-applications/ohif-viewer.html +++ /dev/null @@ -1,977 +0,0 @@ - - - - - - - OHIF Viewer ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                        -
                                        - - - - - - - - -
                                        - -
                                        - -
                                        - - - - - - - - - -
                                        -
                                        - -
                                        -
                                        - -
                                        - -

                                        OHIF Viewer

                                        - - -
                                        - -
                                        -
                                        -
                                        - -

                                        results matching ""

                                        -
                                          - -
                                          -
                                          - -

                                          No results matching ""

                                          - -
                                          -
                                          -
                                          - -
                                          -
                                          - - -
                                          - - - - - - - - - - -
                                          - - -
                                          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/example-applications/standalone-viewer.html b/docs/latest/_book/history/v1/example-applications/standalone-viewer.html deleted file mode 100644 index 25743c34f..000000000 --- a/docs/latest/_book/history/v1/example-applications/standalone-viewer.html +++ /dev/null @@ -1,977 +0,0 @@ - - - - - - - Standalone Viewer ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                          -
                                          - - - - - - - - -
                                          - -
                                          - -
                                          - - - - - - - - - -
                                          -
                                          - -
                                          -
                                          - -
                                          - -

                                          Standalone Viewer

                                          - - -
                                          - -
                                          -
                                          -
                                          - -

                                          results matching ""

                                          -
                                            - -
                                            -
                                            - -

                                            No results matching ""

                                            - -
                                            -
                                            -
                                            - -
                                            -
                                            - - -
                                            - - - - - - - - - - -
                                            - - -
                                            - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/faq/general.html b/docs/latest/_book/history/v1/faq/general.html deleted file mode 100644 index 44d8b6691..000000000 --- a/docs/latest/_book/history/v1/faq/general.html +++ /dev/null @@ -1,1012 +0,0 @@ - - - - - - - General ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            -
                                            - - - - - - - - -
                                            - -
                                            - -
                                            - - - - - - - - - -
                                            -
                                            - -
                                            -
                                            - -
                                            - -

                                            Frequently Asked Questions - General

                                            -

                                            How do I file a bug?

                                            -

                                            We accept and triage bug reports through Github primarily.

                                            -
                                              -
                                            1. Create a Github account
                                            2. -
                                            3. Search the current Issue List to ensure you are not creating a duplicate issue.

                                              -

                                              If your issue already exists, post a comment to show us that this issue also affects you.

                                              -
                                            4. -
                                            5. If no prior issue exists, Create a New Issue on the repository.

                                              -
                                            6. -
                                            -

                                            Some tips for filing a new issue:

                                            -
                                              -
                                            • Make sure your issue is reproducible: If we try to reproduce your issue given your provided steps and we cannot reproduce it, we will not be able to fix it. Nobody wants to spend time guessing how to reproduce your issue! Before filing, please reproduce your issue more than once and clearly describe the steps taken.
                                            • -
                                            • If you are reporting a user interface issue, provide screenshots: A picture is worth a thousand words. If your issue concerns the UI, screenshots will help us identify the issue dramatically faster since it can be extremely challenging to describe UI bugs with text. You should still clearly describe the steps that you took to produce the issue.
                                            • -
                                            • Include platform & environment: Your operating system, web browser, and web browser version are highly relevant for many bugs. Please provide these with all bug reports.
                                            • -
                                            • Include expected and actual result: Tell us what you expected to happen, and what actually happened. If you don't do this, we might not consider it a bug.
                                            • -
                                            -

                                            How can I request a new feature?

                                            -

                                            At the moment we are in the process of defining our roadmap and will do our best to communicate this to the community. If your requested feature is on the roadmap, then it will most likely be built at some point. If it is not, you are welcome to build it yourself and contribute it. If you have resources and would like to fund the development of a feature, please contact us.

                                            -

                                            Who should I contact about Academic Collaborations?

                                            -

                                            Gordon J. Harris at Massachusetts General Hospital is the primary contact for any academic collaborators. We are always happy to hear about new groups interested in using the OHIF framework, and may be able to provide development support if the proposed collaboration has an impact on cancer research.

                                            -

                                            Do you offer commercial support?

                                            -

                                            The Open Health Imaging Foundation does not offer commercial support, however, some community members do offer consulting services. The following contacts may be useful:

                                            - -

                                            Please file a Pull Request if you wish to add your name or organization to this list.

                                            -

                                            I emailed my question to you directly and you did not respond. Why not?

                                            -

                                            Emailing developers directly is not a shortcut to faster support. Please file your issues and questions on Github so that everyone can benefit from the discussion and solutions.

                                            -

                                            Do your Viewers have 510(k) Clearance from the U.S. F.D.A or CE Marking from the European Commission?

                                            -

                                            NO. The OHIF Viewer, Lesion Tracker, and Standalone Viewer, NOT F.D.A. cleared or CE Marked. It is the users responsibility to ensure compliance with applicable rules and regulations. The License for the OHIF Framework does not prevent your company or group from seeking F.D.A. clearance for a product built using the framework.

                                            -

                                            If you have gone this route (or are going there), please let us know because we would be interested to hear about your experience.

                                            -

                                            Are your Viewers HIPAA Compliant?

                                            -

                                            NO. The OHIF Viewer, Lesion Tracker, and Standalone Viewer DO NOT fulfill all of the criteria to become HIPAA Compliant. It is the users responsibility to ensure compliance with applicable rules and regulations.

                                            -

                                            The Lesion Tracker application demonstrates some available components and features (e.g. Audit Trail, automatic logoff, and unique user identification for User Accounts) which could be used by third parties seeking HIPAA compliance.

                                            - - -
                                            - -
                                            -
                                            -
                                            - -

                                            results matching ""

                                            -
                                              - -
                                              -
                                              - -

                                              No results matching ""

                                              - -
                                              -
                                              -
                                              - -
                                              -
                                              - - -
                                              - - - - - - - - - - -
                                              - - -
                                              - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/faq/technical.html b/docs/latest/_book/history/v1/faq/technical.html deleted file mode 100644 index 3c33f8dbd..000000000 --- a/docs/latest/_book/history/v1/faq/technical.html +++ /dev/null @@ -1,987 +0,0 @@ - - - - - - - Technical ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                              -
                                              - - - - - - - - -
                                              - -
                                              - -
                                              - - - - - - - - - -
                                              -
                                              - -
                                              -
                                              - -
                                              - -

                                              Frequently Asked Questions - Technical

                                              -

                                              Why is your framework built with Meteor?

                                              -

                                              At the time of project conception, Meteor was a simple way to begin using bleeding edge web technologies without putting significant effort into configuration and build processes. Although Meteor does have some drawbacks, it remains a simple all-in-one solution.

                                              -

                                              Do you have any plans to stop using Meteor?

                                              -

                                              We have considered migrating templates from Blaze (http://blazejs.org/) to React (https://reactjs.org/) or Vue (https://vuejs.org/), simply because these decouple the view layer from the remainder of the application. Blaze currently lacks Stand-alone Support which means that our templates are not re-usable outside of a Meteor application. This is certainly a downside, but the resource cost to migrate every template is significant.

                                              - - -
                                              - -
                                              -
                                              -
                                              - -

                                              results matching ""

                                              -
                                                - -
                                                -
                                                - -

                                                No results matching ""

                                                - -
                                                -
                                                -
                                                - -
                                                -
                                                - - -
                                                - - - - - - - - - - - - - - -
                                                - - -
                                                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/FontAwesome.otf b/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/FontAwesome.otf deleted file mode 100644 index d4de13e83..000000000 Binary files a/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/FontAwesome.otf and /dev/null differ diff --git a/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.eot b/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.eot deleted file mode 100644 index c7b00d2ba..000000000 Binary files a/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.eot and /dev/null differ diff --git a/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.svg b/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.svg deleted file mode 100644 index 8b66187fe..000000000 --- a/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.svg +++ /dev/null @@ -1,685 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.ttf b/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.ttf deleted file mode 100644 index f221e50a2..000000000 Binary files a/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.ttf and /dev/null differ diff --git a/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.woff b/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.woff deleted file mode 100644 index 6e7483cf6..000000000 Binary files a/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.woff and /dev/null differ diff --git a/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 b/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 deleted file mode 100644 index 7eb74fd12..000000000 Binary files a/docs/latest/_book/history/v1/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 and /dev/null differ diff --git a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-anchors/plugin.css b/docs/latest/_book/history/v1/gitbook/gitbook-plugin-anchors/plugin.css deleted file mode 100644 index adf3e9ec0..000000000 --- a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-anchors/plugin.css +++ /dev/null @@ -1,30 +0,0 @@ - -a.plugin-anchor { - color: inherit !important; - display: none; - margin-left: -30px; - padding-left: 40px; - cursor: pointer; - position: absolute; - top: 0; - left: 0; - bottom: 0; -} - -a.plugin-anchor i { - margin-left: -30px; - font-size: 15px !important; -} - -h1, h2, h3, h4, h5, h6 { - position: relative; -} - -h1:hover a.plugin-anchor, h2:hover a.plugin-anchor, h3:hover a.plugin-anchor, -h4:hover a.plugin-anchor, h5:hover a.plugin-anchor, h6:hover a.plugin-anchor { - display: inline-block; -} - -.book .book-body .page-wrapper .page-inner section.normal { - overflow: visible; -} diff --git a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-edit-link/plugin.js b/docs/latest/_book/history/v1/gitbook/gitbook-plugin-edit-link/plugin.js deleted file mode 100644 index 32f349485..000000000 --- a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-edit-link/plugin.js +++ /dev/null @@ -1,30 +0,0 @@ -require(["gitbook", "jQuery"], function(gitbook, $) { - gitbook.events.bind('start', function (e, config) { - var conf = config['edit-link']; - var label = conf.label; - var base = conf.base; - var lang = gitbook.state.innerLanguage; - if (lang) { - // label can be a unique string for multi-languages site - if (typeof label === 'object') label = label[lang]; - - lang = lang + '/'; - } - - // Add slash at the end if not present - if (base.slice(-1) != "/") { - base = base + "/"; - } - - gitbook.toolbar.createButton({ - icon: 'fa fa-edit', - text: label, - onClick: function() { - var filepath = gitbook.state.filepath; - - window.open(base + lang + filepath); - } - }); - }); - -}); \ No newline at end of file diff --git a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-ga/plugin.js b/docs/latest/_book/history/v1/gitbook/gitbook-plugin-ga/plugin.js deleted file mode 100644 index ff21e9c6b..000000000 --- a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-ga/plugin.js +++ /dev/null @@ -1,17 +0,0 @@ -require(["gitbook"], function(gitbook) { - // Load analytics.js - gitbook.events.bind("start", function(e, config) { - (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ - (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), - m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) - })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); - - var cfg = config.ga; - ga('create', cfg.token, cfg.configuration); - }); - - // Notify pageview - gitbook.events.bind("page.change", function() { - ga('send', 'pageview', window.location.pathname+window.location.search); - }); -}); diff --git a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-github/plugin.js b/docs/latest/_book/history/v1/gitbook/gitbook-plugin-github/plugin.js deleted file mode 100644 index 14810ce0b..000000000 --- a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-github/plugin.js +++ /dev/null @@ -1,14 +0,0 @@ -require([ 'gitbook' ], function (gitbook) { - gitbook.events.bind('start', function (e, config) { - var githubURL = config.github.url; - - gitbook.toolbar.createButton({ - icon: 'fa fa-github', - label: 'GitHub', - position: 'right', - onClick: function() { - window.open(githubURL) - } - }); - }); -}); diff --git a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-highlight/ebook.css b/docs/latest/_book/history/v1/gitbook/gitbook-plugin-highlight/ebook.css deleted file mode 100644 index cecaaab5a..000000000 --- a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-highlight/ebook.css +++ /dev/null @@ -1,135 +0,0 @@ -pre, -code { - /* http://jmblog.github.io/color-themes-for-highlightjs */ - /* Tomorrow Comment */ - /* Tomorrow Red */ - /* Tomorrow Orange */ - /* Tomorrow Yellow */ - /* Tomorrow Green */ - /* Tomorrow Aqua */ - /* Tomorrow Blue */ - /* Tomorrow Purple */ -} -pre .hljs-comment, -code .hljs-comment, -pre .hljs-title, -code .hljs-title { - color: #8e908c; -} -pre .hljs-variable, -code .hljs-variable, -pre .hljs-attribute, -code .hljs-attribute, -pre .hljs-tag, -code .hljs-tag, -pre .hljs-regexp, -code .hljs-regexp, -pre .hljs-deletion, -code .hljs-deletion, -pre .ruby .hljs-constant, -code .ruby .hljs-constant, -pre .xml .hljs-tag .hljs-title, -code .xml .hljs-tag .hljs-title, -pre .xml .hljs-pi, -code .xml .hljs-pi, -pre .xml .hljs-doctype, -code .xml .hljs-doctype, -pre .html .hljs-doctype, -code .html .hljs-doctype, -pre .css .hljs-id, -code .css .hljs-id, -pre .css .hljs-class, -code .css .hljs-class, -pre .css .hljs-pseudo, -code .css .hljs-pseudo { - color: #c82829; -} -pre .hljs-number, -code .hljs-number, -pre .hljs-preprocessor, -code .hljs-preprocessor, -pre .hljs-pragma, -code .hljs-pragma, -pre .hljs-built_in, -code .hljs-built_in, -pre .hljs-literal, -code .hljs-literal, -pre .hljs-params, -code .hljs-params, -pre .hljs-constant, -code .hljs-constant { - color: #f5871f; -} -pre .ruby .hljs-class .hljs-title, -code .ruby .hljs-class .hljs-title, -pre .css .hljs-rules .hljs-attribute, -code .css .hljs-rules .hljs-attribute { - color: #eab700; -} -pre .hljs-string, -code .hljs-string, -pre .hljs-value, -code .hljs-value, -pre .hljs-inheritance, -code .hljs-inheritance, -pre .hljs-header, -code .hljs-header, -pre .hljs-addition, -code .hljs-addition, -pre .ruby .hljs-symbol, -code .ruby .hljs-symbol, -pre .xml .hljs-cdata, -code .xml .hljs-cdata { - color: #718c00; -} -pre .css .hljs-hexcolor, -code .css .hljs-hexcolor { - color: #3e999f; -} -pre .hljs-function, -code .hljs-function, -pre .python .hljs-decorator, -code .python .hljs-decorator, -pre .python .hljs-title, -code .python .hljs-title, -pre .ruby .hljs-function .hljs-title, -code .ruby .hljs-function .hljs-title, -pre .ruby .hljs-title .hljs-keyword, -code .ruby .hljs-title .hljs-keyword, -pre .perl .hljs-sub, -code .perl .hljs-sub, -pre .javascript .hljs-title, -code .javascript .hljs-title, -pre .coffeescript .hljs-title, -code .coffeescript .hljs-title { - color: #4271ae; -} -pre .hljs-keyword, -code .hljs-keyword, -pre .javascript .hljs-function, -code .javascript .hljs-function { - color: #8959a8; -} -pre .hljs, -code .hljs { - display: block; - background: white; - color: #4d4d4c; - padding: 0.5em; -} -pre .coffeescript .javascript, -code .coffeescript .javascript, -pre .javascript .xml, -code .javascript .xml, -pre .tex .hljs-formula, -code .tex .hljs-formula, -pre .xml .javascript, -code .xml .javascript, -pre .xml .vbscript, -code .xml .vbscript, -pre .xml .css, -code .xml .css, -pre .xml .hljs-cdata, -code .xml .hljs-cdata { - opacity: 0.5; -} diff --git a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-highlight/website.css b/docs/latest/_book/history/v1/gitbook/gitbook-plugin-highlight/website.css deleted file mode 100644 index 6674448f7..000000000 --- a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-highlight/website.css +++ /dev/null @@ -1,434 +0,0 @@ -.book .book-body .page-wrapper .page-inner section.normal pre, -.book .book-body .page-wrapper .page-inner section.normal code { - /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ - /* Tomorrow Comment */ - /* Tomorrow Red */ - /* Tomorrow Orange */ - /* Tomorrow Yellow */ - /* Tomorrow Green */ - /* Tomorrow Aqua */ - /* Tomorrow Blue */ - /* Tomorrow Purple */ -} -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-comment, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-comment, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-title, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-title { - color: #8e908c; -} -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-variable, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-variable, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-attribute, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-attribute, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-tag, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-tag, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-regexp, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-regexp, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-deletion, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-deletion, -.book .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-constant, -.book .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-constant, -.book .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-tag .hljs-title, -.book .book-body .page-wrapper .page-inner section.normal code .xml .hljs-tag .hljs-title, -.book .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-pi, -.book .book-body .page-wrapper .page-inner section.normal code .xml .hljs-pi, -.book .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-doctype, -.book .book-body .page-wrapper .page-inner section.normal code .xml .hljs-doctype, -.book .book-body .page-wrapper .page-inner section.normal pre .html .hljs-doctype, -.book .book-body .page-wrapper .page-inner section.normal code .html .hljs-doctype, -.book .book-body .page-wrapper .page-inner section.normal pre .css .hljs-id, -.book .book-body .page-wrapper .page-inner section.normal code .css .hljs-id, -.book .book-body .page-wrapper .page-inner section.normal pre .css .hljs-class, -.book .book-body .page-wrapper .page-inner section.normal code .css .hljs-class, -.book .book-body .page-wrapper .page-inner section.normal pre .css .hljs-pseudo, -.book .book-body .page-wrapper .page-inner section.normal code .css .hljs-pseudo { - color: #c82829; -} -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-number, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-number, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-preprocessor, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-preprocessor, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-pragma, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-pragma, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-built_in, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-built_in, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-literal, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-literal, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-params, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-params, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-constant, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-constant { - color: #f5871f; -} -.book .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-class .hljs-title, -.book .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-class .hljs-title, -.book .book-body .page-wrapper .page-inner section.normal pre .css .hljs-rules .hljs-attribute, -.book .book-body .page-wrapper .page-inner section.normal code .css .hljs-rules .hljs-attribute { - color: #eab700; -} -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-string, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-string, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-value, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-value, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-inheritance, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-inheritance, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-header, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-header, -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-addition, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-addition, -.book .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-symbol, -.book .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-symbol, -.book .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-cdata, -.book .book-body .page-wrapper .page-inner section.normal code .xml .hljs-cdata { - color: #718c00; -} -.book .book-body .page-wrapper .page-inner section.normal pre .css .hljs-hexcolor, -.book .book-body .page-wrapper .page-inner section.normal code .css .hljs-hexcolor { - color: #3e999f; -} -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-function, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-function, -.book .book-body .page-wrapper .page-inner section.normal pre .python .hljs-decorator, -.book .book-body .page-wrapper .page-inner section.normal code .python .hljs-decorator, -.book .book-body .page-wrapper .page-inner section.normal pre .python .hljs-title, -.book .book-body .page-wrapper .page-inner section.normal code .python .hljs-title, -.book .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-function .hljs-title, -.book .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-function .hljs-title, -.book .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-title .hljs-keyword, -.book .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-title .hljs-keyword, -.book .book-body .page-wrapper .page-inner section.normal pre .perl .hljs-sub, -.book .book-body .page-wrapper .page-inner section.normal code .perl .hljs-sub, -.book .book-body .page-wrapper .page-inner section.normal pre .javascript .hljs-title, -.book .book-body .page-wrapper .page-inner section.normal code .javascript .hljs-title, -.book .book-body .page-wrapper .page-inner section.normal pre .coffeescript .hljs-title, -.book .book-body .page-wrapper .page-inner section.normal code .coffeescript .hljs-title { - color: #4271ae; -} -.book .book-body .page-wrapper .page-inner section.normal pre .hljs-keyword, -.book .book-body .page-wrapper .page-inner section.normal code .hljs-keyword, -.book .book-body .page-wrapper .page-inner section.normal pre .javascript .hljs-function, -.book .book-body .page-wrapper .page-inner section.normal code .javascript .hljs-function { - color: #8959a8; -} -.book .book-body .page-wrapper .page-inner section.normal pre .hljs, -.book .book-body .page-wrapper .page-inner section.normal code .hljs { - display: block; - background: white; - color: #4d4d4c; - padding: 0.5em; -} -.book .book-body .page-wrapper .page-inner section.normal pre .coffeescript .javascript, -.book .book-body .page-wrapper .page-inner section.normal code .coffeescript .javascript, -.book .book-body .page-wrapper .page-inner section.normal pre .javascript .xml, -.book .book-body .page-wrapper .page-inner section.normal code .javascript .xml, -.book .book-body .page-wrapper .page-inner section.normal pre .tex .hljs-formula, -.book .book-body .page-wrapper .page-inner section.normal code .tex .hljs-formula, -.book .book-body .page-wrapper .page-inner section.normal pre .xml .javascript, -.book .book-body .page-wrapper .page-inner section.normal code .xml .javascript, -.book .book-body .page-wrapper .page-inner section.normal pre .xml .vbscript, -.book .book-body .page-wrapper .page-inner section.normal code .xml .vbscript, -.book .book-body .page-wrapper .page-inner section.normal pre .xml .css, -.book .book-body .page-wrapper .page-inner section.normal code .xml .css, -.book .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-cdata, -.book .book-body .page-wrapper .page-inner section.normal code .xml .hljs-cdata { - opacity: 0.5; -} -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code { - /* - -Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull - -*/ - /* Solarized Green */ - /* Solarized Cyan */ - /* Solarized Blue */ - /* Solarized Yellow */ - /* Solarized Orange */ - /* Solarized Red */ - /* Solarized Violet */ -} -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs { - display: block; - padding: 0.5em; - background: #fdf6e3; - color: #657b83; -} -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-comment, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-comment, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-template_comment, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-template_comment, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .diff .hljs-header, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .diff .hljs-header, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-doctype, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-doctype, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-pi, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-pi, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .lisp .hljs-string, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .lisp .hljs-string, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-javadoc, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-javadoc { - color: #93a1a1; -} -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-keyword, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-keyword, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-winutils, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-winutils, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .method, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .method, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-addition, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-addition, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-tag, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .css .hljs-tag, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-request, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-request, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-status, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-status, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .nginx .hljs-title, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .nginx .hljs-title { - color: #859900; -} -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-number, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-number, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-command, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-command, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-string, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-string, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-tag .hljs-value, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-tag .hljs-value, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-rules .hljs-value, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-rules .hljs-value, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-phpdoc, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-phpdoc, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .tex .hljs-formula, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .tex .hljs-formula, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-regexp, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-regexp, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-hexcolor, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-hexcolor, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-link_url, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-link_url { - color: #2aa198; -} -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-title, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-title, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-localvars, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-localvars, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-chunk, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-chunk, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-decorator, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-decorator, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-built_in, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-built_in, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-identifier, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-identifier, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .vhdl .hljs-literal, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .vhdl .hljs-literal, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-id, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-id, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-function, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .css .hljs-function { - color: #268bd2; -} -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-attribute, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-attribute, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-variable, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-variable, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .lisp .hljs-body, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .lisp .hljs-body, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .smalltalk .hljs-number, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .smalltalk .hljs-number, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-constant, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-constant, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-class .hljs-title, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-class .hljs-title, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-parent, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-parent, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .haskell .hljs-type, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .haskell .hljs-type, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-link_reference, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-link_reference { - color: #b58900; -} -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-preprocessor, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-preprocessor, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-preprocessor .hljs-keyword, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-preprocessor .hljs-keyword, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-pragma, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-pragma, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-shebang, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-shebang, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-symbol, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-symbol, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-symbol .hljs-string, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-symbol .hljs-string, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .diff .hljs-change, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .diff .hljs-change, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-special, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-special, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-attr_selector, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-attr_selector, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-subst, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-subst, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-cdata, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-cdata, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .clojure .hljs-title, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .clojure .hljs-title, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-pseudo, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .css .hljs-pseudo, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-header, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-header { - color: #cb4b16; -} -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-deletion, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-deletion, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-important, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-important { - color: #dc322f; -} -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-link_label, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-link_label { - color: #6c71c4; -} -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .tex .hljs-formula, -.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .tex .hljs-formula { - background: #eee8d5; -} -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code { - /* Tomorrow Night Bright Theme */ - /* Original theme - https://github.com/chriskempson/tomorrow-theme */ - /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ - /* Tomorrow Comment */ - /* Tomorrow Red */ - /* Tomorrow Orange */ - /* Tomorrow Yellow */ - /* Tomorrow Green */ - /* Tomorrow Aqua */ - /* Tomorrow Blue */ - /* Tomorrow Purple */ -} -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-comment, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-comment, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-title, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-title { - color: #969896; -} -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-variable, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-variable, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-attribute, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-attribute, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-tag, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-tag, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-regexp, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-regexp, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-deletion, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-deletion, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-constant, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-constant, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-tag .hljs-title, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-tag .hljs-title, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-pi, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-pi, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-doctype, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-doctype, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .html .hljs-doctype, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .html .hljs-doctype, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-id, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-id, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-class, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-class, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-pseudo, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-pseudo { - color: #d54e53; -} -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-number, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-number, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-preprocessor, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-preprocessor, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-pragma, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-pragma, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-built_in, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-built_in, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-literal, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-literal, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-params, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-params, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-constant, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-constant { - color: #e78c45; -} -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-class .hljs-title, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-class .hljs-title, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-rules .hljs-attribute, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-rules .hljs-attribute { - color: #e7c547; -} -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-string, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-string, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-value, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-value, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-inheritance, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-inheritance, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-header, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-header, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-addition, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-addition, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-symbol, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-symbol, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-cdata, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-cdata { - color: #b9ca4a; -} -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-hexcolor, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-hexcolor { - color: #70c0b1; -} -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-function, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-function, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .python .hljs-decorator, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .python .hljs-decorator, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .python .hljs-title, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .python .hljs-title, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-function .hljs-title, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-function .hljs-title, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-title .hljs-keyword, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-title .hljs-keyword, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .perl .hljs-sub, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .perl .hljs-sub, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .javascript .hljs-title, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .javascript .hljs-title, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .coffeescript .hljs-title, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .coffeescript .hljs-title { - color: #7aa6da; -} -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-keyword, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-keyword, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .javascript .hljs-function, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .javascript .hljs-function { - color: #c397d8; -} -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs { - display: block; - background: black; - color: #eaeaea; - padding: 0.5em; -} -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .coffeescript .javascript, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .coffeescript .javascript, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .javascript .xml, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .javascript .xml, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .tex .hljs-formula, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .tex .hljs-formula, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .javascript, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .javascript, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .vbscript, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .vbscript, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .css, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .css, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-cdata, -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-cdata { - opacity: 0.5; -} diff --git a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-lunr/lunr.min.js b/docs/latest/_book/history/v1/gitbook/gitbook-plugin-lunr/lunr.min.js deleted file mode 100644 index 6aa6bc7d6..000000000 --- a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-lunr/lunr.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/** - * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 0.5.12 - * Copyright (C) 2015 Oliver Nightingale - * MIT Licensed - * @license - */ -!function(){var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.5.12",t.utils={},t.utils.warn=function(t){return function(e){t.console&&console.warn&&console.warn(e)}}(this),t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var t=Array.prototype.slice.call(arguments),e=t.pop(),n=t;if("function"!=typeof e)throw new TypeError("last argument must be a function");n.forEach(function(t){this.hasHandler(t)||(this.events[t]=[]),this.events[t].push(e)},this)},t.EventEmitter.prototype.removeListener=function(t,e){if(this.hasHandler(t)){var n=this.events[t].indexOf(e);this.events[t].splice(n,1),this.events[t].length||delete this.events[t]}},t.EventEmitter.prototype.emit=function(t){if(this.hasHandler(t)){var e=Array.prototype.slice.call(arguments,1);this.events[t].forEach(function(t){t.apply(void 0,e)})}},t.EventEmitter.prototype.hasHandler=function(t){return t in this.events},t.tokenizer=function(t){return arguments.length&&null!=t&&void 0!=t?Array.isArray(t)?t.map(function(t){return t.toLowerCase()}):t.toString().trim().toLowerCase().split(/[\s\-]+/):[]},t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.registeredFunctions[e];if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._stack.indexOf(e);if(-1==i)throw new Error("Cannot find existingFn");i+=1,this._stack.splice(i,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._stack.indexOf(e);if(-1==i)throw new Error("Cannot find existingFn");this._stack.splice(i,0,n)},t.Pipeline.prototype.remove=function(t){var e=this._stack.indexOf(t);-1!=e&&this._stack.splice(e,1)},t.Pipeline.prototype.run=function(t){for(var e=[],n=t.length,i=this._stack.length,o=0;n>o;o++){for(var r=t[o],s=0;i>s&&(r=this._stack[s](r,o,t),void 0!==r);s++);void 0!==r&&e.push(r)}return e},t.Pipeline.prototype.reset=function(){this._stack=[]},t.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Vector=function(){this._magnitude=null,this.list=void 0,this.length=0},t.Vector.Node=function(t,e,n){this.idx=t,this.val=e,this.next=n},t.Vector.prototype.insert=function(e,n){this._magnitude=void 0;var i=this.list;if(!i)return this.list=new t.Vector.Node(e,n,i),this.length++;if(en.idx?n=n.next:(i+=e.val*n.val,e=e.next,n=n.next);return i},t.Vector.prototype.similarity=function(t){return this.dot(t)/(this.magnitude()*t.magnitude())},t.SortedSet=function(){this.length=0,this.elements=[]},t.SortedSet.load=function(t){var e=new this;return e.elements=t,e.length=t.length,e},t.SortedSet.prototype.add=function(){var t,e;for(t=0;t1;){if(r===t)return o;t>r&&(e=o),r>t&&(n=o),i=n-e,o=e+Math.floor(i/2),r=this.elements[o]}return r===t?o:-1},t.SortedSet.prototype.locationFor=function(t){for(var e=0,n=this.elements.length,i=n-e,o=e+Math.floor(i/2),r=this.elements[o];i>1;)t>r&&(e=o),r>t&&(n=o),i=n-e,o=e+Math.floor(i/2),r=this.elements[o];return r>t?o:t>r?o+1:void 0},t.SortedSet.prototype.intersect=function(e){for(var n=new t.SortedSet,i=0,o=0,r=this.length,s=e.length,a=this.elements,h=e.elements;;){if(i>r-1||o>s-1)break;a[i]!==h[o]?a[i]h[o]&&o++:(n.add(a[i]),i++,o++)}return n},t.SortedSet.prototype.clone=function(){var e=new t.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},t.SortedSet.prototype.union=function(t){var e,n,i;return this.length>=t.length?(e=this,n=t):(e=t,n=this),i=e.clone(),i.add.apply(i,n.toArray()),i},t.SortedSet.prototype.toJSON=function(){return this.toArray()},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.Store,this.tokenStore=new t.TokenStore,this.corpusTokens=new t.SortedSet,this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var t=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,t)},t.Index.prototype.off=function(t,e){return this.eventEmitter.removeListener(t,e)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;return n._fields=e.fields,n._ref=e.ref,n.documentStore=t.Store.load(e.documentStore),n.tokenStore=t.TokenStore.load(e.tokenStore),n.corpusTokens=t.SortedSet.load(e.corpusTokens),n.pipeline=t.Pipeline.load(e.pipeline),n},t.Index.prototype.field=function(t,e){var e=e||{},n={name:t,boost:e.boost||1};return this._fields.push(n),this},t.Index.prototype.ref=function(t){return this._ref=t,this},t.Index.prototype.add=function(e,n){var i={},o=new t.SortedSet,r=e[this._ref],n=void 0===n?!0:n;this._fields.forEach(function(n){var r=this.pipeline.run(t.tokenizer(e[n.name]));i[n.name]=r,t.SortedSet.prototype.add.apply(o,r)},this),this.documentStore.set(r,o),t.SortedSet.prototype.add.apply(this.corpusTokens,o.toArray());for(var s=0;s0&&(i=1+Math.log(this.documentStore.length/n)),this._idfCache[e]=i},t.Index.prototype.search=function(e){var n=this.pipeline.run(t.tokenizer(e)),i=new t.Vector,o=[],r=this._fields.reduce(function(t,e){return t+e.boost},0),s=n.some(function(t){return this.tokenStore.has(t)},this);if(!s)return[];n.forEach(function(e,n,s){var a=1/s.length*this._fields.length*r,h=this,l=this.tokenStore.expand(e).reduce(function(n,o){var r=h.corpusTokens.indexOf(o),s=h.idf(o),l=1,u=new t.SortedSet;if(o!==e){var c=Math.max(3,o.length-e.length);l=1/Math.log(c)}return r>-1&&i.insert(r,a*s*l),Object.keys(h.tokenStore.get(o)).forEach(function(t){u.add(t)}),n.union(u)},new t.SortedSet);o.push(l)},this);var a=o.reduce(function(t,e){return t.intersect(e)});return a.map(function(t){return{ref:t,score:i.similarity(this.documentVector(t))}},this).sort(function(t,e){return e.score-t.score})},t.Index.prototype.documentVector=function(e){for(var n=this.documentStore.get(e),i=n.length,o=new t.Vector,r=0;i>r;r++){var s=n.elements[r],a=this.tokenStore.get(s)[e].tf,h=this.idf(s);o.insert(this.corpusTokens.indexOf(s),a*h)}return o},t.Index.prototype.toJSON=function(){return{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),tokenStore:this.tokenStore.toJSON(),corpusTokens:this.corpusTokens.toJSON(),pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(t){var e=Array.prototype.slice.call(arguments,1);e.unshift(this),t.apply(this,e)},t.Store=function(){this.store={},this.length=0},t.Store.load=function(e){var n=new this;return n.length=e.length,n.store=Object.keys(e.store).reduce(function(n,i){return n[i]=t.SortedSet.load(e.store[i]),n},{}),n},t.Store.prototype.set=function(t,e){this.has(t)||this.length++,this.store[t]=e},t.Store.prototype.get=function(t){return this.store[t]},t.Store.prototype.has=function(t){return t in this.store},t.Store.prototype.remove=function(t){this.has(t)&&(delete this.store[t],this.length--)},t.Store.prototype.toJSON=function(){return{store:this.store,length:this.length}},t.stemmer=function(){var t={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},e={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,a="^("+o+")?"+r+o+"("+r+")?$",h="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,u=new RegExp(s),c=new RegExp(h),f=new RegExp(a),d=new RegExp(l),p=/^(.+?)(ss|i)es$/,m=/^(.+?)([^s])s$/,v=/^(.+?)eed$/,y=/^(.+?)(ed|ing)$/,g=/.$/,S=/(at|bl|iz)$/,w=new RegExp("([^aeiouylsz])\\1$"),x=new RegExp("^"+o+i+"[^aeiouwxy]$"),k=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,_=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,O=/^(.+?)e$/,P=/ll$/,N=new RegExp("^"+o+i+"[^aeiouwxy]$"),T=function(n){var i,o,r,s,a,h,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,a=m,s.test(n)?n=n.replace(s,"$1$2"):a.test(n)&&(n=n.replace(a,"$1$2")),s=v,a=y,s.test(n)){var T=s.exec(n);s=u,s.test(T[1])&&(s=g,n=n.replace(s,""))}else if(a.test(n)){var T=a.exec(n);i=T[1],a=d,a.test(i)&&(n=i,a=S,h=w,l=x,a.test(n)?n+="e":h.test(n)?(s=g,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=k,s.test(n)){var T=s.exec(n);i=T[1],n=i+"i"}if(s=b,s.test(n)){var T=s.exec(n);i=T[1],o=T[2],s=u,s.test(i)&&(n=i+t[o])}if(s=E,s.test(n)){var T=s.exec(n);i=T[1],o=T[2],s=u,s.test(i)&&(n=i+e[o])}if(s=_,a=F,s.test(n)){var T=s.exec(n);i=T[1],s=c,s.test(i)&&(n=i)}else if(a.test(n)){var T=a.exec(n);i=T[1]+T[2],a=c,a.test(i)&&(n=i)}if(s=O,s.test(n)){var T=s.exec(n);i=T[1],s=c,a=f,h=N,(s.test(i)||a.test(i)&&!h.test(i))&&(n=i)}return s=P,a=c,s.test(n)&&a.test(n)&&(s=g,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return T}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==e?e:void 0},t.stopWordFilter.stopWords={a:"a",able:"able",about:"about",across:"across",after:"after",all:"all",almost:"almost",also:"also",am:"am",among:"among",an:"an",and:"and",any:"any",are:"are",as:"as",at:"at",be:"be",because:"because",been:"been",but:"but",by:"by",can:"can",cannot:"cannot",could:"could",dear:"dear",did:"did","do":"do",does:"does",either:"either","else":"else",ever:"ever",every:"every","for":"for",from:"from",get:"get",got:"got",had:"had",has:"has",have:"have",he:"he",her:"her",hers:"hers",him:"him",his:"his",how:"how",however:"however",i:"i","if":"if","in":"in",into:"into",is:"is",it:"it",its:"its",just:"just",least:"least",let:"let",like:"like",likely:"likely",may:"may",me:"me",might:"might",most:"most",must:"must",my:"my",neither:"neither",no:"no",nor:"nor",not:"not",of:"of",off:"off",often:"often",on:"on",only:"only",or:"or",other:"other",our:"our",own:"own",rather:"rather",said:"said",say:"say",says:"says",she:"she",should:"should",since:"since",so:"so",some:"some",than:"than",that:"that",the:"the",their:"their",them:"them",then:"then",there:"there",these:"these",they:"they","this":"this",tis:"tis",to:"to",too:"too",twas:"twas",us:"us",wants:"wants",was:"was",we:"we",were:"were",what:"what",when:"when",where:"where",which:"which","while":"while",who:"who",whom:"whom",why:"why",will:"will","with":"with",would:"would",yet:"yet",you:"you",your:"your"},t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(t){var e=t.replace(/^\W+/,"").replace(/\W+$/,"");return""===e?void 0:e},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.TokenStore=function(){this.root={docs:{}},this.length=0},t.TokenStore.load=function(t){var e=new this;return e.root=t.root,e.length=t.length,e},t.TokenStore.prototype.add=function(t,e,n){var n=n||this.root,i=t[0],o=t.slice(1);return i in n||(n[i]={docs:{}}),0===o.length?(n[i].docs[e.ref]=e,void(this.length+=1)):this.add(o,e,n[i])},t.TokenStore.prototype.has=function(t){if(!t)return!1;for(var e=this.root,n=0;no;o++){for(var r=t[o],s=0;i>s&&(r=this._stack[s](r,o,t),void 0!==r);s++);void 0!==r&&e.push(r)}return e},t.Pipeline.prototype.reset=function(){this._stack=[]},t.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Vector=function(){this._magnitude=null,this.list=void 0,this.length=0},t.Vector.Node=function(t,e,n){this.idx=t,this.val=e,this.next=n},t.Vector.prototype.insert=function(e,n){this._magnitude=void 0;var i=this.list;if(!i)return this.list=new t.Vector.Node(e,n,i),this.length++;if(en.idx?n=n.next:(i+=e.val*n.val,e=e.next,n=n.next);return i},t.Vector.prototype.similarity=function(t){return this.dot(t)/(this.magnitude()*t.magnitude())},t.SortedSet=function(){this.length=0,this.elements=[]},t.SortedSet.load=function(t){var e=new this;return e.elements=t,e.length=t.length,e},t.SortedSet.prototype.add=function(){var t,e;for(t=0;t1;){if(r===t)return o;t>r&&(e=o),r>t&&(n=o),i=n-e,o=e+Math.floor(i/2),r=this.elements[o]}return r===t?o:-1},t.SortedSet.prototype.locationFor=function(t){for(var e=0,n=this.elements.length,i=n-e,o=e+Math.floor(i/2),r=this.elements[o];i>1;)t>r&&(e=o),r>t&&(n=o),i=n-e,o=e+Math.floor(i/2),r=this.elements[o];return r>t?o:t>r?o+1:void 0},t.SortedSet.prototype.intersect=function(e){for(var n=new t.SortedSet,i=0,o=0,r=this.length,s=e.length,a=this.elements,h=e.elements;;){if(i>r-1||o>s-1)break;a[i]!==h[o]?a[i]h[o]&&o++:(n.add(a[i]),i++,o++)}return n},t.SortedSet.prototype.clone=function(){var e=new t.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},t.SortedSet.prototype.union=function(t){var e,n,i;return this.length>=t.length?(e=this,n=t):(e=t,n=this),i=e.clone(),i.add.apply(i,n.toArray()),i},t.SortedSet.prototype.toJSON=function(){return this.toArray()},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.Store,this.tokenStore=new t.TokenStore,this.corpusTokens=new t.SortedSet,this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var t=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,t)},t.Index.prototype.off=function(t,e){return this.eventEmitter.removeListener(t,e)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;return n._fields=e.fields,n._ref=e.ref,n.documentStore=t.Store.load(e.documentStore),n.tokenStore=t.TokenStore.load(e.tokenStore),n.corpusTokens=t.SortedSet.load(e.corpusTokens),n.pipeline=t.Pipeline.load(e.pipeline),n},t.Index.prototype.field=function(t,e){var e=e||{},n={name:t,boost:e.boost||1};return this._fields.push(n),this},t.Index.prototype.ref=function(t){return this._ref=t,this},t.Index.prototype.add=function(e,n){var i={},o=new t.SortedSet,r=e[this._ref],n=void 0===n?!0:n;this._fields.forEach(function(n){var r=this.pipeline.run(t.tokenizer(e[n.name]));i[n.name]=r,t.SortedSet.prototype.add.apply(o,r)},this),this.documentStore.set(r,o),t.SortedSet.prototype.add.apply(this.corpusTokens,o.toArray());for(var s=0;s0&&(i=1+Math.log(this.documentStore.length/n)),this._idfCache[e]=i},t.Index.prototype.search=function(e){var n=this.pipeline.run(t.tokenizer(e)),i=new t.Vector,o=[],r=this._fields.reduce(function(t,e){return t+e.boost},0),s=n.some(function(t){return this.tokenStore.has(t)},this);if(!s)return[];n.forEach(function(e,n,s){var a=1/s.length*this._fields.length*r,h=this,l=this.tokenStore.expand(e).reduce(function(n,o){var r=h.corpusTokens.indexOf(o),s=h.idf(o),l=1,u=new t.SortedSet;if(o!==e){var c=Math.max(3,o.length-e.length);l=1/Math.log(c)}return r>-1&&i.insert(r,a*s*l),Object.keys(h.tokenStore.get(o)).forEach(function(t){u.add(t)}),n.union(u)},new t.SortedSet);o.push(l)},this);var a=o.reduce(function(t,e){return t.intersect(e)});return a.map(function(t){return{ref:t,score:i.similarity(this.documentVector(t))}},this).sort(function(t,e){return e.score-t.score})},t.Index.prototype.documentVector=function(e){for(var n=this.documentStore.get(e),i=n.length,o=new t.Vector,r=0;i>r;r++){var s=n.elements[r],a=this.tokenStore.get(s)[e].tf,h=this.idf(s);o.insert(this.corpusTokens.indexOf(s),a*h)}return o},t.Index.prototype.toJSON=function(){return{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),tokenStore:this.tokenStore.toJSON(),corpusTokens:this.corpusTokens.toJSON(),pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(t){var e=Array.prototype.slice.call(arguments,1);e.unshift(this),t.apply(this,e)},t.Store=function(){this.store={},this.length=0},t.Store.load=function(e){var n=new this;return n.length=e.length,n.store=Object.keys(e.store).reduce(function(n,i){return n[i]=t.SortedSet.load(e.store[i]),n},{}),n},t.Store.prototype.set=function(t,e){this.has(t)||this.length++,this.store[t]=e},t.Store.prototype.get=function(t){return this.store[t]},t.Store.prototype.has=function(t){return t in this.store},t.Store.prototype.remove=function(t){this.has(t)&&(delete this.store[t],this.length--)},t.Store.prototype.toJSON=function(){return{store:this.store,length:this.length}},t.stemmer=function(){var t={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},e={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,a="^("+o+")?"+r+o+"("+r+")?$",h="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,u=new RegExp(s),c=new RegExp(h),f=new RegExp(a),d=new RegExp(l),p=/^(.+?)(ss|i)es$/,m=/^(.+?)([^s])s$/,v=/^(.+?)eed$/,y=/^(.+?)(ed|ing)$/,g=/.$/,S=/(at|bl|iz)$/,w=new RegExp("([^aeiouylsz])\\1$"),x=new RegExp("^"+o+i+"[^aeiouwxy]$"),k=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,_=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,O=/^(.+?)e$/,P=/ll$/,N=new RegExp("^"+o+i+"[^aeiouwxy]$"),T=function(n){var i,o,r,s,a,h,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,a=m,s.test(n)?n=n.replace(s,"$1$2"):a.test(n)&&(n=n.replace(a,"$1$2")),s=v,a=y,s.test(n)){var T=s.exec(n);s=u,s.test(T[1])&&(s=g,n=n.replace(s,""))}else if(a.test(n)){var T=a.exec(n);i=T[1],a=d,a.test(i)&&(n=i,a=S,h=w,l=x,a.test(n)?n+="e":h.test(n)?(s=g,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=k,s.test(n)){var T=s.exec(n);i=T[1],n=i+"i"}if(s=b,s.test(n)){var T=s.exec(n);i=T[1],o=T[2],s=u,s.test(i)&&(n=i+t[o])}if(s=E,s.test(n)){var T=s.exec(n);i=T[1],o=T[2],s=u,s.test(i)&&(n=i+e[o])}if(s=_,a=F,s.test(n)){var T=s.exec(n);i=T[1],s=c,s.test(i)&&(n=i)}else if(a.test(n)){var T=a.exec(n);i=T[1]+T[2],a=c,a.test(i)&&(n=i)}if(s=O,s.test(n)){var T=s.exec(n);i=T[1],s=c,a=f,h=N,(s.test(i)||a.test(i)&&!h.test(i))&&(n=i)}return s=P,a=c,s.test(n)&&a.test(n)&&(s=g,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return T}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==e?e:void 0},t.stopWordFilter.stopWords={a:"a",able:"able",about:"about",across:"across",after:"after",all:"all",almost:"almost",also:"also",am:"am",among:"among",an:"an",and:"and",any:"any",are:"are",as:"as",at:"at",be:"be",because:"because",been:"been",but:"but",by:"by",can:"can",cannot:"cannot",could:"could",dear:"dear",did:"did","do":"do",does:"does",either:"either","else":"else",ever:"ever",every:"every","for":"for",from:"from",get:"get",got:"got",had:"had",has:"has",have:"have",he:"he",her:"her",hers:"hers",him:"him",his:"his",how:"how",however:"however",i:"i","if":"if","in":"in",into:"into",is:"is",it:"it",its:"its",just:"just",least:"least",let:"let",like:"like",likely:"likely",may:"may",me:"me",might:"might",most:"most",must:"must",my:"my",neither:"neither",no:"no",nor:"nor",not:"not",of:"of",off:"off",often:"often",on:"on",only:"only",or:"or",other:"other",our:"our",own:"own",rather:"rather",said:"said",say:"say",says:"says",she:"she",should:"should",since:"since",so:"so",some:"some",than:"than",that:"that",the:"the",their:"their",them:"them",then:"then",there:"there",these:"these",they:"they","this":"this",tis:"tis",to:"to",too:"too",twas:"twas",us:"us",wants:"wants",was:"was",we:"we",were:"were",what:"what",when:"when",where:"where",which:"which","while":"while",who:"who",whom:"whom",why:"why",will:"will","with":"with",would:"would",yet:"yet",you:"you",your:"your"},t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(t){var e=t.replace(/^\W+/,"").replace(/\W+$/,"");return""===e?void 0:e},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.TokenStore=function(){this.root={docs:{}},this.length=0},t.TokenStore.load=function(t){var e=new this;return e.root=t.root,e.length=t.length,e},t.TokenStore.prototype.add=function(t,e,n){var n=n||this.root,i=t[0],o=t.slice(1);return i in n||(n[i]={docs:{}}),0===o.length?(n[i].docs[e.ref]=e,void(this.length+=1)):this.add(o,e,n[i])},t.TokenStore.prototype.has=function(t){if(!t)return!1;for(var e=this.root,n=0;n element for each result - res.results.forEach(function(res) { - var $li = $('
                                              • ', { - 'class': 'search-results-item' - }); - - var $title = $('

                                                '); - - var $link = $('', { - 'href': gitbook.state.basePath + '/' + res.url, - 'text': res.title - }); - - var content = res.body.trim(); - if (content.length > MAX_DESCRIPTION_SIZE) { - content = content.slice(0, MAX_DESCRIPTION_SIZE).trim()+'...'; - } - var $content = $('

                                                ').html(content); - - $link.appendTo($title); - $title.appendTo($li); - $content.appendTo($li); - $li.appendTo($searchList); - }); - } - - function launchSearch(q) { - // Add class for loading - $body.addClass('with-search'); - $body.addClass('search-loading'); - - // Launch search query - throttle(gitbook.search.query(q, 0, MAX_RESULTS) - .then(function(results) { - displayResults(results); - }) - .always(function() { - $body.removeClass('search-loading'); - }), 1000); - } - - function closeSearch() { - $body.removeClass('with-search'); - $bookSearchResults.removeClass('open'); - } - - function launchSearchFromQueryString() { - var q = getParameterByName('q'); - if (q && q.length > 0) { - // Update search input - $searchInput.val(q); - - // Launch search - launchSearch(q); - } - } - - function bindSearch() { - // Bind DOM - $searchInput = $('#book-search-input input'); - $bookSearchResults = $('#book-search-results'); - $searchList = $bookSearchResults.find('.search-results-list'); - $searchTitle = $bookSearchResults.find('.search-results-title'); - $searchResultsCount = $searchTitle.find('.search-results-count'); - $searchQuery = $searchTitle.find('.search-query'); - - // Launch query based on input content - function handleUpdate() { - var q = $searchInput.val(); - - if (q.length == 0) { - closeSearch(); - } - else { - launchSearch(q); - } - } - - // Detect true content change in search input - // Workaround for IE < 9 - var propertyChangeUnbound = false; - $searchInput.on('propertychange', function(e) { - if (e.originalEvent.propertyName == 'value') { - handleUpdate(); - } - }); - - // HTML5 (IE9 & others) - $searchInput.on('input', function(e) { - // Unbind propertychange event for IE9+ - if (!propertyChangeUnbound) { - $(this).unbind('propertychange'); - propertyChangeUnbound = true; - } - - handleUpdate(); - }); - - // Push to history on blur - $searchInput.on('blur', function(e) { - // Update history state - if (usePushState) { - var uri = updateQueryString('q', $(this).val()); - history.pushState({ path: uri }, null, uri); - } - }); - } - - gitbook.events.on('page.change', function() { - bindSearch(); - closeSearch(); - - // Launch search based on query parameter - if (gitbook.search.isInitialized()) { - launchSearchFromQueryString(); - } - }); - - gitbook.events.on('search.ready', function() { - bindSearch(); - - // Launch search from query param at start - launchSearchFromQueryString(); - }); - - function getParameterByName(name) { - var url = window.location.href; - name = name.replace(/[\[\]]/g, '\\$&'); - var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)', 'i'), - results = regex.exec(url); - if (!results) return null; - if (!results[2]) return ''; - return decodeURIComponent(results[2].replace(/\+/g, ' ')); - } - - function updateQueryString(key, value) { - value = encodeURIComponent(value); - - var url = window.location.href; - var re = new RegExp('([?&])' + key + '=.*?(&|#|$)(.*)', 'gi'), - hash; - - if (re.test(url)) { - if (typeof value !== 'undefined' && value !== null) - return url.replace(re, '$1' + key + '=' + value + '$2$3'); - else { - hash = url.split('#'); - url = hash[0].replace(re, '$1$3').replace(/(&|\?)$/, ''); - if (typeof hash[1] !== 'undefined' && hash[1] !== null) - url += '#' + hash[1]; - return url; - } - } - else { - if (typeof value !== 'undefined' && value !== null) { - var separator = url.indexOf('?') !== -1 ? '&' : '?'; - hash = url.split('#'); - url = hash[0] + separator + key + '=' + value; - if (typeof hash[1] !== 'undefined' && hash[1] !== null) - url += '#' + hash[1]; - return url; - } - else - return url; - } - } -}); diff --git a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-sharing/buttons.js b/docs/latest/_book/history/v1/gitbook/gitbook-plugin-sharing/buttons.js deleted file mode 100644 index 709a4e4c0..000000000 --- a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-sharing/buttons.js +++ /dev/null @@ -1,90 +0,0 @@ -require(['gitbook', 'jquery'], function(gitbook, $) { - var SITES = { - 'facebook': { - 'label': 'Facebook', - 'icon': 'fa fa-facebook', - 'onClick': function(e) { - e.preventDefault(); - window.open('http://www.facebook.com/sharer/sharer.php?s=100&p[url]='+encodeURIComponent(location.href)); - } - }, - 'twitter': { - 'label': 'Twitter', - 'icon': 'fa fa-twitter', - 'onClick': function(e) { - e.preventDefault(); - window.open('http://twitter.com/home?status='+encodeURIComponent(document.title+' '+location.href)); - } - }, - 'google': { - 'label': 'Google+', - 'icon': 'fa fa-google-plus', - 'onClick': function(e) { - e.preventDefault(); - window.open('https://plus.google.com/share?url='+encodeURIComponent(location.href)); - } - }, - 'weibo': { - 'label': 'Weibo', - 'icon': 'fa fa-weibo', - 'onClick': function(e) { - e.preventDefault(); - window.open('http://service.weibo.com/share/share.php?content=utf-8&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)); - } - }, - 'instapaper': { - 'label': 'Instapaper', - 'icon': 'fa fa-instapaper', - 'onClick': function(e) { - e.preventDefault(); - window.open('http://www.instapaper.com/text?u='+encodeURIComponent(location.href)); - } - }, - 'vk': { - 'label': 'VK', - 'icon': 'fa fa-vk', - 'onClick': function(e) { - e.preventDefault(); - window.open('http://vkontakte.ru/share.php?url='+encodeURIComponent(location.href)); - } - } - }; - - - - gitbook.events.bind('start', function(e, config) { - var opts = config.sharing; - - // Create dropdown menu - var menu = $.map(opts.all, function(id) { - var site = SITES[id]; - - return { - text: site.label, - onClick: site.onClick - }; - }); - - // Create main button with dropdown - if (menu.length > 0) { - gitbook.toolbar.createButton({ - icon: 'fa fa-share-alt', - label: 'Share', - position: 'right', - dropdown: [menu] - }); - } - - // Direct actions to share - $.each(SITES, function(sideId, site) { - if (!opts[sideId]) return; - - gitbook.toolbar.createButton({ - icon: site.icon, - label: site.text, - position: 'right', - onClick: site.onClick - }); - }); - }); -}); diff --git a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-theme-cornerstone/cornerstone.css b/docs/latest/_book/history/v1/gitbook/gitbook-plugin-theme-cornerstone/cornerstone.css deleted file mode 100644 index 9b1bfa032..000000000 --- a/docs/latest/_book/history/v1/gitbook/gitbook-plugin-theme-cornerstone/cornerstone.css +++ /dev/null @@ -1,227 +0,0 @@ -@import url('https://fonts.googleapis.com/css?family=Roboto+Mono|Source+Sans+Pro:300,400,600'); - -body { - letter-spacing: 0; - color: #34495e; - font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif; - font-size: 16px; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - color: #34495e; - background-color: #fff; - margin: 0; -} - -/* LANGS.md index page */ -.book-langs-index { - font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif; -} -.book-langs-index .inner .languages { - padding: 20px 0px; -} -.book-langs-index .inner .languages li { - float: none; -} -li a { - color: #42b983; - font-weight: 600; -} - -/* set correct fonts on sidebar and main page */ -.book .book-body .page-wrapper .page-inner section.normal, .book-summary { font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif; } - -/* sidebar */ -.book-summary ul.summary li a, -.book-summary ul.summary li span { - color: #7f8c8d; - font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif; -} -.book .book-summary ul.summary li span { - opacity: 0.6; - cursor: not-allowed; -} -.book-summary ul.summary li.active>a { - color: #42b983; - font-weight: 600; -} -#book-search-input { background-color: #fafafa; } -.book-summary { background-color: #fff; } - -/* markdown content found on pages */ -.markdown-section h1, -.markdown-section h2, -.markdown-section h3, -.markdown-section h4, -.markdown-section strong { - font-weight: 600; - color: #2c3e50; -} -.markdown-section a { - color: #42b983; - font-weight: 600; -} -.markdown-section p, -.markdown-section ul, -.markdown-section ol { - word-spacing: 0.05em; -} -.markdown-section em { - color: #7f8c8d; -} - -.markdown-section pre { - padding: 1.2em 1.4em; - line-height: 1.5em; - margin: 0; -} - -.markdown-section code, .markdown-section pre { - font-family: 'Roboto Mono', Monaco, courier, monospace; - -webkit-font-smoothing: initial; - -moz-osx-font-smoothing: initial; - background-color: #f8f8f8; -} -code span.css, -code span.javascript, -code span.html, -span[class^="hljs-"] { - -webkit-font-smoothing: initial; - -moz-osx-font-smoothing: initial; -} -.markdown-section pre>code { - font-size: 1em; - display: block; -} -.markdown-section code:after, .markdown-section code:before { - content: none; - letter-spacing: 0.05em; -} - -code, pre { - font-family: 'Roboto Mono', Monaco, courier, monospace; - font-size: 0.8em; - background-color: #f8f8f8; - -webkit-font-smoothing: initial; - -moz-osx-font-smoothing: initial; -} -code { - color: #e96900; - padding: 3px 5px; - margin: 0 2px; - border-radius: 2px; - white-space: nowrap; -} - -code .token { - min-height: 1.5em; - -webkit-font-smoothing: initial; - -moz-osx-font-smoothing: initial; -} -pre code { position: relative; } -pre code.lang-html:after, -pre code.lang-js:after, -pre code.lang-bash:after, -pre code.lang-css:after { - position: absolute; - top: 0; - right: 0; - color: #ccc; - text-align: right; - font-size: 0.75em; - padding: 5px 10px 0; - line-height: 15px; - height: 15px; - font-weight: 600; -} -pre code.lang-html:after { - content: 'HTML'; -} -pre code.lang-js:after { - content: 'JS'; -} -pre code.lang-bash:after { - content: 'Shell'; -} -pre code.lang-css:after { - content: 'CSS'; -} -.content img { - max-width: 100%; -} -.content span.light { - color: #7f8c8d; -} -.content span.info { - font-size: 0.85em; - display: inline-block; - vertical-align: middle; - width: 280px; - margin-left: 20px; -} -.markdown-section h1 { - margin: 0 0 1em; -} -.markdown-section h2 { - margin: 45px 0 0.8em; - padding-bottom: 0.7em; - border-bottom: 1px solid #ddd; -} -.markdown-section h3 { - margin: 52px 0 1.2em; -} -.markdown-section figure, -.markdown-section p, -.markdown-section ul, -.markdown-section ol { - margin: 1.2em 0; -} -.markdown-section p, -.markdown-section ul, -.markdown-section ol { - line-height: 1.6em; -} -.markdown-section ul, -.markdown-section ol { - padding-left: 1.5em; -} -.markdown-section a { - color: #42b983; - font-weight: 600; -} -.markdown-section blockquote { - margin: 2em 0; - padding-left: 20px; - border-left: 4px solid #42b983; -} -.markdown-section blockquote p { - font-weight: 600; - margin-left: 0; -} -.markdown-section iframe { - margin: 1em 0; -} - -/* these aren't in gitbook at the moment, but leaving them in for future reference */ -img { - border: none; -} -.highlight { - overflow-x: auto; - position: relative; - padding: 0; - background-color: #f8f8f8; - padding: 0.8em 0.8em 0.4em; - line-height: 1.1em; - border-radius: 2px; -} -.highlight table, -.highlight tr, -.highlight td { - width: 100%; - border-collapse: collapse; - padding: 0; - margin: 0; -} -.highlight .gutter { - width: 1.5em; -} diff --git a/docs/latest/_book/history/v1/gitbook/gitbook.js b/docs/latest/_book/history/v1/gitbook/gitbook.js deleted file mode 100644 index 13077b45c..000000000 --- a/docs/latest/_book/history/v1/gitbook/gitbook.js +++ /dev/null @@ -1,4 +0,0 @@ -!function e(t,n,r){function o(s,a){if(!n[s]){if(!t[s]){var u="function"==typeof require&&require;if(!a&&u)return u(s,!0);if(i)return i(s,!0);var c=new Error("Cannot find module '"+s+"'");throw c.code="MODULE_NOT_FOUND",c}var l=n[s]={exports:{}};t[s][0].call(l.exports,function(e){var n=t[s][1][e];return o(n?n:e)},l,l.exports,e,t,n,r)}return n[s].exports}for(var i="function"==typeof require&&require,s=0;s0&&t-1 in e)}function o(e,t,n){return de.isFunction(t)?de.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?de.grep(e,function(e){return e===t!==n}):"string"!=typeof t?de.grep(e,function(e){return se.call(t,e)>-1!==n}):je.test(t)?de.filter(t,e,n):(t=de.filter(t,e),de.grep(e,function(e){return se.call(t,e)>-1!==n&&1===e.nodeType}))}function i(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}function s(e){var t={};return de.each(e.match(qe)||[],function(e,n){t[n]=!0}),t}function a(e){return e}function u(e){throw e}function c(e,t,n){var r;try{e&&de.isFunction(r=e.promise)?r.call(e).done(t).fail(n):e&&de.isFunction(r=e.then)?r.call(e,t,n):t.call(void 0,e)}catch(e){n.call(void 0,e)}}function l(){te.removeEventListener("DOMContentLoaded",l),e.removeEventListener("load",l),de.ready()}function f(){this.expando=de.expando+f.uid++}function p(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:Ie.test(e)?JSON.parse(e):e)}function h(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(Pe,"-$&").toLowerCase(),n=e.getAttribute(r),"string"==typeof n){try{n=p(n)}catch(e){}Re.set(e,t,n)}else n=void 0;return n}function d(e,t,n,r){var o,i=1,s=20,a=r?function(){return r.cur()}:function(){return de.css(e,t,"")},u=a(),c=n&&n[3]||(de.cssNumber[t]?"":"px"),l=(de.cssNumber[t]||"px"!==c&&+u)&&$e.exec(de.css(e,t));if(l&&l[3]!==c){c=c||l[3],n=n||[],l=+u||1;do i=i||".5",l/=i,de.style(e,t,l+c);while(i!==(i=a()/u)&&1!==i&&--s)}return n&&(l=+l||+u||0,o=n[1]?l+(n[1]+1)*n[2]:+n[2],r&&(r.unit=c,r.start=l,r.end=o)),o}function g(e){var t,n=e.ownerDocument,r=e.nodeName,o=Ue[r];return o?o:(t=n.body.appendChild(n.createElement(r)),o=de.css(t,"display"),t.parentNode.removeChild(t),"none"===o&&(o="block"),Ue[r]=o,o)}function m(e,t){for(var n,r,o=[],i=0,s=e.length;i-1)o&&o.push(i);else if(c=de.contains(i.ownerDocument,i),s=v(f.appendChild(i),"script"),c&&y(s),n)for(l=0;i=s[l++];)Ve.test(i.type||"")&&n.push(i);return f}function b(){return!0}function w(){return!1}function T(){try{return te.activeElement}catch(e){}}function C(e,t,n,r,o,i){var s,a;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(a in t)C(e,a,n,r,t[a],i);return e}if(null==r&&null==o?(o=n,r=n=void 0):null==o&&("string"==typeof n?(o=r,r=void 0):(o=r,r=n,n=void 0)),o===!1)o=w;else if(!o)return e;return 1===i&&(s=o,o=function(e){return de().off(e),s.apply(this,arguments)},o.guid=s.guid||(s.guid=de.guid++)),e.each(function(){de.event.add(this,t,o,r,n)})}function j(e,t){return de.nodeName(e,"table")&&de.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e:e}function k(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function E(e){var t=rt.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function S(e,t){var n,r,o,i,s,a,u,c;if(1===t.nodeType){if(Fe.hasData(e)&&(i=Fe.access(e),s=Fe.set(t,i),c=i.events)){delete s.handle,s.events={};for(o in c)for(n=0,r=c[o].length;n1&&"string"==typeof d&&!pe.checkClone&&nt.test(d))return e.each(function(n){var i=e.eq(n);g&&(t[0]=d.call(this,n,i.html())),A(i,t,r,o)});if(p&&(i=x(t,e[0].ownerDocument,!1,e,o),s=i.firstChild,1===i.childNodes.length&&(i=s),s||o)){for(a=de.map(v(i,"script"),k),u=a.length;f=0&&nC.cacheLength&&delete e[t.shift()],e[n+" "]=r}var t=[];return e}function r(e){return e[$]=!0,e}function o(e){var t=L.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function i(e,t){for(var n=e.split("|"),r=n.length;r--;)C.attrHandle[n[r]]=t}function s(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function a(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function u(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function c(e){return function(t){return"form"in t?t.parentNode&&t.disabled===!1?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&je(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function l(e){return r(function(t){return t=+t,r(function(n,r){for(var o,i=e([],n.length,t),s=i.length;s--;)n[o=i[s]]&&(n[o]=!(r[o]=n[o]))})})}function f(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function p(){}function h(e){for(var t=0,n=e.length,r="";t1?function(t,n,r){for(var o=e.length;o--;)if(!e[o](t,n,r))return!1;return!0}:e[0]}function m(e,n,r){for(var o=0,i=n.length;o-1&&(r[c]=!(s[c]=f))}}else x=v(x===s?x.splice(d,x.length):x),i?i(null,s,x,u):K.apply(s,x)})}function x(e){for(var t,n,r,o=e.length,i=C.relative[e[0].type],s=i||C.relative[" "],a=i?1:0,u=d(function(e){return e===t},s,!0),c=d(function(e){return ee(t,e)>-1},s,!0),l=[function(e,n,r){var o=!i&&(r||n!==A)||((t=n).nodeType?u(e,n,r):c(e,n,r));return t=null,o}];a1&&g(l),a>1&&h(e.slice(0,a-1).concat({value:" "===e[a-2].type?"*":""})).replace(ae,"$1"),n,a0,i=e.length>0,s=function(r,s,a,u,c){var l,f,p,h=0,d="0",g=r&&[],m=[],y=A,x=r||i&&C.find.TAG("*",c),b=B+=null==y?1:Math.random()||.1,w=x.length;for(c&&(A=s===L||s||c);d!==w&&null!=(l=x[d]);d++){if(i&&l){for(f=0,s||l.ownerDocument===L||(O(l),a=!F);p=e[f++];)if(p(l,s||L,a)){u.push(l);break}c&&(B=b)}o&&((l=!p&&l)&&h--,r&&g.push(l))}if(h+=d,o&&d!==h){for(f=0;p=n[f++];)p(g,m,s,a);if(r){if(h>0)for(;d--;)g[d]||m[d]||(m[d]=Q.call(u));m=v(m)}K.apply(u,m),c&&!r&&m.length>0&&h+n.length>1&&t.uniqueSort(u)}return c&&(B=b,A=y),g};return o?r(s):s}var w,T,C,j,k,E,S,N,A,q,D,O,L,H,F,R,I,P,M,$="sizzle"+1*new Date,W=e.document,B=0,_=0,U=n(),z=n(),X=n(),V=function(e,t){return e===t&&(D=!0),0},G={}.hasOwnProperty,Y=[],Q=Y.pop,J=Y.push,K=Y.push,Z=Y.slice,ee=function(e,t){for(var n=0,r=e.length;n+~]|"+ne+")"+ne+"*"),le=new RegExp("="+ne+"*([^\\]'\"]*?)"+ne+"*\\]","g"),fe=new RegExp(ie),pe=new RegExp("^"+re+"$"),he={ID:new RegExp("^#("+re+")"),CLASS:new RegExp("^\\.("+re+")"),TAG:new RegExp("^("+re+"|[*])"),ATTR:new RegExp("^"+oe),PSEUDO:new RegExp("^"+ie),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ne+"*(even|odd|(([+-]|)(\\d*)n|)"+ne+"*(?:([+-]|)"+ne+"*(\\d+)|))"+ne+"*\\)|)","i"),bool:new RegExp("^(?:"+te+")$","i"),needsContext:new RegExp("^"+ne+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ne+"*((?:-\\d)?\\d*)"+ne+"*\\)|)(?=[^-]|$)","i")},de=/^(?:input|select|textarea|button)$/i,ge=/^h\d$/i,me=/^[^{]+\{\s*\[native \w/,ve=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ye=/[+~]/,xe=new RegExp("\\\\([\\da-f]{1,6}"+ne+"?|("+ne+")|.)","ig"),be=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},we=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,Te=function(e,t){return t?"\0"===e?"๏ฟฝ":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},Ce=function(){O()},je=d(function(e){return e.disabled===!0&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{K.apply(Y=Z.call(W.childNodes),W.childNodes),Y[W.childNodes.length].nodeType}catch(e){K={apply:Y.length?function(e,t){J.apply(e,Z.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}T=t.support={},k=t.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},O=t.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:W;return r!==L&&9===r.nodeType&&r.documentElement?(L=r,H=L.documentElement,F=!k(L),W!==L&&(n=L.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",Ce,!1):n.attachEvent&&n.attachEvent("onunload",Ce)),T.attributes=o(function(e){return e.className="i",!e.getAttribute("className")}),T.getElementsByTagName=o(function(e){return e.appendChild(L.createComment("")),!e.getElementsByTagName("*").length}),T.getElementsByClassName=me.test(L.getElementsByClassName),T.getById=o(function(e){return H.appendChild(e).id=$,!L.getElementsByName||!L.getElementsByName($).length}),T.getById?(C.filter.ID=function(e){var t=e.replace(xe,be);return function(e){return e.getAttribute("id")===t}},C.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&F){var n=t.getElementById(e);return n?[n]:[]}}):(C.filter.ID=function(e){var t=e.replace(xe,be);return function(e){var n="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},C.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&F){var n,r,o,i=t.getElementById(e);if(i){if(n=i.getAttributeNode("id"),n&&n.value===e)return[i];for(o=t.getElementsByName(e),r=0;i=o[r++];)if(n=i.getAttributeNode("id"),n&&n.value===e)return[i]}return[]}}),C.find.TAG=T.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):T.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],o=0,i=t.getElementsByTagName(e);if("*"===e){for(;n=i[o++];)1===n.nodeType&&r.push(n);return r}return i},C.find.CLASS=T.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&F)return t.getElementsByClassName(e)},I=[],R=[],(T.qsa=me.test(L.querySelectorAll))&&(o(function(e){H.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&R.push("[*^$]="+ne+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||R.push("\\["+ne+"*(?:value|"+te+")"),e.querySelectorAll("[id~="+$+"-]").length||R.push("~="),e.querySelectorAll(":checked").length||R.push(":checked"),e.querySelectorAll("a#"+$+"+*").length||R.push(".#.+[+~]")}),o(function(e){e.innerHTML="";var t=L.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&R.push("name"+ne+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&R.push(":enabled",":disabled"),H.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&R.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),R.push(",.*:")})),(T.matchesSelector=me.test(P=H.matches||H.webkitMatchesSelector||H.mozMatchesSelector||H.oMatchesSelector||H.msMatchesSelector))&&o(function(e){T.disconnectedMatch=P.call(e,"*"),P.call(e,"[s!='']:x"),I.push("!=",ie)}),R=R.length&&new RegExp(R.join("|")),I=I.length&&new RegExp(I.join("|")),t=me.test(H.compareDocumentPosition),M=t||me.test(H.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},V=t?function(e,t){if(e===t)return D=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n?n:(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1,1&n||!T.sortDetached&&t.compareDocumentPosition(e)===n?e===L||e.ownerDocument===W&&M(W,e)?-1:t===L||t.ownerDocument===W&&M(W,t)?1:q?ee(q,e)-ee(q,t):0:4&n?-1:1)}:function(e,t){if(e===t)return D=!0,0;var n,r=0,o=e.parentNode,i=t.parentNode,a=[e],u=[t];if(!o||!i)return e===L?-1:t===L?1:o?-1:i?1:q?ee(q,e)-ee(q,t):0;if(o===i)return s(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)u.unshift(n);for(;a[r]===u[r];)r++;return r?s(a[r],u[r]):a[r]===W?-1:u[r]===W?1:0},L):L},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if((e.ownerDocument||e)!==L&&O(e),n=n.replace(le,"='$1']"),T.matchesSelector&&F&&!X[n+" "]&&(!I||!I.test(n))&&(!R||!R.test(n)))try{var r=P.call(e,n);if(r||T.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return t(n,L,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!==L&&O(e),M(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!==L&&O(e);var n=C.attrHandle[t.toLowerCase()],r=n&&G.call(C.attrHandle,t.toLowerCase())?n(e,t,!F):void 0;return void 0!==r?r:T.attributes||!F?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},t.escape=function(e){return(e+"").replace(we,Te)},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],r=0,o=0;if(D=!T.detectDuplicates,q=!T.sortStable&&e.slice(0),e.sort(V),D){for(;t=e[o++];)t===e[o]&&(r=n.push(o));for(;r--;)e.splice(n[r],1)}return q=null,e},j=t.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=j(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=j(t);return n},C=t.selectors={cacheLength:50,createPseudo:r,match:he,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(xe,be),e[3]=(e[3]||e[4]||e[5]||"").replace(xe,be),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return he.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&fe.test(n)&&(t=E(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(xe,be).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=U[e+" "];return t||(t=new RegExp("(^|"+ne+")"+e+"("+ne+"|$)"))&&U(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,n,r){return function(o){var i=t.attr(o,e);return null==i?"!="===n:!n||(i+="","="===n?i===r:"!="===n?i!==r:"^="===n?r&&0===i.indexOf(r):"*="===n?r&&i.indexOf(r)>-1:"$="===n?r&&i.slice(-r.length)===r:"~="===n?(" "+i.replace(se," ")+" ").indexOf(r)>-1:"|="===n&&(i===r||i.slice(0,r.length+1)===r+"-"))}},CHILD:function(e,t,n,r,o){var i="nth"!==e.slice(0,3),s="last"!==e.slice(-4),a="of-type"===t;return 1===r&&0===o?function(e){return!!e.parentNode}:function(t,n,u){var c,l,f,p,h,d,g=i!==s?"nextSibling":"previousSibling",m=t.parentNode,v=a&&t.nodeName.toLowerCase(),y=!u&&!a,x=!1;if(m){if(i){for(;g;){for(p=t;p=p[g];)if(a?p.nodeName.toLowerCase()===v:1===p.nodeType)return!1;d=g="only"===e&&!d&&"nextSibling"}return!0}if(d=[s?m.firstChild:m.lastChild],s&&y){for(p=m,f=p[$]||(p[$]={}),l=f[p.uniqueID]||(f[p.uniqueID]={}),c=l[e]||[],h=c[0]===B&&c[1],x=h&&c[2],p=h&&m.childNodes[h];p=++h&&p&&p[g]||(x=h=0)||d.pop();)if(1===p.nodeType&&++x&&p===t){l[e]=[B,h,x];break}}else if(y&&(p=t,f=p[$]||(p[$]={}),l=f[p.uniqueID]||(f[p.uniqueID]={}),c=l[e]||[],h=c[0]===B&&c[1],x=h),x===!1)for(;(p=++h&&p&&p[g]||(x=h=0)||d.pop())&&((a?p.nodeName.toLowerCase()!==v:1!==p.nodeType)||!++x||(y&&(f=p[$]||(p[$]={}),l=f[p.uniqueID]||(f[p.uniqueID]={}),l[e]=[B,x]),p!==t)););return x-=o,x===r||x%r===0&&x/r>=0}}},PSEUDO:function(e,n){var o,i=C.pseudos[e]||C.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return i[$]?i(n):i.length>1?(o=[e,e,"",n],C.setFilters.hasOwnProperty(e.toLowerCase())?r(function(e,t){for(var r,o=i(e,n),s=o.length;s--;)r=ee(e,o[s]),e[r]=!(t[r]=o[s])}):function(e){return i(e,0,o)}):i}},pseudos:{not:r(function(e){var t=[],n=[],o=S(e.replace(ae,"$1"));return o[$]?r(function(e,t,n,r){for(var i,s=o(e,null,r,[]),a=e.length;a--;)(i=s[a])&&(e[a]=!(t[a]=i))}):function(e,r,i){return t[0]=e,o(t,null,i,n),t[0]=null,!n.pop()}}),has:r(function(e){return function(n){ -return t(e,n).length>0}}),contains:r(function(e){return e=e.replace(xe,be),function(t){return(t.textContent||t.innerText||j(t)).indexOf(e)>-1}}),lang:r(function(e){return pe.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(xe,be).toLowerCase(),function(t){var n;do if(n=F?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===H},focus:function(e){return e===L.activeElement&&(!L.hasFocus||L.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:c(!1),disabled:c(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!C.pseudos.empty(e)},header:function(e){return ge.test(e.nodeName)},input:function(e){return de.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:l(function(){return[0]}),last:l(function(e,t){return[t-1]}),eq:l(function(e,t,n){return[n<0?n+t:n]}),even:l(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:l(function(e,t,n){for(var r=n<0?n+t:n;++r2&&"ID"===(s=i[0]).type&&9===t.nodeType&&F&&C.relative[i[1].type]){if(t=(C.find.ID(s.matches[0].replace(xe,be),t)||[])[0],!t)return n;c&&(t=t.parentNode),e=e.slice(i.shift().value.length)}for(o=he.needsContext.test(e)?0:i.length;o--&&(s=i[o],!C.relative[a=s.type]);)if((u=C.find[a])&&(r=u(s.matches[0].replace(xe,be),ye.test(i[0].type)&&f(t.parentNode)||t))){if(i.splice(o,1),e=r.length&&h(i),!e)return K.apply(n,r),n;break}}return(c||S(e,l))(r,t,!F,n,!t||ye.test(e)&&f(t.parentNode)||t),n},T.sortStable=$.split("").sort(V).join("")===$,T.detectDuplicates=!!D,O(),T.sortDetached=o(function(e){return 1&e.compareDocumentPosition(L.createElement("fieldset"))}),o(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||i("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),T.attributes&&o(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||i("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),o(function(e){return null==e.getAttribute("disabled")})||i(te,function(e,t,n){var r;if(!n)return e[t]===!0?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),t}(e);de.find=xe,de.expr=xe.selectors,de.expr[":"]=de.expr.pseudos,de.uniqueSort=de.unique=xe.uniqueSort,de.text=xe.getText,de.isXMLDoc=xe.isXML,de.contains=xe.contains,de.escapeSelector=xe.escape;var be=function(e,t,n){for(var r=[],o=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(o&&de(e).is(n))break;r.push(e)}return r},we=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},Te=de.expr.match.needsContext,Ce=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,je=/^.[^:#\[\.,]*$/;de.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?de.find.matchesSelector(r,e)?[r]:[]:de.find.matches(e,de.grep(t,function(e){return 1===e.nodeType}))},de.fn.extend({find:function(e){var t,n,r=this.length,o=this;if("string"!=typeof e)return this.pushStack(de(e).filter(function(){for(t=0;t1?de.uniqueSort(n):n},filter:function(e){return this.pushStack(o(this,e||[],!1))},not:function(e){return this.pushStack(o(this,e||[],!0))},is:function(e){return!!o(this,"string"==typeof e&&Te.test(e)?de(e):e||[],!1).length}});var ke,Ee=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,Se=de.fn.init=function(e,t,n){var r,o;if(!e)return this;if(n=n||ke,"string"==typeof e){if(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:Ee.exec(e),!r||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof de?t[0]:t,de.merge(this,de.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:te,!0)),Ce.test(r[1])&&de.isPlainObject(t))for(r in t)de.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return o=te.getElementById(r[2]),o&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):de.isFunction(e)?void 0!==n.ready?n.ready(e):e(de):de.makeArray(e,this)};Se.prototype=de.fn,ke=de(te);var Ne=/^(?:parents|prev(?:Until|All))/,Ae={children:!0,contents:!0,next:!0,prev:!0};de.fn.extend({has:function(e){var t=de(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&de.find.matchesSelector(n,e))){i.push(n);break}return this.pushStack(i.length>1?de.uniqueSort(i):i)},index:function(e){return e?"string"==typeof e?se.call(de(e),this[0]):se.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(de.uniqueSort(de.merge(this.get(),de(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),de.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return be(e,"parentNode")},parentsUntil:function(e,t,n){return be(e,"parentNode",n)},next:function(e){return i(e,"nextSibling")},prev:function(e){return i(e,"previousSibling")},nextAll:function(e){return be(e,"nextSibling")},prevAll:function(e){return be(e,"previousSibling")},nextUntil:function(e,t,n){return be(e,"nextSibling",n)},prevUntil:function(e,t,n){return be(e,"previousSibling",n)},siblings:function(e){return we((e.parentNode||{}).firstChild,e)},children:function(e){return we(e.firstChild)},contents:function(e){return e.contentDocument||de.merge([],e.childNodes)}},function(e,t){de.fn[e]=function(n,r){var o=de.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(o=de.filter(r,o)),this.length>1&&(Ae[e]||de.uniqueSort(o),Ne.test(e)&&o.reverse()),this.pushStack(o)}});var qe=/[^\x20\t\r\n\f]+/g;de.Callbacks=function(e){e="string"==typeof e?s(e):de.extend({},e);var t,n,r,o,i=[],a=[],u=-1,c=function(){for(o=e.once,r=t=!0;a.length;u=-1)for(n=a.shift();++u-1;)i.splice(n,1),n<=u&&u--}),this},has:function(e){return e?de.inArray(e,i)>-1:i.length>0},empty:function(){return i&&(i=[]),this},disable:function(){return o=a=[],i=n="",this},disabled:function(){return!i},lock:function(){return o=a=[],n||t||(i=n=""),this},locked:function(){return!!o},fireWith:function(e,n){return o||(n=n||[],n=[e,n.slice?n.slice():n],a.push(n),t||c()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},de.extend({Deferred:function(t){var n=[["notify","progress",de.Callbacks("memory"),de.Callbacks("memory"),2],["resolve","done",de.Callbacks("once memory"),de.Callbacks("once memory"),0,"resolved"],["reject","fail",de.Callbacks("once memory"),de.Callbacks("once memory"),1,"rejected"]],r="pending",o={state:function(){return r},always:function(){return i.done(arguments).fail(arguments),this},catch:function(e){return o.then(null,e)},pipe:function(){var e=arguments;return de.Deferred(function(t){de.each(n,function(n,r){var o=de.isFunction(e[r[4]])&&e[r[4]];i[r[1]](function(){var e=o&&o.apply(this,arguments);e&&de.isFunction(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,o?[e]:arguments)})}),e=null}).promise()},then:function(t,r,o){function i(t,n,r,o){return function(){var c=this,l=arguments,f=function(){var e,f;if(!(t=s&&(r!==u&&(c=void 0,l=[e]),n.rejectWith(c,l))}};t?p():(de.Deferred.getStackHook&&(p.stackTrace=de.Deferred.getStackHook()),e.setTimeout(p))}}var s=0;return de.Deferred(function(e){n[0][3].add(i(0,e,de.isFunction(o)?o:a,e.notifyWith)),n[1][3].add(i(0,e,de.isFunction(t)?t:a)),n[2][3].add(i(0,e,de.isFunction(r)?r:u))}).promise()},promise:function(e){return null!=e?de.extend(e,o):o}},i={};return de.each(n,function(e,t){var s=t[2],a=t[5];o[t[1]]=s.add,a&&s.add(function(){r=a},n[3-e][2].disable,n[0][2].lock),s.add(t[3].fire),i[t[0]]=function(){return i[t[0]+"With"](this===i?void 0:this,arguments),this},i[t[0]+"With"]=s.fireWith}),o.promise(i),t&&t.call(i,i),i},when:function(e){var t=arguments.length,n=t,r=Array(n),o=re.call(arguments),i=de.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?re.call(arguments):n,--t||i.resolveWith(r,o)}};if(t<=1&&(c(e,i.done(s(n)).resolve,i.reject),"pending"===i.state()||de.isFunction(o[n]&&o[n].then)))return i.then();for(;n--;)c(o[n],s(n),i.reject);return i.promise()}});var De=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;de.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&De.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},de.readyException=function(t){e.setTimeout(function(){throw t})};var Oe=de.Deferred();de.fn.ready=function(e){return Oe.then(e).catch(function(e){de.readyException(e)}),this},de.extend({isReady:!1,readyWait:1,holdReady:function(e){e?de.readyWait++:de.ready(!0)},ready:function(e){(e===!0?--de.readyWait:de.isReady)||(de.isReady=!0,e!==!0&&--de.readyWait>0||Oe.resolveWith(te,[de]))}}),de.ready.then=Oe.then,"complete"===te.readyState||"loading"!==te.readyState&&!te.documentElement.doScroll?e.setTimeout(de.ready):(te.addEventListener("DOMContentLoaded",l),e.addEventListener("load",l));var Le=function(e,t,n,r,o,i,s){var a=0,u=e.length,c=null==n;if("object"===de.type(n)){o=!0;for(a in n)Le(e,t,a,n[a],!0,i,s)}else if(void 0!==r&&(o=!0,de.isFunction(r)||(s=!0),c&&(s?(t.call(e,r),t=null):(c=t,t=function(e,t,n){return c.call(de(e),n)})),t))for(;a1,null,!0)},removeData:function(e){return this.each(function(){Re.remove(this,e)})}}),de.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Fe.get(e,t),n&&(!r||de.isArray(n)?r=Fe.access(e,t,de.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=de.queue(e,t),r=n.length,o=n.shift(),i=de._queueHooks(e,t),s=function(){de.dequeue(e,t)};"inprogress"===o&&(o=n.shift(),r--),o&&("fx"===t&&n.unshift("inprogress"),delete i.stop,o.call(e,s,i)),!r&&i&&i.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Fe.get(e,n)||Fe.access(e,n,{empty:de.Callbacks("once memory").add(function(){Fe.remove(e,[t+"queue",n])})})}}),de.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]+)/i,Ve=/^$|\/(?:java|ecma)script/i,Ge={option:[1,""],thead:[1,"","
                                                "],col:[2,"","
                                                "],tr:[2,"","
                                                "],td:[3,"","
                                                "],_default:[0,"",""]};Ge.optgroup=Ge.option,Ge.tbody=Ge.tfoot=Ge.colgroup=Ge.caption=Ge.thead,Ge.th=Ge.td;var Ye=/<|&#?\w+;/;!function(){var e=te.createDocumentFragment(),t=e.appendChild(te.createElement("div")),n=te.createElement("input");n.setAttribute("type","radio"),n.setAttribute("checked","checked"),n.setAttribute("name","t"),t.appendChild(n),pe.checkClone=t.cloneNode(!0).cloneNode(!0).lastChild.checked,t.innerHTML="",pe.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue}();var Qe=te.documentElement,Je=/^key/,Ke=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ze=/^([^.]*)(?:\.(.+)|)/;de.event={global:{},add:function(e,t,n,r,o){var i,s,a,u,c,l,f,p,h,d,g,m=Fe.get(e);if(m)for(n.handler&&(i=n,n=i.handler,o=i.selector),o&&de.find.matchesSelector(Qe,o),n.guid||(n.guid=de.guid++),(u=m.events)||(u=m.events={}),(s=m.handle)||(s=m.handle=function(t){return"undefined"!=typeof de&&de.event.triggered!==t.type?de.event.dispatch.apply(e,arguments):void 0}),t=(t||"").match(qe)||[""],c=t.length;c--;)a=Ze.exec(t[c])||[],h=g=a[1],d=(a[2]||"").split(".").sort(),h&&(f=de.event.special[h]||{},h=(o?f.delegateType:f.bindType)||h,f=de.event.special[h]||{},l=de.extend({type:h,origType:g,data:r,handler:n,guid:n.guid,selector:o,needsContext:o&&de.expr.match.needsContext.test(o),namespace:d.join(".")},i),(p=u[h])||(p=u[h]=[],p.delegateCount=0,f.setup&&f.setup.call(e,r,d,s)!==!1||e.addEventListener&&e.addEventListener(h,s)),f.add&&(f.add.call(e,l),l.handler.guid||(l.handler.guid=n.guid)),o?p.splice(p.delegateCount++,0,l):p.push(l),de.event.global[h]=!0)},remove:function(e,t,n,r,o){var i,s,a,u,c,l,f,p,h,d,g,m=Fe.hasData(e)&&Fe.get(e);if(m&&(u=m.events)){for(t=(t||"").match(qe)||[""],c=t.length;c--;)if(a=Ze.exec(t[c])||[],h=g=a[1],d=(a[2]||"").split(".").sort(),h){for(f=de.event.special[h]||{},h=(r?f.delegateType:f.bindType)||h,p=u[h]||[],a=a[2]&&new RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=i=p.length;i--;)l=p[i],!o&&g!==l.origType||n&&n.guid!==l.guid||a&&!a.test(l.namespace)||r&&r!==l.selector&&("**"!==r||!l.selector)||(p.splice(i,1),l.selector&&p.delegateCount--,f.remove&&f.remove.call(e,l));s&&!p.length&&(f.teardown&&f.teardown.call(e,d,m.handle)!==!1||de.removeEvent(e,h,m.handle),delete u[h])}else for(h in u)de.event.remove(e,h+t[c],n,r,!0);de.isEmptyObject(u)&&Fe.remove(e,"handle events")}},dispatch:function(e){var t,n,r,o,i,s,a=de.event.fix(e),u=new Array(arguments.length),c=(Fe.get(this,"events")||{})[a.type]||[],l=de.event.special[a.type]||{};for(u[0]=a,t=1;t=1))for(;c!==this;c=c.parentNode||this)if(1===c.nodeType&&("click"!==e.type||c.disabled!==!0)){for(i=[],s={},n=0;n-1:de.find(o,this,null,[c]).length),s[o]&&i.push(r);i.length&&a.push({elem:c,handlers:i})}return c=this,u\x20\t\r\n\f]*)[^>]*)\/>/gi,tt=/\s*$/g;de.extend({htmlPrefilter:function(e){return e.replace(et,"<$1>")},clone:function(e,t,n){var r,o,i,s,a=e.cloneNode(!0),u=de.contains(e.ownerDocument,e);if(!(pe.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||de.isXMLDoc(e)))for(s=v(a),i=v(e),r=0,o=i.length;r0&&y(s,!u&&v(e,"script")),a},cleanData:function(e){for(var t,n,r,o=de.event.special,i=0;void 0!==(n=e[i]);i++)if(He(n)){if(t=n[Fe.expando]){if(t.events)for(r in t.events)o[r]?de.event.remove(n,r):de.removeEvent(n,r,t.handle);n[Fe.expando]=void 0}n[Re.expando]&&(n[Re.expando]=void 0)}}}),de.fn.extend({detach:function(e){return q(this,e,!0)},remove:function(e){return q(this,e)},text:function(e){return Le(this,function(e){return void 0===e?de.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return A(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=j(this,e);t.appendChild(e)}})},prepend:function(){return A(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=j(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return A(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return A(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(de.cleanData(v(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return de.clone(this,e,t)})},html:function(e){return Le(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!tt.test(e)&&!Ge[(Xe.exec(e)||["",""])[1].toLowerCase()]){e=de.htmlPrefilter(e);try{for(;n1)}}),de.Tween=I,I.prototype={constructor:I,init:function(e,t,n,r,o,i){this.elem=e,this.prop=n,this.easing=o||de.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=i||(de.cssNumber[n]?"":"px")},cur:function(){var e=I.propHooks[this.prop];return e&&e.get?e.get(this):I.propHooks._default.get(this)},run:function(e){var t,n=I.propHooks[this.prop];return this.options.duration?this.pos=t=de.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):I.propHooks._default.set(this),this}},I.prototype.init.prototype=I.prototype,I.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=de.css(e.elem,e.prop,""),t&&"auto"!==t?t:0)},set:function(e){de.fx.step[e.prop]?de.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[de.cssProps[e.prop]]&&!de.cssHooks[e.prop]?e.elem[e.prop]=e.now:de.style(e.elem,e.prop,e.now+e.unit)}}},I.propHooks.scrollTop=I.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},de.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},de.fx=I.prototype.init,de.fx.step={};var ht,dt,gt=/^(?:toggle|show|hide)$/,mt=/queueHooks$/;de.Animation=de.extend(U,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return d(n.elem,e,$e.exec(t),n),n}]},tweener:function(e,t){de.isFunction(e)?(t=e,e=["*"]):e=e.match(qe);for(var n,r=0,o=e.length;r1)},removeAttr:function(e){return this.each(function(){de.removeAttr(this,e)})}}),de.extend({attr:function(e,t,n){var r,o,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return"undefined"==typeof e.getAttribute?de.prop(e,t,n):(1===i&&de.isXMLDoc(e)||(o=de.attrHooks[t.toLowerCase()]||(de.expr.match.bool.test(t)?vt:void 0)),void 0!==n?null===n?void de.removeAttr(e,t):o&&"set"in o&&void 0!==(r=o.set(e,n,t))?r:(e.setAttribute(t,n+""),n):o&&"get"in o&&null!==(r=o.get(e,t))?r:(r=de.find.attr(e,t),null==r?void 0:r))},attrHooks:{type:{set:function(e,t){if(!pe.radioValue&&"radio"===t&&de.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,o=t&&t.match(qe);if(o&&1===e.nodeType)for(;n=o[r++];)e.removeAttribute(n)}}),vt={set:function(e,t,n){return t===!1?de.removeAttr(e,n):e.setAttribute(n,n),n}},de.each(de.expr.match.bool.source.match(/\w+/g),function(e,t){var n=yt[t]||de.find.attr;yt[t]=function(e,t,r){var o,i,s=t.toLowerCase();return r||(i=yt[s],yt[s]=o,o=null!=n(e,t,r)?s:null,yt[s]=i),o}});var xt=/^(?:input|select|textarea|button)$/i,bt=/^(?:a|area)$/i;de.fn.extend({prop:function(e,t){return Le(this,de.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[de.propFix[e]||e]})}}),de.extend({prop:function(e,t,n){var r,o,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return 1===i&&de.isXMLDoc(e)||(t=de.propFix[t]||t,o=de.propHooks[t]),void 0!==n?o&&"set"in o&&void 0!==(r=o.set(e,n,t))?r:e[t]=n:o&&"get"in o&&null!==(r=o.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=de.find.attr(e,"tabindex");return t?parseInt(t,10):xt.test(e.nodeName)||bt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),pe.optSelected||(de.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),de.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){de.propFix[this.toLowerCase()]=this}),de.fn.extend({addClass:function(e){var t,n,r,o,i,s,a,u=0;if(de.isFunction(e))return this.each(function(t){de(this).addClass(e.call(this,t,X(this)))});if("string"==typeof e&&e)for(t=e.match(qe)||[];n=this[u++];)if(o=X(n),r=1===n.nodeType&&" "+z(o)+" "){for(s=0;i=t[s++];)r.indexOf(" "+i+" ")<0&&(r+=i+" ");a=z(r),o!==a&&n.setAttribute("class",a)}return this},removeClass:function(e){var t,n,r,o,i,s,a,u=0;if(de.isFunction(e))return this.each(function(t){de(this).removeClass(e.call(this,t,X(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof e&&e)for(t=e.match(qe)||[];n=this[u++];)if(o=X(n),r=1===n.nodeType&&" "+z(o)+" "){for(s=0;i=t[s++];)for(;r.indexOf(" "+i+" ")>-1;)r=r.replace(" "+i+" "," ");a=z(r),o!==a&&n.setAttribute("class",a)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):de.isFunction(e)?this.each(function(n){de(this).toggleClass(e.call(this,n,X(this),t),t)}):this.each(function(){var t,r,o,i;if("string"===n)for(r=0,o=de(this),i=e.match(qe)||[];t=i[r++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&"boolean"!==n||(t=X(this),t&&Fe.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||e===!1?"":Fe.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+z(X(n))+" ").indexOf(t)>-1)return!0;return!1}});var wt=/\r/g;de.fn.extend({val:function(e){var t,n,r,o=this[0];{if(arguments.length)return r=de.isFunction(e),this.each(function(n){var o;1===this.nodeType&&(o=r?e.call(this,n,de(this).val()):e,null==o?o="":"number"==typeof o?o+="":de.isArray(o)&&(o=de.map(o,function(e){return null==e?"":e+""})),t=de.valHooks[this.type]||de.valHooks[this.nodeName.toLowerCase()],t&&"set"in t&&void 0!==t.set(this,o,"value")||(this.value=o))});if(o)return t=de.valHooks[o.type]||de.valHooks[o.nodeName.toLowerCase()],t&&"get"in t&&void 0!==(n=t.get(o,"value"))?n:(n=o.value,"string"==typeof n?n.replace(wt,""):null==n?"":n)}}}),de.extend({valHooks:{option:{get:function(e){var t=de.find.attr(e,"value");return null!=t?t:z(de.text(e))}},select:{get:function(e){var t,n,r,o=e.options,i=e.selectedIndex,s="select-one"===e.type,a=s?null:[],u=s?i+1:o.length;for(r=i<0?u:s?i:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),i}}}}),de.each(["radio","checkbox"],function(){de.valHooks[this]={set:function(e,t){if(de.isArray(t))return e.checked=de.inArray(de(e).val(),t)>-1}},pe.checkOn||(de.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Tt=/^(?:focusinfocus|focusoutblur)$/;de.extend(de.event,{trigger:function(t,n,r,o){var i,s,a,u,c,l,f,p=[r||te],h=ce.call(t,"type")?t.type:t,d=ce.call(t,"namespace")?t.namespace.split("."):[];if(s=a=r=r||te,3!==r.nodeType&&8!==r.nodeType&&!Tt.test(h+de.event.triggered)&&(h.indexOf(".")>-1&&(d=h.split("."),h=d.shift(),d.sort()),c=h.indexOf(":")<0&&"on"+h,t=t[de.expando]?t:new de.Event(h,"object"==typeof t&&t),t.isTrigger=o?2:3,t.namespace=d.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:de.makeArray(n,[t]),f=de.event.special[h]||{},o||!f.trigger||f.trigger.apply(r,n)!==!1)){if(!o&&!f.noBubble&&!de.isWindow(r)){for(u=f.delegateType||h,Tt.test(u+h)||(s=s.parentNode);s;s=s.parentNode)p.push(s),a=s;a===(r.ownerDocument||te)&&p.push(a.defaultView||a.parentWindow||e)}for(i=0;(s=p[i++])&&!t.isPropagationStopped();)t.type=i>1?u:f.bindType||h,l=(Fe.get(s,"events")||{})[t.type]&&Fe.get(s,"handle"),l&&l.apply(s,n),l=c&&s[c],l&&l.apply&&He(s)&&(t.result=l.apply(s,n),t.result===!1&&t.preventDefault());return t.type=h,o||t.isDefaultPrevented()||f._default&&f._default.apply(p.pop(),n)!==!1||!He(r)||c&&de.isFunction(r[h])&&!de.isWindow(r)&&(a=r[c],a&&(r[c]=null),de.event.triggered=h,r[h](),de.event.triggered=void 0,a&&(r[c]=a)),t.result}},simulate:function(e,t,n){var r=de.extend(new de.Event,n,{type:e,isSimulated:!0});de.event.trigger(r,null,t)}}),de.fn.extend({trigger:function(e,t){return this.each(function(){de.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return de.event.trigger(e,t,n,!0)}}),de.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,t){de.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),de.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),pe.focusin="onfocusin"in e,pe.focusin||de.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){de.event.simulate(t,e.target,de.event.fix(e))};de.event.special[t]={setup:function(){var r=this.ownerDocument||this,o=Fe.access(r,t);o||r.addEventListener(e,n,!0),Fe.access(r,t,(o||0)+1)},teardown:function(){var r=this.ownerDocument||this,o=Fe.access(r,t)-1;o?Fe.access(r,t,o):(r.removeEventListener(e,n,!0),Fe.remove(r,t))}}});var Ct=e.location,jt=de.now(),kt=/\?/;de.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||de.error("Invalid XML: "+t),n};var Et=/\[\]$/,St=/\r?\n/g,Nt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;de.param=function(e,t){var n,r=[],o=function(e,t){var n=de.isFunction(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(de.isArray(e)||e.jquery&&!de.isPlainObject(e))de.each(e,function(){o(this.name,this.value)});else for(n in e)V(n,e[n],t,o);return r.join("&")},de.fn.extend({serialize:function(){return de.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=de.prop(this,"elements");return e?de.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!de(this).is(":disabled")&&At.test(this.nodeName)&&!Nt.test(e)&&(this.checked||!ze.test(e))}).map(function(e,t){var n=de(this).val();return null==n?null:de.isArray(n)?de.map(n,function(e){return{name:t.name,value:e.replace(St,"\r\n")}}):{name:t.name,value:n.replace(St,"\r\n")}}).get()}});var qt=/%20/g,Dt=/#.*$/,Ot=/([?&])_=[^&]*/,Lt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ht=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Ft=/^(?:GET|HEAD)$/,Rt=/^\/\//,It={},Pt={},Mt="*/".concat("*"),$t=te.createElement("a");$t.href=Ct.href,de.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ct.href,type:"GET",isLocal:Ht.test(Ct.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Mt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":de.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Q(Q(e,de.ajaxSettings),t):Q(de.ajaxSettings,e)},ajaxPrefilter:G(It),ajaxTransport:G(Pt),ajax:function(t,n){function r(t,n,r,a){var c,p,h,b,w,T=n;l||(l=!0,u&&e.clearTimeout(u),o=void 0,s=a||"",C.readyState=t>0?4:0,c=t>=200&&t<300||304===t,r&&(b=J(d,C,r)),b=K(d,b,C,c),c?(d.ifModified&&(w=C.getResponseHeader("Last-Modified"),w&&(de.lastModified[i]=w),w=C.getResponseHeader("etag"),w&&(de.etag[i]=w)),204===t||"HEAD"===d.type?T="nocontent":304===t?T="notmodified":(T=b.state,p=b.data,h=b.error,c=!h)):(h=T,!t&&T||(T="error",t<0&&(t=0))),C.status=t,C.statusText=(n||T)+"",c?v.resolveWith(g,[p,T,C]):v.rejectWith(g,[C,T,h]),C.statusCode(x),x=void 0,f&&m.trigger(c?"ajaxSuccess":"ajaxError",[C,d,c?p:h]),y.fireWith(g,[C,T]),f&&(m.trigger("ajaxComplete",[C,d]),--de.active||de.event.trigger("ajaxStop")))}"object"==typeof t&&(n=t,t=void 0),n=n||{};var o,i,s,a,u,c,l,f,p,h,d=de.ajaxSetup({},n),g=d.context||d,m=d.context&&(g.nodeType||g.jquery)?de(g):de.event,v=de.Deferred(),y=de.Callbacks("once memory"),x=d.statusCode||{},b={},w={},T="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(l){if(!a)for(a={};t=Lt.exec(s);)a[t[1].toLowerCase()]=t[2];t=a[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return l?s:null},setRequestHeader:function(e,t){return null==l&&(e=w[e.toLowerCase()]=w[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==l&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)C.always(e[C.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||T;return o&&o.abort(t),r(0,t),this}};if(v.promise(C),d.url=((t||d.url||Ct.href)+"").replace(Rt,Ct.protocol+"//"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=(d.dataType||"*").toLowerCase().match(qe)||[""],null==d.crossDomain){c=te.createElement("a");try{c.href=d.url,c.href=c.href,d.crossDomain=$t.protocol+"//"+$t.host!=c.protocol+"//"+c.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&"string"!=typeof d.data&&(d.data=de.param(d.data,d.traditional)),Y(It,d,n,C),l)return C;f=de.event&&d.global,f&&0===de.active++&&de.event.trigger("ajaxStart"),d.type=d.type.toUpperCase(),d.hasContent=!Ft.test(d.type),i=d.url.replace(Dt,""),d.hasContent?d.data&&d.processData&&0===(d.contentType||"").indexOf("application/x-www-form-urlencoded")&&(d.data=d.data.replace(qt,"+")):(h=d.url.slice(i.length),d.data&&(i+=(kt.test(i)?"&":"?")+d.data,delete d.data),d.cache===!1&&(i=i.replace(Ot,"$1"),h=(kt.test(i)?"&":"?")+"_="+jt++ +h),d.url=i+h),d.ifModified&&(de.lastModified[i]&&C.setRequestHeader("If-Modified-Since",de.lastModified[i]),de.etag[i]&&C.setRequestHeader("If-None-Match",de.etag[i])),(d.data&&d.hasContent&&d.contentType!==!1||n.contentType)&&C.setRequestHeader("Content-Type",d.contentType),C.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+("*"!==d.dataTypes[0]?", "+Mt+"; q=0.01":""):d.accepts["*"]);for(p in d.headers)C.setRequestHeader(p,d.headers[p]);if(d.beforeSend&&(d.beforeSend.call(g,C,d)===!1||l))return C.abort();if(T="abort",y.add(d.complete),C.done(d.success),C.fail(d.error),o=Y(Pt,d,n,C)){if(C.readyState=1,f&&m.trigger("ajaxSend",[C,d]),l)return C;d.async&&d.timeout>0&&(u=e.setTimeout(function(){C.abort("timeout")},d.timeout));try{l=!1,o.send(b,r)}catch(e){if(l)throw e;r(-1,e)}}else r(-1,"No Transport");return C},getJSON:function(e,t,n){return de.get(e,t,n,"json")},getScript:function(e,t){return de.get(e,void 0,t,"script")}}),de.each(["get","post"],function(e,t){de[t]=function(e,n,r,o){return de.isFunction(n)&&(o=o||r,r=n,n=void 0),de.ajax(de.extend({url:e,type:t,dataType:o,data:n,success:r},de.isPlainObject(e)&&e))}}),de._evalUrl=function(e){return de.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,throws:!0})},de.fn.extend({wrapAll:function(e){var t;return this[0]&&(de.isFunction(e)&&(e=e.call(this[0])),t=de(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return de.isFunction(e)?this.each(function(t){de(this).wrapInner(e.call(this,t))}):this.each(function(){var t=de(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=de.isFunction(e);return this.each(function(n){de(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){de(this).replaceWith(this.childNodes)}),this}}),de.expr.pseudos.hidden=function(e){return!de.expr.pseudos.visible(e)},de.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},de.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Wt={0:200,1223:204},Bt=de.ajaxSettings.xhr();pe.cors=!!Bt&&"withCredentials"in Bt,pe.ajax=Bt=!!Bt,de.ajaxTransport(function(t){var n,r;if(pe.cors||Bt&&!t.crossDomain)return{send:function(o,i){var s,a=t.xhr();if(a.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(s in t.xhrFields)a[s]=t.xhrFields[s];t.mimeType&&a.overrideMimeType&&a.overrideMimeType(t.mimeType),t.crossDomain||o["X-Requested-With"]||(o["X-Requested-With"]="XMLHttpRequest");for(s in o)a.setRequestHeader(s,o[s]);n=function(e){return function(){n&&(n=r=a.onload=a.onerror=a.onabort=a.onreadystatechange=null,"abort"===e?a.abort():"error"===e?"number"!=typeof a.status?i(0,"error"):i(a.status,a.statusText):i(Wt[a.status]||a.status,a.statusText,"text"!==(a.responseType||"text")||"string"!=typeof a.responseText?{binary:a.response}:{text:a.responseText},a.getAllResponseHeaders()))}},a.onload=n(),r=a.onerror=n("error"),void 0!==a.onabort?a.onabort=r:a.onreadystatechange=function(){4===a.readyState&&e.setTimeout(function(){n&&r()})},n=n("abort");try{a.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),de.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),de.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return de.globalEval(e),e}}}),de.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),de.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(r,o){t=de(" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/layout/hanging-protocols.html b/docs/latest/_book/history/v1/layout/hanging-protocols.html deleted file mode 100644 index 6c91e6ce9..000000000 --- a/docs/latest/_book/history/v1/layout/hanging-protocols.html +++ /dev/null @@ -1,977 +0,0 @@ - - - - - - - Hanging Protocols ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

                                                -
                                                - - - - - - - - -
                                                - -
                                                - -
                                                - - - - - - - - - -
                                                -
                                                - -
                                                -
                                                - -
                                                - -

                                                Hanging Protocols

                                                - - -
                                                - -
                                                -
                                                -
                                                - -

                                                results matching ""

                                                -
                                                  - -
                                                  -
                                                  - -

                                                  No results matching ""

                                                  - -
                                                  -
                                                  -
                                                  - -
                                                  -
                                                  - - -
                                                  - - - - - - - - - - -
                                                  - - -
                                                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/layout/layout-management.html b/docs/latest/_book/history/v1/layout/layout-management.html deleted file mode 100644 index a7f4bad80..000000000 --- a/docs/latest/_book/history/v1/layout/layout-management.html +++ /dev/null @@ -1,977 +0,0 @@ - - - - - - - Layout Management ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                  -
                                                  - - - - - - - - -
                                                  - -
                                                  - -
                                                  - - - - - - - - - -
                                                  -
                                                  - -
                                                  -
                                                  - -
                                                  - -

                                                  Layout Management

                                                  - - -
                                                  - -
                                                  -
                                                  -
                                                  - -

                                                  results matching ""

                                                  -
                                                    - -
                                                    -
                                                    - -

                                                    No results matching ""

                                                    - -
                                                    -
                                                    -
                                                    - -
                                                    -
                                                    - - -
                                                    - - - - - - - - - - -
                                                    - - -
                                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/lesion-tracker/audit-trail.html b/docs/latest/_book/history/v1/lesion-tracker/audit-trail.html deleted file mode 100644 index 3b7a96b25..000000000 --- a/docs/latest/_book/history/v1/lesion-tracker/audit-trail.html +++ /dev/null @@ -1,982 +0,0 @@ - - - - - - - Audit Trail ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                    -
                                                    - - - - - - - - -
                                                    - -
                                                    - -
                                                    - - - - - - - - - -
                                                    -
                                                    - -
                                                    -
                                                    - -
                                                    - -

                                                    Lesion Tracker - Audit Trail

                                                    -
                                                      -
                                                    1. To view Audit Trails, select View Audit Log on the Configuration menu.
                                                    2. -
                                                    3. To filter audit logs for a column or multiple columns, type or select in the related column or columns.
                                                    4. -
                                                    -

                                                    Audit Trails

                                                    - - -
                                                    - -
                                                    -
                                                    -
                                                    - -

                                                    results matching ""

                                                    -
                                                      - -
                                                      -
                                                      - -

                                                      No results matching ""

                                                      - -
                                                      -
                                                      -
                                                      - -
                                                      -
                                                      - - -
                                                      - - - - - - - - - - -
                                                      - - -
                                                      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/lesion-tracker/installation-on-windows.html b/docs/latest/_book/history/v1/lesion-tracker/installation-on-windows.html deleted file mode 100644 index 31294571f..000000000 --- a/docs/latest/_book/history/v1/lesion-tracker/installation-on-windows.html +++ /dev/null @@ -1,1062 +0,0 @@ - - - - - - - Installation on Windows ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                      -
                                                      - - - - - - - - -
                                                      - -
                                                      - -
                                                      - - - - - - - - - -
                                                      -
                                                      - -
                                                      -
                                                      - -
                                                      - -

                                                      Lesion Tracker - Installation on Windows

                                                      -

                                                      On Windows, the easiest way to install LesionTracker is using the provided Windows Installer. You can download the latest version of LesionTracker installer from OHIF

                                                      -

                                                      Install

                                                      -
                                                        -
                                                      1. After you have obtained the latest version of LesionTracker installer, double-click the installer to install the application.
                                                      2. -
                                                      3. When you start the installer, setup wizard will pop up.

                                                        -

                                                        Installer Initial

                                                        -
                                                      4. -
                                                      5. Click Install to start the installation.

                                                        -
                                                      6. -
                                                      7. LesionTracker will install prerequisites if they do not exist before installing the application.

                                                        -

                                                        Prerequisites

                                                        -
                                                      8. -
                                                      9. Click the Next if you accept the installation.

                                                        -

                                                        After Prerequisites

                                                        -
                                                      10. -
                                                      11. Read the license agreement, and if you agree, click I accept the terms in the License Agreement and then click the Next.

                                                        -

                                                        License Aggrement

                                                        -
                                                      12. -
                                                      13. Select a location to install LesionTracker and click the Next to continue.

                                                        -

                                                        Select Location

                                                        -
                                                      14. -
                                                      15. Click the Install to start the installation and the installation will be started.

                                                        -

                                                        Launch Installation

                                                        -
                                                      16. -
                                                      17. Click Finish to complete the installation.

                                                        -

                                                        Finish

                                                        -
                                                      18. -
                                                      19. When the installation is done,

                                                        -
                                                      20. -
                                                      21. You will see the final dialog which gives the URLs in order to connect to LesionTracker Viewer and Orthanc Server.

                                                        -
                                                          -
                                                        • It will launch computer's default browser and display LesionTracker Viewer if you click 'http://localhost:3000'
                                                        • -
                                                        • It will launch computer's default browser and enables to upload studies to Orthanc Server if you click 'http://localhost:8042'
                                                        • -
                                                        -

                                                        Final

                                                        -
                                                      22. -
                                                      23. Also, LesionTracker installer will create two shortcuts named LesionTracker and Orthanc Server on the Desktop.

                                                        -
                                                          -
                                                        • It will launch computer's default browser and display LesionTracker image viewer if you click LesionTracker application on the Desktop.
                                                        • -
                                                        • It will launch computer's default browser and enables to upload studies to Orthanc Server if you click Orthanc Server application.
                                                        • -
                                                        -

                                                        Desktop Shortcuts

                                                        -
                                                      24. -
                                                      25. Click the Done and Close to close the installation window.

                                                        -

                                                        Installation Successful

                                                        -
                                                      26. -
                                                      27. After the installation is completed,

                                                        -
                                                      28. -
                                                      29. You can find the project folder in C:\Program Files\OHIF\LesionTracker if you use the default installation location.
                                                      30. -
                                                      31. You will find 4 program executables which eases managing the services in the project folder:

                                                        -
                                                          -
                                                        • Start Services.exe: Starts LesionTracker, MongoDB and Orthanc services manually.
                                                        • -
                                                        • Stop Services.exe: Stops LesionTracker, MongoDB and Orthanc services manually.
                                                        • -
                                                        • Turn Off Auto Services.exe: Configures not to start LesionTracker, MongoDB and Orthanc services automatically when Windows starts up.
                                                        • -
                                                        • Turn On Auto Services.exe: Configures to start LesionTracker, MongoDB and Orthanc services automatically when Windows starts up.
                                                        • -
                                                        -

                                                        Services

                                                        -
                                                      32. -
                                                      -

                                                      Uninstall

                                                      -
                                                        -
                                                      1. Open the Start Menu.
                                                      2. -
                                                      3. Click Settings.
                                                      4. -
                                                      5. Click Apps on the Settings menu.
                                                      6. -
                                                      7. Select Apps & features from the left panel.
                                                      8. -
                                                      9. Find the LesionTracker in programs list and click LesionTracker, then click the Uninstall.

                                                        -

                                                        Uninstall

                                                        -
                                                      10. -
                                                      11. Click Uninstall from the LesionTracker Setup dialog.

                                                        -

                                                        Launch Uninstall

                                                        -
                                                      12. -
                                                      -

                                                      When the uninstallation is done, the uninstallation will remove;

                                                      -
                                                        -
                                                      • Prerequisites: MongoDB, nodejs and Orthanc Server
                                                      • -
                                                      • The project folder, OHIF, from C:\Program Files
                                                      • -
                                                      • Background Services: LesionTracker Server, MongoDB and Orthanc services
                                                      • -
                                                      • Shortcuts: LesionTracker and Orthanc Server shortcuts on the Desktop
                                                      • -
                                                      - - -
                                                      - -
                                                      -
                                                      -
                                                      - -

                                                      results matching ""

                                                      -
                                                        - -
                                                        -
                                                        - -

                                                        No results matching ""

                                                        - -
                                                        -
                                                        -
                                                        - -
                                                        -
                                                        - - -
                                                        - - - - - - - - - - - - - - -
                                                        - - -
                                                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/lesion-tracker/manage-studies-in-orthanc.html b/docs/latest/_book/history/v1/lesion-tracker/manage-studies-in-orthanc.html deleted file mode 100644 index 5d88685ac..000000000 --- a/docs/latest/_book/history/v1/lesion-tracker/manage-studies-in-orthanc.html +++ /dev/null @@ -1,1011 +0,0 @@ - - - - - - - Manage Studies in Orthanc ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                        -
                                                        - - - - - - - - -
                                                        - -
                                                        - -
                                                        - - - - - - - - - -
                                                        -
                                                        - -
                                                        -
                                                        - -
                                                        - -

                                                        Lesion Tracker - Manage Studies in Orthanc

                                                        -

                                                        Orthanc is an open-source, simple and powerful standalone DICOM server which eases DICOM scripting and data management for clinical routine and medical research. LesionTracker installer installs Orthanc as a service and runs automatically in the background. Orthanc serves a web interface, Orthanc Explorer, and it can be accessed through http://localhost:8042 in your web browser or the Orthanc Server shortcut which is created by LesionTracker installer and loads http://localhost:8042 in your default browser.

                                                        -

                                                        Upload a study into Orthanc using Orthanc Explorer

                                                        -
                                                          -
                                                        1. Click Upload button at the top-right of Orthanc Explorer and you will be brought to the upload page.

                                                          -

                                                          Upload

                                                          -
                                                        2. -
                                                        3. Select the DICOM files and drag those files into Orthanc Explorer.

                                                          -

                                                          Drag and Drop Studies

                                                          -
                                                        4. -
                                                        5. Click Start the upload and wait until the upload is complete.

                                                          -

                                                          Start the Upload

                                                          -
                                                        6. -
                                                        7. Click Patients to view the uploaded study.

                                                          -

                                                          Upload Result

                                                          -
                                                        8. -
                                                        -

                                                        Delete a study from Orthanc using Orthanc Explorer

                                                        -
                                                          -
                                                        1. Select a patient from Patients list.

                                                          -

                                                          Select Patient

                                                          -
                                                        2. -
                                                        3. Select a study of the patient.

                                                          -

                                                          Select Study

                                                          -
                                                        4. -
                                                        5. Select Delete this study in the Interact menu.

                                                          -

                                                          Delete Study

                                                          -
                                                        6. -
                                                        - - -
                                                        - -
                                                        -
                                                        -
                                                        - -

                                                        results matching ""

                                                        -
                                                          - -
                                                          -
                                                          - -

                                                          No results matching ""

                                                          - -
                                                          -
                                                          -
                                                          - -
                                                          -
                                                          - - -
                                                          - - - - - - - - - - - - - - -
                                                          - - -
                                                          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/lesion-tracker/server-management.html b/docs/latest/_book/history/v1/lesion-tracker/server-management.html deleted file mode 100644 index 598dfdb12..000000000 --- a/docs/latest/_book/history/v1/lesion-tracker/server-management.html +++ /dev/null @@ -1,985 +0,0 @@ - - - - - - - Server Management ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                          -
                                                          - - - - - - - - -
                                                          - -
                                                          - -
                                                          - - - - - - - - - -
                                                          -
                                                          - -
                                                          -
                                                          - -
                                                          - -

                                                          Lesion Tracker - Server Management

                                                          -

                                                          LesionTracker supports configuration of multiple servers and allows to switch between them. To configure the servers, click Server Information on the Configuration Menu.

                                                          -

                                                          Server Information

                                                          - - -
                                                          - -
                                                          -
                                                          -
                                                          - -

                                                          results matching ""

                                                          -
                                                            - -
                                                            -
                                                            - -

                                                            No results matching ""

                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - - -
                                                            - - - - - - - - - - - - - - -
                                                            - - -
                                                            - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/lesion-tracker/study-and-timepoint-management.html b/docs/latest/_book/history/v1/lesion-tracker/study-and-timepoint-management.html deleted file mode 100644 index 2f90fe3e5..000000000 --- a/docs/latest/_book/history/v1/lesion-tracker/study-and-timepoint-management.html +++ /dev/null @@ -1,1019 +0,0 @@ - - - - - - - Study and Timepoint Management ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                            -
                                                            - - - - - - - - -
                                                            - -
                                                            - -
                                                            - - - - - - - - - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            - -

                                                            Lesion Tracker - Study and Timepoint Management

                                                            -

                                                            Study List

                                                            -
                                                              -
                                                            1. Study List allows to sort each column. To sort studies, click the desired column header.
                                                            2. -
                                                            3. Study List is filterable for each column and you can filter by more than one column by typing in the column field. To filter a column, type the text in the desired column header field and press Enter.
                                                            4. -
                                                            5. Pagination is provided for the Study List at the bottom of the page. You can change the number of rows per page or the current page.
                                                            6. -
                                                            -

                                                            Study List Context Menu

                                                            -

                                                            When you right-click on the study row, Study Context Menu will pop up. Study Context Menu includes operations at the study level.

                                                            -

                                                            There are a couple of ways to view a study:

                                                            -
                                                              -
                                                            • Simply double-click on the study row.
                                                            • -
                                                            • Select View option on the Study Context Menu, then you will be redirected to Viewer page.
                                                            • -
                                                            -

                                                            View Study

                                                            -

                                                            Timepoint Association

                                                            -
                                                              -
                                                            1. To link a study with a timepoint, right-click on the study row and select Associate option on the Study Context Menu. You will see Study Association dialog.
                                                            2. -
                                                            3. To link multiple studies at the same time, hold Shift key and select studies you would like to associate, then right-click and select Associate on the Study Context Menu
                                                            4. -
                                                            -

                                                            Select Associate

                                                            -

                                                            The Study Association dialog allows you to select and unselect Timepoint Type for the selected study or studies. Also, it will include all studies within 14 days of your selected studies, in case you forgot to select a study. After you identify timepoints for the selected study or studies, click Save to save the association.

                                                            -

                                                            Association Dialog

                                                            -

                                                            Remove Timepoint Association

                                                            -

                                                            To unlink a timepoint association with a study, right-click on the study row and select Remove Association option on the Study Context Menu. Remove Association will be disabled if the study is already dissociated.

                                                            -

                                                            Remove Associate

                                                            -

                                                            View Series Details

                                                            -

                                                            To view details of related series, right-click on the study row and select View Series Details option on the Study Context Menu, then Series Details dialog will pop up. Series Details dialog gives a summary of the selected study.

                                                            -

                                                            View Series Details

                                                            -

                                                            Anonymize (Under Development)

                                                            -

                                                            ...

                                                            -

                                                            Send (Under Development)

                                                            -

                                                            ...

                                                            -

                                                            Export (Under Development)

                                                            -

                                                            ...

                                                            -

                                                            Delete (Under Development)

                                                            -

                                                            ...

                                                            - - -
                                                            - -
                                                            -
                                                            -
                                                            - -

                                                            results matching ""

                                                            -
                                                              - -
                                                              -
                                                              - -

                                                              No results matching ""

                                                              - -
                                                              -
                                                              -
                                                              - -
                                                              -
                                                              - - -
                                                              - - - - - - - - - - - - - - -
                                                              - - -
                                                              - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/lesion-tracker/user-accounts.html b/docs/latest/_book/history/v1/lesion-tracker/user-accounts.html deleted file mode 100644 index 1e598478b..000000000 --- a/docs/latest/_book/history/v1/lesion-tracker/user-accounts.html +++ /dev/null @@ -1,1004 +0,0 @@ - - - - - - - User Accounts ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                              -
                                                              - - - - - - - - -
                                                              - -
                                                              - -
                                                              - - - - - - - - - -
                                                              -
                                                              - -
                                                              -
                                                              - -
                                                              - -

                                                              Lesion Tracker - User Accounts

                                                              -

                                                              Sign In

                                                              -

                                                              LesionTracker requires authentication to access the viewer. -If you are already a registered user, enter Your Email and Password and click Sign In

                                                              -

                                                              Login

                                                              -

                                                              Register An Account

                                                              -

                                                              If you are a new user, click Need An Account and fill the all fields and click Join Now

                                                              -

                                                              Need Account

                                                              -

                                                              Note: There is a Test Drive button on the top-right of Login page. Test Drive is used to skip registration process and allows to use LesionTracker with a test account. This will be removed in the next versions.

                                                              -

                                                              Forgot Password

                                                              -

                                                              To reset the password, enter Your Email and click Send Reminder. An email that includes a link to reset your password will be sent to your email address.

                                                              -

                                                              Forgot Password

                                                              -

                                                              Change Password

                                                              -

                                                              To change password:

                                                              -
                                                                -
                                                              1. Click Configuration menu icon at the top-right of the workspace then select Change Password
                                                              2. -
                                                              3. Enter your password and click Change Password
                                                              4. -
                                                              -

                                                              Change Password

                                                              -

                                                              Logout

                                                              -

                                                              To logout, click Logout on the Configuration menu.

                                                              -

                                                              Logout

                                                              - - -
                                                              - -
                                                              -
                                                              -
                                                              - -

                                                              results matching ""

                                                              -
                                                                - -
                                                                -
                                                                - -

                                                                No results matching ""

                                                                - -
                                                                -
                                                                -
                                                                - -
                                                                -
                                                                - - -
                                                                - - - - - - - - - - - - - - -
                                                                - - -
                                                                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/lesion-tracker/user-manual.html b/docs/latest/_book/history/v1/lesion-tracker/user-manual.html deleted file mode 100644 index f54e603f5..000000000 --- a/docs/latest/_book/history/v1/lesion-tracker/user-manual.html +++ /dev/null @@ -1,987 +0,0 @@ - - - - - - - User Manual ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                -
                                                                - - - - - - - - -
                                                                - -
                                                                - -
                                                                - - - - - - - - - -
                                                                -
                                                                - -
                                                                - -
                                                                -
                                                                - -

                                                                results matching ""

                                                                -
                                                                  - -
                                                                  -
                                                                  - -

                                                                  No results matching ""

                                                                  - -
                                                                  -
                                                                  -
                                                                  - -
                                                                  -
                                                                  - - -
                                                                  - - - - - - - - - - -
                                                                  - - -
                                                                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/lesion-tracker/user-preferences.html b/docs/latest/_book/history/v1/lesion-tracker/user-preferences.html deleted file mode 100644 index 5b6f1d0ac..000000000 --- a/docs/latest/_book/history/v1/lesion-tracker/user-preferences.html +++ /dev/null @@ -1,997 +0,0 @@ - - - - - - - User Preferences ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                  -
                                                                  - - - - - - - - -
                                                                  - -
                                                                  - -
                                                                  - - - - - - - - - -
                                                                  -
                                                                  - -
                                                                  -
                                                                  - -
                                                                  - -

                                                                  Lesion Tracker - User Preferences

                                                                  -

                                                                  To view User Preferences dialog, select Preferences on the Configuration menu. User Preferences dialog includes a couple of tabs:

                                                                  -

                                                                  Configuration Menu

                                                                  -

                                                                  Keyboard Shortcuts

                                                                  -

                                                                  There are a number of default shortcuts for the defined tools. To change the shortcut for the tool, type the desired key into the tool field.

                                                                  -

                                                                  Keyboard Shortcuts

                                                                  -

                                                                  Window Width & Level Presets

                                                                  -

                                                                  There are a number of default Window Width/Level settings in the Window W/L tab. To create a new setting, enter the desired column field.

                                                                  -

                                                                  Window W/L

                                                                  -

                                                                  Color Themes

                                                                  -
                                                                    -
                                                                  1. To modify the colors in the viewer, select Themes from Configuration menu.
                                                                  2. -
                                                                  3. Select a theme then click Apply theme to change the theme.
                                                                  4. -
                                                                  -

                                                                  Themes

                                                                  - - -
                                                                  - -
                                                                  -
                                                                  -
                                                                  - -

                                                                  results matching ""

                                                                  -
                                                                    - -
                                                                    -
                                                                    - -

                                                                    No results matching ""

                                                                    - -
                                                                    -
                                                                    -
                                                                    - -
                                                                    -
                                                                    - - -
                                                                    - - - - - - - - - - - - - - -
                                                                    - - -
                                                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/lesion-tracker/using-the-viewer.html b/docs/latest/_book/history/v1/lesion-tracker/using-the-viewer.html deleted file mode 100644 index b3797e9be..000000000 --- a/docs/latest/_book/history/v1/lesion-tracker/using-the-viewer.html +++ /dev/null @@ -1,1184 +0,0 @@ - - - - - - - Using the Viewer ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                    -
                                                                    - - - - - - - - -
                                                                    - -
                                                                    - -
                                                                    - - - - - - - - - -
                                                                    -
                                                                    - -
                                                                    -
                                                                    - -
                                                                    - -

                                                                    Lesion Tracker - Using the Viewer

                                                                    -

                                                                    After you double-click a study, the Lesion Tracking imaging application will be launched. The basic patient and study data is displayed in the Image Viewer.

                                                                    -

                                                                    Viewer

                                                                    -

                                                                    Switching Studies and Series

                                                                    -

                                                                    There are two methods to switch studies and series inside each viewport:

                                                                    -

                                                                    Studies Panel

                                                                    -

                                                                    Studies Panel at the left side of the workspace allows you to change studies and series. Click Studies button to toggle Studies Panel. You can view images in two ways:

                                                                    -
                                                                      -
                                                                    1. Double-click the desired series thumbnail.
                                                                    2. -
                                                                    3. Drag and drop the desired series thumbnail on the image viewer.
                                                                    4. -
                                                                    -

                                                                    Studies Panel

                                                                    -

                                                                    Quick Switch Tool

                                                                    -

                                                                    Quick Switch Tool in the top-middle of the workspace allows you to switch studies and series for the active image viewer easily. Selected series will be colored by the theme colors.

                                                                    -

                                                                    Quick Switch Tool

                                                                    -

                                                                    Image Manipulation Tools

                                                                    -

                                                                    Image Manipulation Tools are available in the toolbar at the top of the workspace.

                                                                    -

                                                                    Zoom Tool

                                                                    -

                                                                    There are a couple of ways to zoom the image:

                                                                    -
                                                                      -
                                                                    1. Select Zoom Tool and down on the image with the left mouse button.
                                                                    2. -
                                                                    3. Down on the image the right mouse button without selecting Zoom Tool.
                                                                    4. -
                                                                    -

                                                                    Zoom

                                                                    -

                                                                    Window Width & Level

                                                                    -

                                                                    There are a couple of ways to change the window/level of the image:

                                                                    -
                                                                      -
                                                                    1. Select Levels Tool and drag on the image with the left mouse button. Dragging up decreases the level and dragging left decreases the window width.

                                                                      -

                                                                      Window W/L

                                                                      -
                                                                    2. -
                                                                    3. Alternatively, you can use default Window/Level Presets which are defined in User Preferences dialog or create your window level values.

                                                                      -

                                                                      Window W/L Presets

                                                                      -
                                                                    4. -
                                                                    -

                                                                    Pan Tool

                                                                    -

                                                                    There are a couple of ways to pan the image:

                                                                    -
                                                                      -
                                                                    1. Select Pan Tool and move the image around the screen with the left mouse button.
                                                                    2. -
                                                                    3. Move the image around the screen with the middle mouse button without selecting Pan Tool.
                                                                    4. -
                                                                    -

                                                                    Pan Tool

                                                                    -

                                                                    Stack Scroll Tool

                                                                    -

                                                                    There are a number of ways to scroll images:

                                                                    -
                                                                      -
                                                                    1. Scroll up and down the mouse wheel.
                                                                    2. -
                                                                    3. Drag the scroll bar at the right side of the image viewer.
                                                                    4. -
                                                                    5. Use Up and Down buttons on the keyboard.
                                                                    6. -
                                                                    -

                                                                    Scroll Tool

                                                                    -

                                                                    Lesion Tracking Basics

                                                                    -

                                                                    View Case Response Criteria

                                                                    -

                                                                    LesionTracker supports Conformance Checks for RECIST 1.1 and click Trial to view Response Criteria details.

                                                                    -

                                                                    Note: Trial button is available if the study is associated with a timepoint.

                                                                    -

                                                                    Response Criteria

                                                                    -

                                                                    Measurements Table

                                                                    -

                                                                    To view measurements and manipulate the lesions, click Measurements button at the top-right of the workspace. The Measurements table will be displayed at the right side of the workspace. To hide the Measurements the table, click Measurements button.

                                                                    -

                                                                    Note: Measurements button is available if the study is associated with a timepoint.

                                                                    -

                                                                    Measurements

                                                                    -

                                                                    Target Tool

                                                                    -
                                                                      -
                                                                    1. To create a target, select Target Tool and click on the image.
                                                                    2. -
                                                                    3. Hold, drag and release the mouse button to create the target.

                                                                      -

                                                                      Target Tool

                                                                      -
                                                                    4. -
                                                                    5. To label the target, click Add Label button.

                                                                      -

                                                                      Target Label

                                                                      -
                                                                    6. -
                                                                    7. To resize the measurement, hover the mouse over the end points of the target then click and drag.

                                                                      -
                                                                    8. -
                                                                    9. To rename the lesion, click the lesion number in the Measurements table then click Rename

                                                                      -

                                                                      Rename Target

                                                                      -
                                                                    10. -
                                                                    11. To delete the lesion, click the lesion number in the Measurements table then click Delete. It will delete the lesion from the Measurements table and the image.

                                                                      -

                                                                      Delete Target

                                                                      -
                                                                    12. -
                                                                    -

                                                                    Completely Resolved (CR) Target Tool

                                                                    -

                                                                    To make a lesion completely resolved, click Target Tool and select CR Target from Target Tool pop up.

                                                                    -

                                                                    CR Target Tool

                                                                    -

                                                                    Unknown (UN) Target Tool

                                                                    -

                                                                    To mark a lesion as unknown, click Target Tool and select UN Target from Target Tool pop up.

                                                                    -

                                                                    UN Target Tool

                                                                    -

                                                                    Non-Target Tool

                                                                    -
                                                                      -
                                                                    1. To create a non-target, select Non-Target Tool and click on the image.
                                                                    2. -
                                                                    3. Hold, drag and release the mouse button to create a non-target.

                                                                      -

                                                                      Non-Target Tool

                                                                      -
                                                                    4. -
                                                                    5. Select Lesion Location and Lesion Location Response then click Confirm.

                                                                      -

                                                                      Non-Target Select Location

                                                                      -
                                                                    6. -
                                                                    7. To resize the measurement, hover the mouse over the end points of the non-target then click and drag.

                                                                      -
                                                                    8. -
                                                                    9. To rename the lesion, click the lesion number in the Measurements table then click Rename
                                                                    10. -
                                                                    11. To delete the lesion, click the lesion number in the Measurements table then click Delete. It will delete the lesion from the Measurements table and the image.
                                                                    12. -
                                                                    -

                                                                    View Lesion

                                                                    -

                                                                    To view the lesion on the image, click the measurement record in the Measurements table then the image which includes the lesion will be displayed by activating the selected lesion.

                                                                    -

                                                                    View Lesion

                                                                    -

                                                                    Conformance Checks

                                                                    -

                                                                    Any lesion that will conflict with Response Criteria for RECIST 1.1 will be flagged in the Measurements table. To view criteria non-conformities, click the icon at the left of the lesion record in the Measurements table.

                                                                    -

                                                                    Conformance Check

                                                                    -

                                                                    Generating PDF Reports

                                                                    -
                                                                      -
                                                                    1. To generate reports of measurements, click Generate Report button at the bottom of the Measurements table.
                                                                    2. -
                                                                    -

                                                                    Generate PDF

                                                                    -
                                                                      -
                                                                    1. A PDF file which includes target and non-target measurements with annotated image snapshots will be created.
                                                                    2. -
                                                                    -

                                                                    Report PDF

                                                                    -

                                                                    Saving Measurements

                                                                    -

                                                                    There a couple of ways to save changes:

                                                                    -
                                                                      -
                                                                    1. Click Save button at the top-right of the workspace.

                                                                      -

                                                                      Save

                                                                      -
                                                                    2. -
                                                                    3. Click Study list to save changes and go back to Study List.

                                                                      -

                                                                      Save

                                                                      -
                                                                    4. -
                                                                    -

                                                                    Timepoint Comparison

                                                                    -

                                                                    LesionTracker allows to compare time points and manipulate the measurements on the timepoint images. To launch the compare mode:

                                                                    -
                                                                      -
                                                                    1. Associate a study with Follow-up timepoint then double-click Follow-up study. Follow-up and Baseline studies will be displayed in 1x2 layout and Baseline study will show the image which includes the first target measurement as default.
                                                                    2. -
                                                                    3. Measurements in the Follow-up must be created in the same order as they were on Baseline.

                                                                      -

                                                                      Compare Mode

                                                                      -
                                                                    4. -
                                                                    -

                                                                    Comparison

                                                                    -

                                                                        Comparison tab in the Measurements table allows you to display lesions in the timepoint compared.

                                                                    -

                                                                    Comparison

                                                                    -

                                                                    Key Timepoints

                                                                    -

                                                                    Key Timepoints tab in the Measurements table allows you to display the lesions by the timepoints at the same time.

                                                                    -

                                                                    Key Timepoints

                                                                    -

                                                                    Image Review

                                                                    -

                                                                    To compare the lesions in Baseline and Follow-up, click the lesion record in the Measurements table. The recorded lesions will be displayed on the Baseline and Follow-up images

                                                                    -

                                                                    Stack Scroll Tool**

                                                                    -

                                                                    To scroll between two series synchronously, click More button and select Stack Scroll Tool.

                                                                    -

                                                                    Stack Scroll

                                                                    -

                                                                    Case Progress

                                                                    -

                                                                    Case Progress icon displays the progress of target and non-target lesions which are assessed out of total lesions. Number in the middle of the icon shows the number of lesions which are not assessed.

                                                                    -

                                                                    Assessment Progress

                                                                    -

                                                                    Heads Up Display (HUD) Panel

                                                                    -

                                                                    To have a quick view of the Measurements table, click HUD button at the top-right of the workspace. You can easily move and resize the HUD Panel on the workspace.

                                                                    -

                                                                    HUD Panel

                                                                    -

                                                                    Note: HUD button is only available if the study is associated with a timepoint.

                                                                    -

                                                                    Additional Tools

                                                                    -

                                                                    Temporary Length Measurement

                                                                    -

                                                                    To check the size of a lesion without adding to the Measurements table, select Temp Tool. -Temp Tool

                                                                    -

                                                                    Stack Scroll Tool

                                                                    -

                                                                    To scroll images:

                                                                    -
                                                                      -
                                                                    1. Click More button and select Stack Scroll Tool.
                                                                    2. -
                                                                    3. Drag down and up on the image viewer with the left mouse button.
                                                                    4. -
                                                                    -

                                                                    Stack Scroll

                                                                    -

                                                                    Reset Image Tool

                                                                    -

                                                                    To reset the geometric orientation, position and magnification of the image in the active image viewer, click More button and select Reset Tool. -Reset

                                                                    -

                                                                    Rotate Right Tool

                                                                    -

                                                                    To rotate the image in the active image viewer 90 degree clockwise, click More button and select Rotate Right Tool. -Rotate Right

                                                                    -

                                                                    Flip H Tool

                                                                    -

                                                                    To flip the image in the active image viewer horizontally, click More button and select Flip H Tool. -FlipH

                                                                    -

                                                                    Flip V Tool

                                                                    -

                                                                    To flip the image in the active image viewer vertically, click More button and select Flip V Tool. -FlipV

                                                                    -

                                                                    Invert Tool

                                                                    -

                                                                    To invert the image in the active image viewer, click More button and select Invert Tool. -Invert

                                                                    -

                                                                    Magnify Tool

                                                                    -

                                                                    Magnify Tool allows to zoom in a part of the image without changing zoom level of the whole image.

                                                                    -
                                                                      -
                                                                    1. Click More button and select Magnify Tool.
                                                                    2. -
                                                                    3. Click and drag around the image with the left mouse button.
                                                                    4. -
                                                                    -

                                                                    Magnify

                                                                    -

                                                                    3.7.9. Ellipse Tool

                                                                    -

                                                                    Ellipse Tool allows you to draw elliptical annotation with mean and standard deviation values.

                                                                    -
                                                                      -
                                                                    1. Click More button and select Ellipse Tool then click on the image.
                                                                    2. -
                                                                    3. Hold, move and release the mouse button to create the annotation.
                                                                    4. -
                                                                    -

                                                                    Ellipse

                                                                    -

                                                                    Save Screenshot

                                                                    -

                                                                    To save a screenshot of the current active viewport:

                                                                    -
                                                                      -
                                                                    1. Click More button and click Save Screenshot.
                                                                    2. -
                                                                    3. Set image name and sizes and click Download.
                                                                    4. -
                                                                    -

                                                                    Download

                                                                    -

                                                                    CINE Tool

                                                                    -

                                                                    CINE Tool allows to play through stacks of images in the active viewport.

                                                                    -
                                                                      -
                                                                    1. Click More button and click CINE Tool. The CINE dialog will pop up.
                                                                    2. -
                                                                    3. Click the desired media options from the CINE dialog.
                                                                    4. -
                                                                    5. To close CINE dialog, click CINE Tool.
                                                                    6. -
                                                                    -

                                                                    CINE

                                                                    - - -
                                                                    - -
                                                                    -
                                                                    -
                                                                    - -

                                                                    results matching ""

                                                                    -
                                                                      - -
                                                                      -
                                                                      - -

                                                                      No results matching ""

                                                                      - -
                                                                      -
                                                                      -
                                                                      - -
                                                                      -
                                                                      - - -
                                                                      - - - - - - - - - - - - - - -
                                                                      - - -
                                                                      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/package.json b/docs/latest/_book/history/v1/package.json deleted file mode 100644 index 078ec0246..000000000 --- a/docs/latest/_book/history/v1/package.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "ohif-viewers-docs", - "version": "1.0.0", - "description": "Open Health Imaging Foundation Viewers Metarepo for documentation", - "main": ".eslintrc.js", - "directories": { - "doc": "docs" - }, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "docs": "gitbook install && gitbook serve", - "docs:deploy": "bash ./update-docs.sh" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/OHIF/Viewers.git" - }, - "keywords": [ - "dicom", - "cornerstone", - "OHIF", - "zero", - "footprint", - "medical", - "imaging", - "viewer" - ], - "author": "Open Health Imaging Foundation", - "license": "MIT", - "bugs": { - "url": "https://github.com/OHIF/Viewers/issues" - }, - "homepage": "https://github.com/OHIF/Viewers#readme", - "dependencies": { - "gitbook-plugin-anchors": "^0.7.1", - "gitbook-plugin-edit-link": "^2.0.2", - "gitbook-plugin-ga": "^2.0.0", - "gitbook-plugin-github": "^3.0.0", - "gitbook-plugin-sitemap": "^1.2.0", - "gitbook-plugin-theme-cornerstone": "^1.1.1" - }, - "devDependencies": { - "gitbook-cli": "^2.3.2" - } -} diff --git a/docs/latest/_book/history/v1/packages/measurements.html b/docs/latest/_book/history/v1/packages/measurements.html deleted file mode 100644 index e5d214962..000000000 --- a/docs/latest/_book/history/v1/packages/measurements.html +++ /dev/null @@ -1,978 +0,0 @@ - - - - - - - Measurements Package (ohif-measurements) ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                      -
                                                                      - - - - - - - - -
                                                                      - -
                                                                      - -
                                                                      - - - - - - - - - -
                                                                      -
                                                                      - -
                                                                      -
                                                                      - -
                                                                      - -

                                                                      Measurements Package (ohif-measurements)

                                                                      -

                                                                      Package design

                                                                      -

                                                                      Usage

                                                                      -

                                                                      How to define a Measurement tool

                                                                      -

                                                                      How to validate Measurements

                                                                      -

                                                                      Data exchange concepts

                                                                      -

                                                                      Longitudinal Measurements

                                                                      -

                                                                      Timepoints

                                                                      - - -
                                                                      - -
                                                                      -
                                                                      -
                                                                      - -

                                                                      results matching ""

                                                                      -
                                                                        - -
                                                                        -
                                                                        - -

                                                                        No results matching ""

                                                                        - -
                                                                        -
                                                                        -
                                                                        - -
                                                                        -
                                                                        - - -
                                                                        - - - - - - -
                                                                        - - -
                                                                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/history/v1/search_index.json b/docs/latest/_book/history/v1/search_index.json deleted file mode 100644 index 10fa9216f..000000000 --- a/docs/latest/_book/history/v1/search_index.json +++ /dev/null @@ -1 +0,0 @@ -{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["&","(demo)","(dicom","(e.g.","(https://epad.stanford.edu/),","/","allow","altern","amazon","applic","applications.","applications:","approach","archiv","assess","azur","back","base","blob","built","burden","client","commun","concern","connect","construct","core","cornerston","css","deploy","design","develop","dicom","display","document","easili","end","epad","exampl","exist","extend","facilit","famili","focus","foundat","framework","full","gener","github","ground","health","host","html","imag","images.","includ","integr","intend","introduct","itself","javascript","jpeg).","lesion","libraries.","list","loader","look","manipul","medic","medicine.","messages).","meteor,","modern","node.j","non","object","offer","ohif","oncolog","open","over","pac","packag","page","pages),","platform","platform.","png,","portion","preview","preview?","primari","provid","purpos","quantit","removed.","resourc","s3,","scope","serv","side","similar","simpl","singl","site","solut","sourc","specif","stack","standalon","standard","stanford","static","storag","storage,","studi","support","systems.","test","three","through","time.","tracker","tracker,","tracker:","tumour","underli","us","uses.","viewer","viewer,","viewer.","viewer:","web","web,"],"essentials/installation.html":["\"no","(dicom","(e.g.","(mac","(ohifview","(or","../config/orthancdicomweb.json","/","5.x","add","advice.","applic","application:","archiv","archive'","avail","browser.","chang","check","choos","click","clone","code","configur","console,","correctly,","data","date","dcm4chee","dcmtk'","depend","depth","dicom","dicomcloud","directori","docker","doubl","download","environ","error","everyth","feel","file.","files.","filter","found\"","free","get","git","git:","git@github.com:ohif/viewers.git","horo","http://localhost:3000/","imag","instal","instruct","interface)","keep","latest","launch","lesion","lesiontracker)","list","list.","load","make","master","messag","meteor","meteor_package_dirs=\"../packages\"","more","need","new","note:","npm","ohif","on","only)","open","oper","option","orthanc","osirix","osx","packag","package_dirs=\"../packages\"","page","pull","range.","receiv","repositori","request","run","see","server","set","settings.","sourc","storescu","studi","studies,","system","tab","termin","test","tracker","tri","troubleshoot","up","upload","us","variabl","viewer","viewer.","visit","want","web","wider","windows,","work","zip"],"essentials/getting-started.html":["...","get","start"],"essentials/architecture.html":["(blaze),","(e.g.","(officially:","(via","actual","ad","angular,","appear","applic","application,","application.","architectur","blaze,","brief,","built","child","client","code","compon","creat","data","defin","desir","distribut","each","easi","element","exist","final","framework","fulli","includ","integr","interfac","larg","layer","layout","lead","logic","make","mechan","meteor","mongodb","necessari","need","new","node.js,","ohif","option","overal","packag","packages,","page","protocol,","publish/subscrib","push","react,","reactiv","rel","rout","server","set","short.","small","specif","specifi","structur","support","templat","to:","tool","toolbar)","top","ui.","unofficially:","user","view","viewer","vue).","websocket"],"essentials/configuration.html":["(boolean):","(integer):","(range)","02/10/2017","02/15/2017","02/15/2017.","5","access","avail","between","collect","config","configur","date","default","defin","demo","develop","drop","dropcollect","environments.","few","file","filter","find","finish","folder.","information.","it'","list.","meteor","mongo","more","ohif.uisettings.","pre","schema","search","see","server","set","show","soon","starting.","studi","studylistdatefilternumday","true","ui","us","website."],"essentials/troubleshooting.html":["(e.g.","1.","2.","3.","allow","altern","archive.","authent","basic","browser).","can't","cannot,","check","client","common","configur","connect","curl,","debug","dicom","dicomweb","dims","document","enabl","http","imag","incorrect","incorrectly.","list","meteor","ohif","over","pac","password","problem","provided.","qido","queri","reason","refer","retriev","root","server","step","studi","troubleshoot","url","us","usernam","wado","web"],"connecting-to-image-archives/options.html":["'ohifdcm'","(see","add","aetitl","archiv","archive.","case","connect","depend","dicom","dicomweb","dicomweb.","dims","dimse).","exampl","https://github.com/ohif/viewers/wiki/orthanc","imag","known","modal","on","options?","orthanc,","pac","requir","setup","side","support","system.","up","us","whatsoever,","wherea"],"connecting-to-image-archives/dicomweb.html":["adoption.","archiv","dicom","dicomweb","exchang","fulli","gain","guidelin","imag","internet.","medic","metadata","over","recent","refer","rest","servic","set","standard","support","web","wider","yet,"],"connecting-to-image-archives/dimse.html":["(currently)","archiv","certain","communicate.","dicom","dicomweb.","dims","element","faster","instanc","messag","metadata","method","pac","provid","queri","result","retriev","series,","servic","stand","standard","study,","support","support.","systems,","through","wide"],"connecting-to-image-archives/dcm4chee-with-docker.html":["'light","(https://www.docker.com/)","+","../config/dcm4cheedimse.json","/opt/","/var/local/","admin","admin,","admin.","administr","arc","arc/aets/dcm4chee/r","arc/aets/dcm4chee/wado","arc/ui","archiv","archive'","base","cd","chang","compos","compose.env","compose.yml","configur","console:","contain","containers:","creat","dcm4chee","dcm4chee:","dcm4cheedimse.json","default","dicom","docker","docker#us","docker#web","docker.","easiest","excel","file","follow","guidelin","here:","http://localhost:5601","http://localhost:8080/auth,","http://localhost:8080/dcm4che","http://localhost:9990,","https://github.com/dcm4che/dcm4che","instal","instruct","keycloak","kibana","lesion","light/wiki/run","login","mac","meteor","multipl","need","note:","ohif","ohifview","origin","osx","package_dirs=\"../packages\"","password","password:","path","probabl","provid","qido","refer","repository:","role","rs","run","secured,","servic","set","slightly.","sourc","specifically,","start","stop","stow","team","tracker","ui:","uri:","url","url:","us","user","usernam","username:","viewer","w/","wado","web","wildfli","you.","|"],"connecting-to-image-archives/orthanc-with-docker.html":["'//c/users/erik/sampledata'","/sampledata","4242:4242","8042:8042","absolut","allow","attach","closed,","command","creat","data","depend","differ","docker","docker.","first","follows:","imag","image.","image:","instanc","jodogne/orthanc","method","name","need","note:","order","orthanc","p","path","persist","plugin","remov","rm","run","sampledata","so:","start","step","stopped!","stopped,","storag","studi","temporari","two","upload","us","v","volum","volume,","w/","want","whether","windows,"],"connecting-to-image-archives/osirix.html":["...","example:","osirix"],"data/data-hierarchy.html":["data","display","frame","hierarchi","instances,","series,","set","studies,"],"data/image-viewport.html":["compon","imag","imageviewerviewport","main","viewport"],"layout/layout-management.html":["layout","manag"],"layout/hanging-protocols.html":["hang","protocol"],"packages/measurements.html":["(ohif","concept","data","defin","design","exchang","longitudin","measur","measurements)","packag","timepoint","tool","usag","valid"],"deployment/building-for-production.html":["\"","\",\"\"","\"`n\",\"\"","\"`r\",\"\"","\"machine\")","$set","$settings,","(a","(at","(check","(it'","(rememb","../..","../config/orthancdicomweb.json","../config/orthancdicomweb.json)","..\\config\\orthancdicomweb.json",".json","27017","3","3.0)","=","[environment]::setenvironmentvariable(\"meteor_settings\",","access","accordingli","action","activ","actual","ad","add","added.","admin:","anoth","app","automat","back","befor","both,","browser","build","build.","built","bundl","button","button)","case","cat","cd","chang","check","checkbox","click","cmd","cmd,","column.","command","config","config/orthancdicomweb.json","configur","connect","consid","content","corner.","correspond","creat","current","databas","default).","depend","dependencies:","describ","dialog","dialog,","dicom","directli","directori","docs)","doubt","dure","environ","everyth","field","file","fill","first,","folder","folder:","form,","go","hostnam","http://localhost:3000","http://localhost:3000,","inform","information,","insid","instal","installed:","instead.","it'","left","listed.","local","local,","locat","location.","location.):","main.j","make","manual","manually.","menu,","meteor","meteor_package_dirs=\"../packages\"","meteor_set","meteor_settings=$(cat","mongo_url:","mongo_url=mongodb://localhost:27017/myapp","mongodb","mongodb.","myoutputfold","myoutputfolder.","myoutputfolder/bundl","necessari","need","new","node","node.j","node.js:","non","normally,","now","npm","ohif","ohifviewer'","ohifviewer/.","ohifviewerfolderloc","ok,","open","option","option.","orthanc","output","own.","packag","page","point","port","port:","port=3000","powershel","powershell,","prepar","process","process,","product","production:","programs/serv","raw","reference.","refresh","rememb","remot","replac","requir","right","root_url:","root_url=http://localhost","run","runa","running.","save","select","server","server,","server.","server:","set","shell","skip","specif","start","step,","step.","sure","then:","toggl","top","tutori","two","updat","url","us","user","var.","variabl","verb","version","viewer","viewer.","way","way,","web","went","window"],"deployment/security.html":["secur"],"I-want-to/add-a-tool-to-the-viewer.html":["(e.g.","(if","/","a:","add","angle):","array","b:","button","cine","command","cornerston","current","custom","exampl","few","found","functionlist","https://github.com/ohif/viewers/blob/574a6d02b090b8b2f020430c5919f8377b8316c6/ohifviewer/client/components/toolbarsection/toolbarsection.j","https://github.com/ohif/viewers/blob/574a6d02b090b8b2f020430c5919f8377b8316c6/ohifviewer/client/components/viewer/viewer.js#l12","https://github.com/ohif/viewers/blob/574a6d02b090b8b2f020430c5919f8377b8316c6/packages/lesiontracker/client/tools.js#l2","https://github.com/ohif/viewers/tree/master/packages/ohif","invert","it'","itself","length","lesion","lesiontracker/client/compat","play,","repository.","skip","someth","step.","steps:","such","toggl","tool","tool,","toolbar","toolbar:","toolmanag","tracker:","us","viewer","viewport):","you'r"],"I-want-to/add-a-logo-to-the-viewer.html":["\"brand\"}}","...","add","appli","applic","application'","bg","big","block","blue\"","brand","brand.","brandhref:","brandhref=\"your","call","class","content","context.","creat","custom","default","defin","design","display","element","example,","folder.","follow","framework","header","header.","headerclasses:","headerclasses=\"head","helper","layout","layout.","left","link","link\"}}","list","locat","logo","main","name","ohif","packag","paramet","pass","pleas","provid","public","section","see","side","steps.","svg","template.","text","top","url","viewer","work","{{#header","{{#header}}","{{#section","{{/header}}","{{/section}}"],"example-applications/ohif-viewer.html":["ohif","viewer"],"example-applications/lesion-tracker.html":["lesion","tracker"],"example-applications/standalone-viewer.html":["standalon","viewer"],"standalone-viewer/usage.html":["(\"localhost:3000\").","(\"myoutputfolder\")","../etc/redirectingsimpleserver.pi","../etc/sample*","../myoutputfold","/api","api","api/","appear","applic","application:","available.","base","baseurl/api/[id","broken,","browser","build","built","bundl","case,","case.","cd","client","copi","cp","creat","css.","data","defin","dependencies:","dicoms:","file","first,","fix","fixed.","folder","folder.","follow","found","g","handl","html,","http","http://localhost:3000/api/samplejpeg.json","http://localhost:3000/sampledicom.json","http://localhost:3000/samplejpeg.json","http://localhost:3000/testdicom","http://localhost:3000/testid","includ","index.html.","instal","javascript,","json","load","localhost:3000","locally.","make","mean","meteor","meteor_package_dirs=\"../../packages\"","mkdir","myoutputfold","navig","need","next,","note:","npm","on","open","or,","output","packag","parameter].","parameters.","popul","possibl","pre","production,","python","quick","redirect","request","retriev","root_url=http://localhost:3000","rout","run","sake","sampl","sampleclientonlybuild","script","server","server.","side","simpl","simplic","someth","standalon","start","sudo","sure","test","typic","u","url","url.","us","usag","version","viewer","viewer,","viewer.","web","with:"],"lesion-tracker/user-manual.html":["account","audit","instal","lesion","manag","manual","orthanc","prefer","server","studi","timepoint","track","tracker","trail","user","window"],"lesion-tracker/installation-on-windows.html":["&","'http://localhost:3000'","'http://localhost:8042'","4","accept","agree,","agreement","agreement,","also,","app","applic","application.","auto","automat","background","befor","browser","c:\\program","click","close","complet","completed,","computer'","configur","connect","continue.","creat","default","desktop","desktop.","dialog","dialog.","display","done","done,","doubl","download","eas","easiest","enabl","execut","exist","featur","file","files\\ohif\\lesiontrack","final","find","finish","folder","folder,","folder:","give","imag","instal","installation.","installer,","installer.","latest","launch","left","lesion","lesiontrack","lesiontracker,","licens","list","locat","location.","manag","manually.","menu.","mongodb","mongodb,","name","next","next.","nodej","obtain","ohif","ohif,","open","order","orthanc","panel.","pop","prerequisit","prerequisites:","program","project","provid","read","remove;","see","select","server","server,","server.","servic","services.exe:","services:","set","settings.","setup","shortcut","shortcuts:","start","started.","stop","studi","term","tracker","turn","two","uninstal","uninstall.","up.","upload","url","us","version","viewer","way","window","window.","windows,","wizard"],"lesion-tracker/manage-studies-in-orthanc.html":["access","automat","background.","brought","browser","browser.","button","click","clinic","complete.","creat","data","default","delet","dicom","drag","eas","explor","explorer,","explorer.","file","http://localhost:8042","instal","interact","interface,","lesion","lesiontrack","list.","load","manag","medic","menu.","open","orthanc","page.","patient","patient.","power","research.","right","routin","run","script","select","serv","server","servic","shortcut","simpl","source,","standalon","start","studi","study.","those","through","top","tracker","until","upload","us","view","wait","web"],"lesion-tracker/user-accounts.html":["access","account","account.","address.","allow","alreadi","authent","button","chang","click","configur","drive","email","enter","field","fill","forgot","icon","includ","join","lesion","lesiontrack","link","login","logout","logout,","menu","menu.","need","new","next","note:","now","page.","password","password,","password:","process","regist","registr","reminder.","remov","requir","reset","right","select","send","sent","sign","skip","test","top","tracker","us","user","user,","versions.","viewer.","workspac"],"lesion-tracker/study-and-timepoint-management.html":["(under","...","14","allow","alreadi","also,","anonym","associ","associate,","association.","bottom","case","chang","click","column","column,","column.","context","coupl","current","day","delet","desir","detail","development)","dialog","dialog.","disabl","dissociated.","doubl","each","enter.","export","field","field.","filter","forgot","give","header","header.","hold","identifi","includ","key","lesion","level.","link","list","manag","menu","menu,","menu.","more","multipl","number","on","oper","option","page","page.","pagin","per","pop","press","provid","redirect","relat","remov","right","row","row,","row.","same","save","see","select","send","seri","series,","shift","simpli","sort","studi","studies,","studies.","study,","study.","study:","summari","text","time,","timepoint","timepoint,","tracker","type","unlink","unselect","up.","view","viewer","way","within"],"lesion-tracker/using-the-viewer.html":["&","(cr)","(hud)","(un)","1.1","1x2","3.7.9.","90","activ","ad","add","addit","allow","alternatively,","annot","annotation.","applic","around","assess","assessed.","associ","avail","back","bar","baselin","baseline.","basic","between","bottom","button","button.","case","chang","changes:","check","cine","click","clockwise,","close","color","colors.","compar","compared.","comparison","complet","confirm.","conflict","conform","conformities,","coupl","cr","creat","created.","criteria","current","data","decreas","default","default.","defin","degre","delet","delete.","desir","details.","deviat","dialog","dialog,","dialog.","display","doubl","down","download.","drag","drag.","draw","drop","each","easili","easily.","ellips","ellipt","end","file","first","flag","flip","follow","gener","geometr","go","h","head","hide","hold,","horizontally,","hover","hud","icon","imag","image,","image.","image:","images.","images:","includ","insid","invert","key","keyboard.","label","launch","launched.","layout","left","length","lesion","lesion,","lesion.","lesions,","lesions.","lesiontrack","level","list","list.","locat","magnif","magnifi","make","manipul","mark","mean","measur","measurement,","measurements,","media","method","middl","mode:","more","mous","move","name","non","note:","number","option","order","orientation,","out","over","pan","panel","panel.","part","patient","pdf","play","point","pop","posit","prefer","preset","progress","quick","recist","record","releas","renam","report","reset","resiz","resolv","resolved,","respons","review","right","rotat","same","save","screen","screenshot","screenshot.","scroll","select","seri","series.","set","show","side","size","snapshot","stack","standard","studi","study,","study.","support","switch","synchronously,","tab","tabl","table,","table.","target","target,","target.","temp","temporari","theme","through","thumbnail","thumbnail.","time","time.","timepoint","timepoint.","toggl","tool","tool**","tool.","toolbar","top","total","track","tracker","trial","two","un","unknown","unknown,","up","up,","up.","us","user","v","values.","vertically,","view","viewer","viewer,","viewer.","viewport.","viewport:","way","ways:","wheel.","whole","width","width.","window","window/level","without","workspac","workspace.","zoom"],"lesion-tracker/user-preferences.html":["&","appli","chang","click","color","column","configur","coupl","creat","default","defin","desir","dialog","dialog,","enter","field.","includ","key","keyboard","lesion","level","menu.","modifi","new","number","prefer","preset","select","set","setting,","shortcut","tab.","tabs:","theme","theme.","tool","tool,","tools.","tracker","type","user","view","viewer,","w/l","width","width/level","window"],"lesion-tracker/server-management.html":["allow","between","click","configur","inform","lesion","lesiontrack","manag","menu.","multipl","server","servers,","support","switch","them.","tracker"],"lesion-tracker/audit-trail.html":["audit","column","columns,","columns.","configur","filter","lesion","log","menu.","multipl","relat","select","tracker","trail","trails,","type","view"],"faq/general.html":["&","(e.g.","(or","(radic","510(k)","academ","accept","account","accounts)","actual","add","affect","alreadi","alway","applic","ask","audit","automat","avail","becom","befor","benefit","best","browser","browser,","bug","bug.","bug?","bugs.","build","built","cancer","ce","challeng","clear","clearanc","clearli","collabor","collaborations?","collaborators.","comment","commerci","commission?","commun","community.","compani","complianc","compliance.","compliant.","compliant?","compon","concern","consid","consult","contact","contribut","creat","criteria","current","defin","demonstr","describ","develop","directli","discuss","don't","dramat","duplic","email","ensur","environment:","european","everyon","exists,","expect","experience.","extrem","f.d.a","f.d.a.","faster","featur","feature,","feature?","file","filing,","fix","follow","foundat","framework","framework,","framework.","frequent","fulfil","fund","gener","github","given","go","gone","gordon","group","guess","happen,","happened.","happi","harri","health","hear","help","highli","hipaa","hospit","however,","identif","identifi","imag","imaging)","impact","includ","interest","interfac","issu","issue!","issue,","issue.","issue:","it,","it.","j.","know","lesion","lewi","licens","list","list.","logoff,","make","mani","mark","marked.","massachusett","member","moment","more","name","new","no.","nobodi","not,","not?","offer","ohif","onc","open","oper","organ","parti","pictur","platform","pleas","point.","post","prevent","primari","primarily.","prior","process","produc","product","propos","provid","pull","question","regulations.","relev","report","reports.","repository.","reproduc","reproducible:","request","research.","resourc","respond.","respons","result:","roadmap","roadmap,","rob","rout","rule","screenshot","screenshots:","search","seek","services.","shortcut","show","solutions.","spend","standalon","step","still","support","support,","support.","support?","sure","system,","taken.","tell","text.","there),","third","this,","thousand","through","time","tip","took","tracker","tracker,","trail,","tri","triag","u.s.","ui","ui,","uniqu","us","us.","useful:","user","version","viewer","viewer,","web","welcom","wish","words.","worth","you.","yourself"],"faq/technical.html":["(http://blazejs.org/)","(https://reactjs.org/)","(https://vuejs.org/),","alon","although","application.","ask","begin","blaze","bleed","build","built","certainli","conception,","configur","consid","cost","current","decoupl","downside,","drawbacks,","edg","effort","framework","frequent","lack","layer","mean","meteor","meteor?","migrat","on","outsid","plan","processes.","project","put","question","re","react","remain","remaind","resourc","signific","significant.","simpl","simpli","solution.","stand","stop","support","technic","technolog","templat","time","us","usabl","view","vue","way","web","without"],"contributing.html":["1.amazonaws.com/ohif","237","237,","abov","acceptable.","allow","amazon","appreci","appropri","autogener","avail","below","big","bit","branch.","build","central","chang","change,","changes?","code","consid","consum","consuming.","contribut","contributions,","creat","data","defined,","design","discuss","document","don't","download","each","ensur","entry,","eslint","example,","faq","featur","feedback","follow","fork","forum","function","gener","gitbook","github","guidanc","guidance.","help","https://deploy","integr","large.","link","look","made","make","netlifi","number","ohif","ohif.netlify.com/contributing.html","ohif.netlify.com/viewer/?url=https://s3.eu","pass","pleas","possible.","post","preview","provid","pull","qualiti","replac","repository,","repository.","request","request.","request:","requests:","requir","rest","review","reviewed.","s3.","scope","separ","soon","specif","standard","subject","submit","sure","sure.","test","testing.","this?","time","tip","triag","understand.","url","us","veri","viewer/sampledicom.json","well","without","work"]},"length":37},"tokenStore":{"root":{"0":{"2":{"docs":{},"/":{"1":{"0":{"docs":{},"/":{"2":{"0":{"1":{"7":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"5":{"docs":{},"/":{"2":{"0":{"1":{"7":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}},".":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"1":{"4":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}},"docs":{},".":{"1":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}},"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.031578947368421054}},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"w":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}}}}}}}}}},"x":{"2":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}},"docs":{}}},"2":{"3":{"7":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"docs":{}},"7":{"0":{"1":{"7":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.031578947368421054}}}},"3":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}},".":{"0":{"docs":{},")":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"7":{"docs":{},".":{"9":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}},"docs":{}}},"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684}}}},"4":{"2":{"4":{"2":{"docs":{},":":{"4":{"2":{"4":{"2":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.01834862385321101}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}},"5":{"1":{"0":{"docs":{},"(":{"docs":{},"k":{"docs":{},")":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"docs":{}},"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}},".":{"docs":{},"x":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}},"8":{"0":{"4":{"2":{"docs":{},":":{"8":{"0":{"4":{"2":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.01834862385321101}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"9":{"0":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}},"docs":{}},"docs":{},"&":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.015544041450777202}}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}}}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},".":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"/":{"docs":{},")":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},")":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},")":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},")":{"docs":{},",":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}}}}}}}}}}}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"z":{"docs":{},"e":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},")":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"d":{"docs":{},")":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388}}}}},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{"packages/measurements.html":{"ref":"packages/measurements.html","tf":2.5555555555555554}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}}}}}},"r":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},":":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"z":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},")":{"docs":{},":":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},":":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}}}}}}}},"t":{"docs":{},"'":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"f":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}},"s":{"docs":{},"e":{"docs":{},"e":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"y":{"docs":{},")":{"docs":{"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}},"r":{"docs":{},")":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}},"a":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"\"":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},")":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.017391304347826087}}}}},")":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}},"/":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"/":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"/":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.008695652173913044},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.009101251422070534},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.05},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}},"s":{"docs":{},"o":{"docs":{},",":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"o":{"docs":{},"n":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}},"m":{"docs":{},"a":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"p":{"docs":{},"p":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588}},"l":{"docs":{},"i":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}},"c":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.04854368932038835},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.019230769230769232},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}},":":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}},":":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388}}},",":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}},".":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.011029411764705883},"faq/technical.html":{"ref":"faq/technical.html","tf":0.027777777777777776}}},"'":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}},"i":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388}},"/":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}},"r":{"docs":{},"c":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513}},"h":{"docs":{},"i":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.03278688524590164},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}},"e":{"docs":{},"'":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353}}}}},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":10.009708737864077}}}}}}}}}},"/":{"docs":{},"a":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"d":{"docs":{},"c":{"docs":{},"m":{"4":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"/":{"docs":{},"r":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.018292682926829267}}},"w":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}}}}}}},"docs":{}}}}}}}}},"u":{"docs":{},"i":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}}}}},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.0391304347826087},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}}}}}}}}},"k":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}},"z":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}},"d":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"d":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":3.4350282485875705},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":3.3910256410256405},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}}}}}},"i":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.018292682926829267}},",":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513}}},".":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513}}}}}},":":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"v":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.010238907849829351}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}}},"p":{"docs":{},"t":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.045454545454545456},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":5.031914893617022},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},".":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}},"s":{"docs":{},")":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}}}},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},",":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}}},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},":":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"n":{"docs":{},"y":{"docs":{},"m":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}}}}},"o":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.045454545454545456},"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":5.166666666666667},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353}}}}}}},"b":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}}}}}},"o":{"docs":{},"v":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.01834862385321101}}}}}}},":":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},",":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}},",":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}},".":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.018292682926829267},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"[":{"docs":{},"i":{"docs":{},"d":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267}},"e":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}},"i":{"docs":{},"c":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}}},"r":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}},"c":{"docs":{},"k":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.038461538461538464}}}}},"a":{"docs":{},"z":{"docs":{},"e":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.027777777777777776}},",":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.019417475728155338},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}},"d":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":5.038860103626943},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.03825136612021858},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.02185792349726776}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.02844141069397042}},")":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.007963594994311717}}}}}}},"g":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.014705882352941176},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},".":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}},")":{"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684}}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{},",":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}}}}},"i":{"docs":{},"e":{"docs":{},"f":{"docs":{},",":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}},".":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},":":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}},"=":{"docs":{},"\"":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"e":{"docs":{},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.05}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"n":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"s":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}},":":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}},"g":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}},"i":{"docs":{},"g":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.04918032786885246}}}}},"c":{"docs":{},"k":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.0661764705882353},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.02857142857142857},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.07446808510638298},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.034782608695652174},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.05460750853242321},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.05}}}},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388}}}},"s":{"docs":{},"e":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"d":{"docs":{},",":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}}}}},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}},"l":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}}}}},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"u":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857}}}}}}},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"o":{"docs":{},"n":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.021052631578947368}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"r":{"docs":{},"c":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}}},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"data/image-viewport.html":{"ref":"data/image-viewport.html","tf":0.2857142857142857},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"s":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.018292682926829267}},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}},"y":{"docs":{},"m":{"docs":{},"l":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}},".":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}}}},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}},"e":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"t":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.014705882352941176}}}}}}},"a":{"docs":{},"r":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}},"i":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}}}}},"n":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"p":{"docs":{},"t":{"docs":{"packages/measurements.html":{"ref":"packages/measurements.html","tf":0.05555555555555555}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}},":":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513}}}}}},"i":{"docs":{},"d":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888},"contributing.html":{"ref":"contributing.html","tf":0.024539877300613498}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"m":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.031746031746031744},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}},"u":{"docs":{},"r":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":10.015873015873016},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.021052631578947368},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.02127659574468085},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.028985507246376812},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.15},"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.041666666666666664},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}},"/":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"m":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},":":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}}},"c":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.011627906976744186}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.038461538461538464}}}},"x":{"docs":{},"t":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.034782608695652174}},".":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},".":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"contributing.html":{"ref":"contributing.html","tf":10.024539877300613}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.015544041450777202},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}}}},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388}}}}}}},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"contributing.html":{"ref":"contributing.html","tf":0.03680981595092025}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}}},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.021739130434782608},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406},"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.08333333333333333}},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}},",":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}},"s":{"docs":{},",":{"docs":{"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.041666666666666664}}},".":{"docs":{"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.041666666666666664}}}}}}},"o":{"docs":{},"r":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.028985507246376812}},"s":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}},"p":{"docs":{},"i":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}}}}},"s":{"docs":{},"t":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}},".":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.010362694300518135},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.0425531914893617},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.028985507246376812},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}},"?":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}},"r":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.019417475728155338},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.03669724770642202},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.007963594994311717},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406},"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.06315789473684211}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},",":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684}}}}}},"c":{"docs":{},"e":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"s":{"docs":{},"e":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}},",":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}},".":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},"l":{"docs":{},"l":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},",":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.019230769230769232}}}}}}},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857}},"l":{"docs":{},"i":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}}},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"d":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.012953367875647668},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388}}},"m":{"docs":{},"d":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.007963594994311717}}}}},"p":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}},":":{"docs":{},"\\":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.010362694300518135}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"packages/measurements.html":{"ref":"packages/measurements.html","tf":0.05555555555555555},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"r":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.008695652173913044},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.028985507246376812}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814}}}}}},"k":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}},".":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588}}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.017391304347826087}}}}}}}}}}},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.02912621359223301},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.031746031746031744},"packages/measurements.html":{"ref":"packages/measurements.html","tf":0.05555555555555555},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.01838235294117647},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.028985507246376812}},")":{"docs":{},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}},"m":{"docs":{},"o":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.01904761904761905},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267}},"e":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.021739130434782608}},"s":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}}}},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.031088082901554404},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.031578947368421054},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":5.08},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":2.585714285714286},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.024390243902439025},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.023316062176165803},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.02857142857142857}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"u":{"docs":{},"d":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.021052631578947368},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04}},".":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857}}}}}},"s":{"docs":{},":":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"data/data-hierarchy.html":{"ref":"data/data-hierarchy.html","tf":0.125},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.010238907849829351}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.010362694300518135}}}}},"l":{"docs":{},"i":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}}}}},"m":{"docs":{},"s":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.021052631578947368},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.058823529411764705},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857}},"e":{"docs":{},")":{"docs":{},".":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}}}}},"a":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.013043478260869565},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}}},".":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":3.382113821138211},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":3.4159021406727827}},"#":{"docs":{},"u":{"docs":{},"s":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}},".":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}}}}},"s":{"docs":{},")":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}},"w":{"docs":{},"n":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.005688282138794084}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},",":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}}},"n":{"docs":{},"e":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}},",":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588}}}},"'":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.019417475728155338},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.08256880733944955},"data/data-hierarchy.html":{"ref":"data/data-hierarchy.html","tf":5.125},"packages/measurements.html":{"ref":"packages/measurements.html","tf":0.05555555555555555},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}},"e":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}},"y":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}},"c":{"docs":{},"m":{"4":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":3.351626016260162}},":":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}},"d":{"docs":{},"i":{"docs":{},"m":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}}}}}}}}}}}},"docs":{},"t":{"docs":{},"k":{"docs":{},"'":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.010238907849829351}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}},"w":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"s":{"docs":{},",":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.02127659574468085}}}}}},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}},"i":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}},"l":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}},"y":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}}},"c":{"docs":{},"h":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.008695652173913044},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}},"v":{"docs":{},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.021052631578947368},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.031914893617021274},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}},".":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}},"e":{"docs":{},":":{"docs":{"connecting-to-image-archives/osirix.html":{"ref":"connecting-to-image-archives/osirix.html","tf":0.3333333333333333}}},",":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}},"s":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04},"packages/measurements.html":{"ref":"packages/measurements.html","tf":0.05555555555555555}}}}}},"e":{"docs":{},"l":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.02857142857142857}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}},".":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":2.557142857142857},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{},"s":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.0425531914893617},"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}}},"u":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}},"d":{"docs":{},"g":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}},"f":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857},"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}}},"q":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"\"":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}}},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.023316062176165803},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01639344262295082},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}},".":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}},":":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}},",":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.006825938566552901},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}},"s":{"docs":{},":":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}}}}}}},"r":{"docs":{},"m":{"docs":{},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"g":{"docs":{},"o":{"docs":{},"t":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}},"k":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"u":{"docs":{},"m":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"data/data-hierarchy.html":{"ref":"data/data-hierarchy.html","tf":0.125}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.015544041450777202},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}}},"e":{"docs":{},"e":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}},"i":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}}}}}}}}},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"w":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.031746031746031744},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.018292682926829267},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.01904761904761905},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"faq/general.html":{"ref":"faq/general.html","tf":0.011627906976744186}},".":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}},"s":{"docs":{},".":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}},"\\":{"docs":{},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{},"\\":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.013043478260869565},"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.041666666666666664}}}}},"l":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}},"d":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.011029411764705883}}},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}},".":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.028985507246376812}}}}}},"x":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}},"i":{"docs":{},"p":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.006825938566552901}}}}},".":{"docs":{},"d":{"docs":{},".":{"docs":{},"a":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}}}}},"g":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505},"faq/general.html":{"ref":"faq/general.html","tf":10.005813953488373},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"t":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":5.333333333333333}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}},"i":{"docs":{},"t":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},":":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}},"@":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},":":{"docs":{},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{},"/":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"v":{"docs":{},"e":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}},"p":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"o":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"n":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"r":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"h":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"d":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"e":{"docs":{},"r":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.10576923076923077},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}},".":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}}}}}}}}}}}}}},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}},"r":{"docs":{},"e":{"docs":{},":":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}},"l":{"docs":{},"p":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},"r":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}}},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"r":{"docs":{},"o":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}}}}}},"l":{"docs":{},"d":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}}},"w":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}},",":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}},"t":{"docs":{},"p":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}},"/":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"j":{"docs":{},"p":{"docs":{},"e":{"docs":{},"g":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}}}}}}},"j":{"docs":{},"p":{"docs":{},"e":{"docs":{},"g":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}},"i":{"docs":{},"d":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}}}},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"docs":{}},"docs":{}},"docs":{}},"5":{"6":{"0":{"1":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}},"docs":{}},"docs":{}},"docs":{}},"8":{"0":{"4":{"2":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.01904761904761905}}},"docs":{}},"8":{"0":{"docs":{},"/":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}},"d":{"docs":{},"c":{"docs":{},"m":{"4":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.03048780487804878}}}}}},"docs":{}}}}}},"docs":{}},"docs":{}},"docs":{}},"9":{"9":{"9":{"0":{"docs":{},",":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{},"/":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"/":{"docs":{},"w":{"docs":{},"i":{"docs":{},"k":{"docs":{},"i":{"docs":{},"/":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353}}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"/":{"5":{"7":{"4":{"docs":{},"a":{"6":{"docs":{},"d":{"0":{"2":{"docs":{},"b":{"0":{"9":{"0":{"docs":{},"b":{"8":{"docs":{},"b":{"2":{"docs":{},"f":{"0":{"2":{"0":{"4":{"3":{"0":{"docs":{},"c":{"5":{"9":{"1":{"9":{"docs":{},"f":{"8":{"3":{"7":{"7":{"docs":{},"b":{"8":{"3":{"1":{"6":{"docs":{},"c":{"6":{"docs":{},"/":{"docs":{},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"#":{"docs":{},"l":{"1":{"2":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"/":{"docs":{},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"s":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"#":{"docs":{},"l":{"2":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"c":{"docs":{},"m":{"4":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"/":{"docs":{},"d":{"docs":{},"c":{"docs":{},"m":{"4":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513}}}}}},"docs":{}}}}}}}}},"docs":{}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}}}}}}}}}}},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{"data/data-hierarchy.html":{"ref":"data/data-hierarchy.html","tf":5.125}}}}}}}}},"d":{"docs":{},"e":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}},"g":{"docs":{},"h":{"docs":{},"l":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"p":{"docs":{},"a":{"docs":{},"a":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814}}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"layout/hanging-protocols.html":{"ref":"layout/hanging-protocols.html","tf":5.5}}},"d":{"docs":{},"l":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"u":{"docs":{},"d":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.03626943005181347},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.031578947368421054},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.08},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"data/image-viewport.html":{"ref":"data/image-viewport.html","tf":5.142857142857143},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.038680318543799774},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}},":":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}},".":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.006825938566552901}}},":":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"data/image-viewport.html":{"ref":"data/image-viewport.html","tf":0.14285714285714285}}}}}}}}}}}}}}}},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"n":{"docs":{},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.019417475728155338},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.008695652173913044},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406},"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.031578947368421054}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"e":{"docs":{},")":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}},",":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}}}}},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},".":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}}}},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10.005181347150259}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":10.049180327868852},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.0273224043715847},"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.045454545454545456},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":5.0661764705882355},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.02857142857142857}},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},":":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"r":{"docs":{},",":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588}}},".":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.011029411764705883}}}}}}}}}},"n":{"docs":{},"c":{"docs":{"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.027522935779816515}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"data/data-hierarchy.html":{"ref":"data/data-hierarchy.html","tf":0.125}}}}}}}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}},"i":{"docs":{},"d":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.05}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},".":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}}}}}}},"t":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.03389830508474576}}}}}},"'":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.031746031746031744},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.03389830508474576}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"i":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.03197674418604651}},"e":{"docs":{},"!":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.010362694300518135}},",":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"g":{"docs":{},")":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}}},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"g":{"docs":{},"n":{"docs":{},"e":{"docs":{},"/":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.045871559633027525}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01639344262295082}}}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.015544041450777202},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"example-applications/lesion-tracker.html":{"ref":"example-applications/lesion-tracker.html","tf":5.5},"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.09090909090909091},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.02957906712172924},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.05},"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.041666666666666664},"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.05514705882352941},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.01904761904761905},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.02127659574468085},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.05}},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388}}},"/":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}}}}}}}}}}}}}},",":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.01838235294117647}}}}}}}}}},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267}}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}},"s":{"docs":{},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}},"a":{"docs":{},"d":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}},"f":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.009101251422070534}}}},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.005688282138794084},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}},".":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}}},"w":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.015544041450777202},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01639344262295082},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.042105263157894736},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.017391304347826087},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},".":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"/":{"docs":{},"w":{"docs":{},"i":{"docs":{},"k":{"docs":{},"i":{"docs":{},"/":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513}}}}}}}}}}}}}},"n":{"docs":{},"k":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.008695652173913044},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},"\"":{"docs":{},"}":{"docs":{},"}":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}},"o":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"g":{"docs":{"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.08333333333333333}},"i":{"docs":{},"c":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}},"n":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.018292682926829267},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}}},"o":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":3.4006410256410255}},"u":{"docs":{},"t":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.02127659574468085}},",":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}}}},"f":{"docs":{},"f":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"packages/measurements.html":{"ref":"packages/measurements.html","tf":0.05555555555555555}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}},")":{"docs":{},":":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.014705882352941176},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}},"r":{"docs":{},"g":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}},"e":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"y":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.019417475728155338},"layout/layout-management.html":{"ref":"layout/layout-management.html","tf":5.5},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},".":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}}},"c":{"docs":{},"k":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267}}}}}},"a":{"docs":{},"g":{"docs":{"layout/layout-management.html":{"ref":"layout/layout-management.html","tf":5.5},"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.13636363636363635},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":3.352380952380952},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":3.3376811594202898},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":5.05}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":5.045454545454546}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588}}}}}}}}},"k":{"docs":{},"e":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}}}}},"c":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}},"i":{"docs":{},"n":{"docs":{"data/image-viewport.html":{"ref":"data/image-viewport.html","tf":0.14285714285714285},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}},".":{"docs":{},"j":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}}}}}},"g":{"docs":{},"n":{"docs":{},"i":{"docs":{},"f":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"i":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}}}}},"r":{"docs":{},"k":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"d":{"docs":{},"e":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}}},"a":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":2.585714285714286}},"e":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"o":{"docs":{},"r":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.0273224043715847},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.038834951456310676},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.031746031746031744},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.02072538860103627},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.0273224043715847},"faq/technical.html":{"ref":"faq/technical.html","tf":0.041666666666666664}},",":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},".":{"docs":{},".":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.010362694300518135}}}}}}}}}}},".":{"docs":{},".":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"=":{"docs":{},"$":{"docs":{},"(":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}}}}}}}}}},"?":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.027777777777777776}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857}}}}}}},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}},"a":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"packages/measurements.html":{"ref":"packages/measurements.html","tf":2.7222222222222223},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.03299203640500569}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{"packages/measurements.html":{"ref":"packages/measurements.html","tf":2.5555555555555554}}},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}}}}}}}}},"n":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}},"n":{"docs":{},"u":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.017391304347826087}},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.008695652173913044}}},".":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.008695652173913044},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.028985507246376812},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.05},"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.041666666666666664}}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}},":":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}},"a":{"docs":{},"l":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}}}}}},"r":{"docs":{},"e":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.012514220705346985},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}},"d":{"docs":{},"b":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.01838235294117647}},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}}},",":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}},"_":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},":":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},"=":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"d":{"docs":{},"b":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"2":{"7":{"0":{"1":{"7":{"docs":{},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.01478953356086462}}}},"v":{"docs":{},"e":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.05},"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.041666666666666664}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.018134715025906734},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}}},"/":{"docs":{},"b":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.027777777777777776}}}}}}}},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}},".":{"docs":{},"j":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}},"s":{"docs":{},",":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}},":":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}},"j":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}},"n":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.009101251422070534}}},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}},"w":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.01834862385321101},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.010362694300518135},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}}},"w":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406},"faq/general.html":{"ref":"faq/general.html","tf":0.011627906976744186}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.019417475728155338},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}},"x":{"docs":{},"t":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}},",":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}},".":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"p":{"docs":{},"m":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.012953367875647668},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.01834862385321101},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01639344262295082}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.007963594994311717},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.028985507246376812},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814}}}}}},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{"./":{"ref":"./","tf":0.025906735751295335},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.02912621359223301},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.038461538461538464},"example-applications/ohif-viewer.html":{"ref":"example-applications/ohif-viewer.html","tf":5.5},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"faq/general.html":{"ref":"faq/general.html","tf":0.011627906976744186},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},".":{"docs":{},"u":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"?":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"=":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"s":{"3":{"docs":{},".":{"docs":{},"e":{"docs":{},"u":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},"/":{"docs":{},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}},",":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}},"n":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}}},"l":{"docs":{},"y":{"docs":{},")":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01639344262295082}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.015544041450777202},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"r":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.017391304347826087},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"s":{"docs":{},"?":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":10}}}},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.042105263157894736},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}},"a":{"docs":{},"l":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":3.370030581039755},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.045454545454545456},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.04411764705882353},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":3.4476190476190474}},",":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353}}}}}}}},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}},",":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"s":{"docs":{},"i":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/osirix.html":{"ref":"connecting-to-image-archives/osirix.html","tf":10.333333333333334}}}}}},"x":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}},"k":{"docs":{},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"u":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}},"w":{"docs":{},"n":{"docs":{},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}},"p":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.03669724770642202}},"a":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.05263157894736842},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.058823529411764705},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857}},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.019417475728155338},"packages/measurements.html":{"ref":"packages/measurements.html","tf":2.611111111111111},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.019230769230769232},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}},"e":{"docs":{},"_":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},".":{"docs":{},".":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},",":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}}}}},"g":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}},"s":{"docs":{},")":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}},".":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.013043478260869565}}}},"i":{"docs":{},"n":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}},"s":{"docs":{},"s":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.07446808510638298}},":":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}},",":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}}}}}}}},"t":{"docs":{},"h":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.02857142857142857},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},".":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}},"e":{"docs":{},"r":{"docs":{},"]":{"docs":{},".":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}},"s":{"docs":{},".":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}}}}},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"n":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267}},"e":{"docs":{},"l":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267}},".":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},".":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}}}},"y":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},",":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}},"n":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.045871559633027525}}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"faq/general.html":{"ref":"faq/general.html","tf":0.01744186046511628},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}},":":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},"=":{"3":{"0":{"0":{"0":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}},"l":{"docs":{},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}}}},"p":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.008695652173913044},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}},"u":{"docs":{},"l":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}},"e":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"i":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}},"r":{"docs":{},"e":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},"?":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.045454545454545456},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":5.057971014492754}}}}},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}},"e":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}},"o":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"faq/general.html":{"ref":"faq/general.html","tf":0.011627906976744186},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684}}}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"layout/hanging-protocols.html":{"ref":"layout/hanging-protocols.html","tf":5.5}},",":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.021052631578947368}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":5.012953367875648},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},",":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588}},"s":{"docs":{},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.011029411764705883},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"u":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.015544041450777202}}}}}},"l":{"docs":{},"l":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"contributing.html":{"ref":"contributing.html","tf":0.0736196319018405}}}},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"/":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}}}}}}}}},"c":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}},"s":{"docs":{},"h":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}},"t":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}},"e":{"docs":{},"r":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.045871559633027525}}}}}}}},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01639344262295082}}}}}}},"d":{"docs":{},"f":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857}}}},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}}}},"i":{"docs":{},"d":{"docs":{},"o":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}},"r":{"docs":{},"e":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.013043478260869565}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}},";":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},"d":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}},"l":{"docs":{},"v":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}},"t":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857}},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"t":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.02127659574468085},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}},"i":{"docs":{},"z":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267},"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}},"d":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}},"n":{"docs":{},"t":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}},"y":{"docs":{},":":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}},".":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"r":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505},"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.011627906976744186}},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814},"contributing.html":{"ref":"contributing.html","tf":0.05521472392638037}},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},":":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"s":{"docs":{},":":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"i":{"docs":{},"r":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.058823529411764705},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},",":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}},"i":{"docs":{},"v":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.019417475728155338}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684}}}}},"d":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}},"l":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}},"a":{"docs":{},"t":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.041666666666666664}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}},"v":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.06315789473684211},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388}}}}}}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}}}}},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.02127659574468085}},"r":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}}}}},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}}},"w":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"u":{"docs":{},"n":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.018292682926829267},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.027522935779816515},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.023316062176165803},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.02185792349726776},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}},"a":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}},"l":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"i":{"docs":{},"n":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}}}},"o":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.021052631578947368}},"_":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},":":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},"=":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}},":":{"3":{"0":{"0":{"0":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}},"w":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.017391304347826087}},",":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}},".":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}}},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"b":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"s":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.018292682926829267}}},"m":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.02127659574468085},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.021739130434782608},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.009101251422070534}}}}}}},"s":{"3":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}}}},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}}},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}},"s":{"docs":{},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.011376564277588168}}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}},"e":{"docs":{},"r":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01639344262295082},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.031746031746031744},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.025906735751295335},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388},"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.045454545454545456},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.022058823529411766},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.01904761904761905},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":5.15}},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}},":":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},"s":{"docs":{},",":{"docs":{"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.05}}}}}},"i":{"docs":{},"c":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":2.557142857142857},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.022058823529411766},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},":":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.014705882352941176}}}}}}},":":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}}}},"i":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.017391304347826087},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.007963594994311717}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857},"data/data-hierarchy.html":{"ref":"data/data-hierarchy.html","tf":0.125},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}},"e":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.02185792349726776},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}},"k":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}},"t":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.02185792349726776},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.1111111111111111},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"data/data-hierarchy.html":{"ref":"data/data-hierarchy.html","tf":0.125},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.018134715025906734},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}},",":{"docs":{"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}}}}}}},"u":{"docs":{},"p":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"deployment/security.html":{"ref":"deployment/security.html","tf":11}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.019230769230769232}}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.0380952380952381},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.05217391304347826},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.02502844141069397},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.043478260869565216},"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.08333333333333333}}}}}},"n":{"docs":{},"d":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}},"t":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}},"p":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"faq/technical.html":{"ref":"faq/technical.html","tf":0.027777777777777776}},"i":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},"c":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}},"t":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}},"g":{"docs":{},"n":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.02127659574468085}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}}}}}},"z":{"docs":{},"e":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}}},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},".":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}},"e":{"docs":{},",":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}}}}},"o":{"docs":{},"n":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},":":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}},"r":{"docs":{},"t":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.008695652173913044}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"i":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.006825938566552901}}}},"n":{"docs":{},"d":{"docs":{"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},"a":{"docs":{},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.015544041450777202},"example-applications/standalone-viewer.html":{"ref":"example-applications/standalone-viewer.html","tf":5.5},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.02185792349726776},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}}}},"r":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.05714285714285714},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}},"r":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":5.333333333333333},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.018292682926829267},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.01834862385321101},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.03676470588235294},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}}}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.01834862385321101}},"e":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"u":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}}}},"p":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"!":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}},",":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}}}}}},"w":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}},"u":{"docs":{},"d":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.015544041450777202},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.04371584699453552},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.031746031746031744},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.042105263157894736},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.09090909090909091},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":3.3809523809523805},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":3.450724637681159},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.019340159271899887}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"data/data-hierarchy.html":{"ref":"data/data-hierarchy.html","tf":0.125},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.013043478260869565}}},".":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}}},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}},".":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.008695652173913044},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}},":":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}}}},"e":{"docs":{},"p":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814}},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}},"s":{"docs":{},":":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}},".":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.05},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},".":{"docs":{"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"r":{"docs":{},"e":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"c":{"docs":{},"h":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}},"d":{"docs":{},"o":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}},",":{"docs":{"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857}}}},".":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},".":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.043478260869565216},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"s":{"docs":{},":":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}}}}},"w":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.027522935779816515}}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"y":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}},"v":{"docs":{},"e":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.008695652173913044},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.007963594994311717}}}},"k":{"docs":{},"e":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}},"k":{"docs":{},"i":{"docs":{},"p":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}}}},"v":{"docs":{},"g":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.019230769230769232}}}},"n":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.005688282138794084},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.05}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.0273224043715847},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.031914893617021274},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"r":{"docs":{},"m":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}},"i":{"docs":{},"n":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}}}},"m":{"docs":{},"p":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.038834951456310676},"faq/technical.html":{"ref":"faq/technical.html","tf":0.041666666666666664}},"e":{"docs":{},".":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}},"a":{"docs":{},"m":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}},"x":{"docs":{},"t":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"l":{"docs":{},"l":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"c":{"docs":{},"h":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":10.01388888888889}}}},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}}}}}}},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"e":{"docs":{},"n":{"docs":{},":":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"m":{"docs":{},"e":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.057971014492753624}},".":{"docs":{"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}}}},".":{"docs":{"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.05}}}},"r":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"n":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"s":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"?":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}},".":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"packages/measurements.html":{"ref":"packages/measurements.html","tf":0.05555555555555555},"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.045454545454545456},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":3.359420289855072},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.007963594994311717}},",":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}}}}}},",":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}},"p":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.045454545454545456},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"example-applications/lesion-tracker.html":{"ref":"example-applications/lesion-tracker.html","tf":5.5},"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.045454545454545456},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406},"lesion-tracker/server-management.html":{"ref":"lesion-tracker/server-management.html","tf":0.05},"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.041666666666666664},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},",":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093}}},":":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}}}}},"i":{"docs":{},"l":{"docs":{"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.045454545454545456},"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":5.041666666666667}},"s":{"docs":{},",":{"docs":{"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.041666666666666664}}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"i":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"a":{"docs":{},"l":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}},"g":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":10.010526315789473}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}}},"u":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}},"r":{"docs":{},"n":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588}}}}},"a":{"docs":{},"b":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}},"l":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.012514220705346985}},"e":{"docs":{},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267}}}}},".":{"docs":{"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}}},"s":{"docs":{},":":{"docs":{"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}}}}},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.02161547212741752}},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}}}}},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"o":{"docs":{},":":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}},"o":{"docs":{},"l":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"packages/measurements.html":{"ref":"packages/measurements.html","tf":0.05555555555555555},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":3.4350282485875705},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.038680318543799774},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},")":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}},":":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}}}},",":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}}}}},"*":{"docs":{},"*":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.01478953356086462}}},"s":{"docs":{},".":{"docs":{"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}}}}},"k":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"p":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.02127659574468085},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.005688282138794084}}},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}},"w":{"docs":{},"o":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}}},"y":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}},"e":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.013043478260869565},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406},"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.041666666666666664}}}}}},"u":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}},"n":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"l":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},":":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.014705882352941176}},"l":{"docs":{},".":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}}}}},"q":{"docs":{},"u":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}}}}}},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}},"s":{"docs":{"./":{"ref":"./","tf":0.010362694300518135},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.01834862385321101},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.012953367875647668},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.01904761904761905},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.02127659574468085},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":5.003412969283277},"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814},"faq/technical.html":{"ref":"faq/technical.html","tf":0.027777777777777776},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}}},"r":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.024390243902439025},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.015544041450777202},"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":5.136363636363637},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":5.01063829787234},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":5.043478260869565},"faq/general.html":{"ref":"faq/general.html","tf":0.014534883720930232}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}},"e":{"docs":{},":":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513}}}}}}},",":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.02127659574468085}}}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}},"a":{"docs":{},"g":{"docs":{"packages/measurements.html":{"ref":"packages/measurements.html","tf":0.05555555555555555},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":10}}},"b":{"docs":{},"l":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}}}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"p":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.011376564277588168}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.01834862385321101},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.05714285714285714}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}},".":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.011029411764705883},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.008695652173913044},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}},"i":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.031746031746031744},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},".":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}},":":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}},"r":{"docs":{},"l":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.021052631578947368},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.03278688524590164},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},":":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.018292682926829267}}},".":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}},"i":{"docs":{},":":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}},".":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"v":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.01834862385321101},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.021739130434782608},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.009101251422070534},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406},"lesion-tracker/audit-trail.html":{"ref":"lesion-tracker/audit-trail.html","tf":0.08333333333333333},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.046632124352331605},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01639344262295082},"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.019417475728155338},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.025906735751295335},"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":3.3672316384180787},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":3.352564102564102},"example-applications/ohif-viewer.html":{"ref":"example-applications/ohif-viewer.html","tf":5.5},"example-applications/standalone-viewer.html":{"ref":"example-applications/standalone-viewer.html","tf":5.5},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.02185792349726776},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.011029411764705883},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":5.006825938566553},"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814}},",":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406},"faq/general.html":{"ref":"faq/general.html","tf":0.00872093023255814}}},".":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505}}},":":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}},"/":{"docs":{},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"data/image-viewport.html":{"ref":"data/image-viewport.html","tf":5.285714285714286}},")":{"docs":{},":":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}},":":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388}}}}}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"packages/measurements.html":{"ref":"packages/measurements.html","tf":0.05555555555555555}}}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}}}}}},"u":{"docs":{},"e":{"docs":{"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},")":{"docs":{},".":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.03669724770642202}},"e":{"docs":{},",":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}}}}}}},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.007352941176470588},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"s":{"docs":{},".":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425}}}}}}}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}}},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676},"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01639344262295082},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.042105263157894736},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":5.04},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676},"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388},"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.01904761904761905},"faq/general.html":{"ref":"faq/general.html","tf":0.005813953488372093},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},",":{"docs":{"./":{"ref":"./","tf":0.0051813471502590676}}},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{"essentials/architecture.html":{"ref":"essentials/architecture.html","tf":0.009708737864077669}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"essentials/configuration.html":{"ref":"essentials/configuration.html","tf":0.015873015873015872}}}}}}}},"n":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"l":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}}},"d":{"docs":{},"o":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.010526315789473684},"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.012195121951219513}}}},"y":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.005688282138794084},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888}},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}},"s":{"docs":{},":":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}},"i":{"docs":{},"t":{"docs":{"lesion-tracker/manage-studies-in-orthanc.html":{"ref":"lesion-tracker/manage-studies-in-orthanc.html","tf":0.009523809523809525}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"connecting-to-image-archives/dimse.html":{"ref":"connecting-to-image-archives/dimse.html","tf":0.02857142857142857}},"r":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04}}}},"t":{"docs":{},"h":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}},"/":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.02072538860103627},"lesion-tracker/user-manual.html":{"ref":"lesion-tracker/user-manual.html","tf":0.045454545454545456},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":5.014705882352941},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0034129692832764505},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.043478260869565216}},"s":{"docs":{},",":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505},"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}},".":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}},"/":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}}}}}}}}}}}},"l":{"docs":{},"d":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}},"i":{"docs":{},"n":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.004550625711035267},"faq/technical.html":{"ref":"faq/technical.html","tf":0.013888888888888888},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"z":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}}}},"s":{"docs":{},"h":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.01092896174863388},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"lesion-tracker/user-accounts.html":{"ref":"lesion-tracker/user-accounts.html","tf":0.010638297872340425},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336}},"e":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.006825938566552901}}}}}}}}},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}},"t":{"docs":{},"h":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"s":{"docs":{},"o":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}}}}},"e":{"docs":{},"l":{"docs":{},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}},"/":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":3.333333333333333},"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":3.333333333333333}},"l":{"docs":{"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}}}}},"\"":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}},"n":{"docs":{},"o":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}},",":{"docs":{},"\"":{"docs":{},"\"":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}},"`":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"\"":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"\"":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"}":{"docs":{},"}":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}}}}}}},".":{"docs":{},".":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"/":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694},"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}},")":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"c":{"docs":{},"m":{"4":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"m":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}},".":{"docs":{},".":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"i":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.01092896174863388}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"*":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"standalone-viewer/usage.html":{"ref":"standalone-viewer/usage.html","tf":0.00546448087431694}}}}}}}}}}}}}}},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.3333333333333333},"connecting-to-image-archives/osirix.html":{"ref":"connecting-to-image-archives/osirix.html","tf":0.3333333333333333},"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616},"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.017391304347826087}}},"\\":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"\\":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}},"y":{"docs":{"lesion-tracker/study-and-timepoint-management.html":{"ref":"lesion-tracker/study-and-timepoint-management.html","tf":0.004347826086956522},"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0022753128555176336},"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"k":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"lesion-tracker/user-preferences.html":{"ref":"lesion-tracker/user-preferences.html","tf":0.014492753623188406}},".":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.0011376564277588168}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}},"n":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353}}}}}},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}}},"z":{"docs":{},"i":{"docs":{},"p":{"docs":{"essentials/installation.html":{"ref":"essentials/installation.html","tf":0.00546448087431694}}}},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"lesion-tracker/using-the-viewer.html":{"ref":"lesion-tracker/using-the-viewer.html","tf":0.006825938566552901}}}}}},"'":{"docs":{},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{},"d":{"docs":{},"c":{"docs":{},"m":{"docs":{},"'":{"docs":{"connecting-to-image-archives/options.html":{"ref":"connecting-to-image-archives/options.html","tf":0.029411764705882353}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}}}}}},"/":{"docs":{},"/":{"docs":{},"c":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"/":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"k":{"docs":{},"/":{"docs":{},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"'":{"docs":{"connecting-to-image-archives/orthanc-with-docker.html":{"ref":"connecting-to-image-archives/orthanc-with-docker.html","tf":0.009174311926605505}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{},"'":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}},"docs":{}},"docs":{}},"docs":{}},"8":{"0":{"4":{"2":{"docs":{},"'":{"docs":{"lesion-tracker/installation-on-windows.html":{"ref":"lesion-tracker/installation-on-windows.html","tf":0.003676470588235294}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"e":{"docs":{},"t":{"docs":{},",":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.04}}}}},"o":{"docs":{},"u":{"docs":{},".":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756},"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}},"'":{"docs":{},"r":{"docs":{"I-want-to/add-a-tool-to-the-viewer.html":{"ref":"I-want-to/add-a-tool-to-the-viewer.html","tf":0.01694915254237288}}}},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.0029069767441860465}}}}}}}}}},"+":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.006097560975609756}}},"|":{"docs":{"connecting-to-image-archives/dcm4chee-with-docker.html":{"ref":"connecting-to-image-archives/dcm4chee-with-docker.html","tf":0.04878048780487805}}},"$":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.007772020725388601}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}}}}},"=":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0051813471502590676}}},"[":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"]":{"docs":{},":":{"docs":{},":":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"o":{"docs":{},"r":{"docs":{},"_":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{"deployment/building-for-production.html":{"ref":"deployment/building-for-production.html","tf":0.0025906735751295338}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"{":{"docs":{},"{":{"docs":{},"#":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}},"}":{"docs":{},"}":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}}}}}},"/":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"}":{"docs":{},"}":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.019230769230769232}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"}":{"docs":{},"}":{"docs":{"I-want-to/add-a-logo-to-the-viewer.html":{"ref":"I-want-to/add-a-logo-to-the-viewer.html","tf":0.009615384615384616}}}}}}}}}}}}}}},"length":2262},"corpusTokens":["\"","\",\"\"","\"`n\",\"\"","\"`r\",\"\"","\"brand\"}}","\"machine\")","\"no","$set","$settings,","&","'//c/users/erik/sampledata'","'http://localhost:3000'","'http://localhost:8042'","'light","'ohifdcm'","(\"localhost:3000\").","(\"myoutputfolder\")","(a","(at","(blaze),","(boolean):","(check","(cr)","(currently)","(demo)","(dicom","(e.g.","(http://blazejs.org/)","(https://epad.stanford.edu/),","(https://reactjs.org/)","(https://vuejs.org/),","(https://www.docker.com/)","(hud)","(if","(integer):","(it'","(mac","(officially:","(ohif","(ohifview","(or","(radic","(range)","(rememb","(see","(un)","(under","(via","+","...","../..","../config/dcm4cheedimse.json","../config/orthancdicomweb.json","../config/orthancdicomweb.json)","../etc/redirectingsimpleserver.pi","../etc/sample*","../myoutputfold","..\\config\\orthancdicomweb.json",".json","/","/api","/opt/","/sampledata","/var/local/","02/10/2017","02/15/2017","02/15/2017.","1.","1.1","1.amazonaws.com/ohif","14","1x2","2.","237","237,","27017","3","3.","3.0)","3.7.9.","4","4242:4242","5","5.x","510(k)","8042:8042","90","=","[environment]::setenvironmentvariable(\"meteor_settings\",","a:","abov","absolut","academ","accept","acceptable.","access","accordingli","account","account.","accounts)","action","activ","actual","ad","add","added.","addit","address.","admin","admin,","admin.","admin:","administr","adoption.","advice.","aetitl","affect","agree,","agreement","agreement,","allow","alon","alreadi","also,","altern","alternatively,","although","alway","amazon","angle):","angular,","annot","annotation.","anonym","anoth","api","api/","app","appear","appli","applic","application'","application,","application.","application:","applications.","applications:","appreci","approach","appropri","arc","arc/aets/dcm4chee/r","arc/aets/dcm4chee/wado","arc/ui","architectur","archiv","archive'","archive.","around","array","ask","assess","assessed.","associ","associate,","association.","attach","audit","authent","auto","autogener","automat","avail","available.","azur","b:","back","background","background.","bar","base","baselin","baseline.","baseurl/api/[id","basic","becom","befor","begin","below","benefit","best","between","bg","big","bit","blaze","blaze,","bleed","blob","block","blue\"","both,","bottom","branch.","brand","brand.","brandhref:","brandhref=\"your","brief,","broken,","brought","browser","browser).","browser,","browser.","bug","bug.","bug?","bugs.","build","build.","built","bundl","burden","button","button)","button.","c:\\program","call","can't","cancer","cannot,","case","case,","case.","cat","cd","ce","central","certain","certainli","challeng","chang","change,","changes:","changes?","check","checkbox","child","choos","cine","class","clear","clearanc","clearli","click","client","clinic","clockwise,","clone","close","closed,","cmd","cmd,","code","collabor","collaborations?","collaborators.","collect","color","colors.","column","column,","column.","columns,","columns.","command","comment","commerci","commission?","common","commun","communicate.","community.","compani","compar","compared.","comparison","complet","complete.","completed,","complianc","compliance.","compliant.","compliant?","compon","compos","compose.env","compose.yml","computer'","concept","conception,","concern","config","config/orthancdicomweb.json","configur","confirm.","conflict","conform","conformities,","connect","consid","console,","console:","construct","consult","consum","consuming.","contact","contain","containers:","content","context","context.","continue.","contribut","contributions,","copi","core","corner.","cornerston","correctly,","correspond","cost","coupl","cp","cr","creat","created.","criteria","css","css.","curl,","current","custom","data","databas","date","day","dcm4chee","dcm4chee:","dcm4cheedimse.json","dcmtk'","debug","decoupl","decreas","default","default).","default.","defin","defined,","degre","delet","delete.","demo","demonstr","depend","dependencies:","deploy","depth","describ","design","desir","desktop","desktop.","detail","details.","develop","development)","deviat","dialog","dialog,","dialog.","dicom","dicomcloud","dicoms:","dicomweb","dicomweb.","differ","dims","dimse).","directli","directori","disabl","discuss","display","dissociated.","distribut","docker","docker#us","docker#web","docker.","docs)","document","don't","done","done,","doubl","doubt","down","download","download.","downside,","drag","drag.","dramat","draw","drawbacks,","drive","drop","dropcollect","duplic","dure","each","eas","easi","easiest","easili","easily.","edg","effort","element","ellips","ellipt","email","enabl","end","ensur","enter","enter.","entry,","environ","environment:","environments.","epad","error","eslint","european","everyon","everyth","exampl","example,","example:","excel","exchang","execut","exist","exists,","expect","experience.","explor","explorer,","explorer.","export","extend","extrem","f.d.a","f.d.a.","facilit","famili","faq","faster","featur","feature,","feature?","feedback","feel","few","field","field.","file","file.","files.","files\\ohif\\lesiontrack","filing,","fill","filter","final","find","finish","first","first,","fix","fixed.","flag","flip","focus","folder","folder,","folder.","folder:","follow","follows:","forgot","fork","form,","forum","found","found\"","foundat","frame","framework","framework,","framework.","free","frequent","fulfil","full","fulli","function","functionlist","fund","g","gain","gener","geometr","get","git","git:","git@github.com:ohif/viewers.git","gitbook","github","give","given","go","gone","gordon","ground","group","guess","guidanc","guidance.","guidelin","h","handl","hang","happen,","happened.","happi","harri","head","header","header.","headerclasses:","headerclasses=\"head","health","hear","help","helper","here:","hide","hierarchi","highli","hipaa","hold","hold,","horizontally,","horo","hospit","host","hostnam","hover","however,","html","html,","http","http://localhost:3000","http://localhost:3000,","http://localhost:3000/","http://localhost:3000/api/samplejpeg.json","http://localhost:3000/sampledicom.json","http://localhost:3000/samplejpeg.json","http://localhost:3000/testdicom","http://localhost:3000/testid","http://localhost:5601","http://localhost:8042","http://localhost:8080/auth,","http://localhost:8080/dcm4che","http://localhost:9990,","https://deploy","https://github.com/dcm4che/dcm4che","https://github.com/ohif/viewers/blob/574a6d02b090b8b2f020430c5919f8377b8316c6/ohifviewer/client/components/toolbarsection/toolbarsection.j","https://github.com/ohif/viewers/blob/574a6d02b090b8b2f020430c5919f8377b8316c6/ohifviewer/client/components/viewer/viewer.js#l12","https://github.com/ohif/viewers/blob/574a6d02b090b8b2f020430c5919f8377b8316c6/packages/lesiontracker/client/tools.js#l2","https://github.com/ohif/viewers/tree/master/packages/ohif","https://github.com/ohif/viewers/wiki/orthanc","hud","icon","identif","identifi","imag","image,","image.","image:","images.","images:","imageviewerviewport","imaging)","impact","includ","incorrect","incorrectly.","index.html.","inform","information,","information.","insid","instal","installation.","installed:","installer,","installer.","instanc","instances,","instead.","instruct","integr","intend","interact","interest","interfac","interface)","interface,","internet.","introduct","invert","issu","issue!","issue,","issue.","issue:","it'","it,","it.","itself","j.","javascript","javascript,","jodogne/orthanc","join","jpeg).","json","keep","key","keyboard","keyboard.","keycloak","kibana","know","known","label","lack","larg","large.","latest","launch","launched.","layer","layout","layout.","lead","left","length","lesion","lesion,","lesion.","lesions,","lesions.","lesiontrack","lesiontracker)","lesiontracker,","lesiontracker/client/compat","level","level.","lewi","libraries.","licens","light/wiki/run","link","link\"}}","list","list.","listed.","load","loader","local","local,","localhost:3000","locally.","locat","location.","location.):","log","logic","login","logo","logoff,","logout","logout,","longitudin","look","mac","made","magnif","magnifi","main","main.j","make","manag","mani","manipul","manual","manually.","mark","marked.","massachusett","master","mean","measur","measurement,","measurements)","measurements,","mechan","media","medic","medicine.","member","menu","menu,","menu.","messag","messages).","metadata","meteor","meteor,","meteor?","meteor_package_dirs=\"../../packages\"","meteor_package_dirs=\"../packages\"","meteor_set","meteor_settings=$(cat","method","middl","migrat","mkdir","modal","mode:","modern","modifi","moment","mongo","mongo_url:","mongo_url=mongodb://localhost:27017/myapp","mongodb","mongodb,","mongodb.","more","mous","move","multipl","myoutputfold","myoutputfolder.","myoutputfolder/bundl","name","navig","necessari","need","netlifi","new","next","next,","next.","no.","nobodi","node","node.j","node.js,","node.js:","nodej","non","normally,","not,","not?","note:","now","npm","number","object","obtain","offer","ohif","ohif,","ohif.netlify.com/contributing.html","ohif.netlify.com/viewer/?url=https://s3.eu","ohif.uisettings.","ohifview","ohifviewer'","ohifviewer/.","ohifviewerfolderloc","ok,","on","onc","oncolog","only)","open","oper","option","option.","options?","or,","order","organ","orientation,","origin","orthanc","orthanc,","osirix","osx","out","output","outsid","over","overal","own.","p","pac","packag","package_dirs=\"../packages\"","packages,","page","page.","pages),","pagin","pan","panel","panel.","paramet","parameter].","parameters.","part","parti","pass","password","password,","password:","path","patient","patient.","pdf","per","persist","pictur","plan","platform","platform.","play","play,","pleas","plugin","png,","point","point.","pop","popul","port","port:","port=3000","portion","posit","possibl","possible.","post","power","powershel","powershell,","pre","prefer","prepar","prerequisit","prerequisites:","preset","press","prevent","preview","preview?","primari","primarily.","prior","probabl","problem","process","process,","processes.","produc","product","production,","production:","program","programs/serv","progress","project","propos","protocol","protocol,","provid","provided.","public","publish/subscrib","pull","purpos","push","put","python","qido","qualiti","quantit","queri","question","quick","range.","raw","re","react","react,","reactiv","read","reason","receiv","recent","recist","record","redirect","refer","reference.","refresh","regist","registr","regulations.","rel","relat","releas","relev","remain","remaind","rememb","reminder.","remot","remov","remove;","removed.","renam","replac","report","reports.","repositori","repository,","repository.","repository:","reproduc","reproducible:","request","request.","request:","requests:","requir","research.","reset","resiz","resolv","resolved,","resourc","respond.","respons","rest","result","result:","retriev","review","reviewed.","right","rm","roadmap","roadmap,","rob","role","root","root_url:","root_url=http://localhost","root_url=http://localhost:3000","rotat","rout","routin","row","row,","row.","rs","rule","run","runa","running.","s3,","s3.","sake","same","sampl","sampleclientonlybuild","sampledata","save","schema","scope","screen","screenshot","screenshot.","screenshots:","script","scroll","search","section","secur","secured,","see","seek","select","send","sent","separ","seri","series,","series.","serv","server","server,","server.","server:","servers,","servic","services.","services.exe:","services:","set","setting,","settings.","setup","shell","shift","short.","shortcut","shortcuts:","show","side","sign","signific","significant.","similar","simpl","simpli","simplic","singl","site","size","skip","slightly.","small","snapshot","so:","solut","solution.","solutions.","someth","soon","sort","sourc","source,","specif","specifi","specifically,","spend","stack","stand","standalon","standard","stanford","start","started.","starting.","static","step","step,","step.","steps.","steps:","still","stop","stopped!","stopped,","storag","storage,","storescu","stow","structur","studi","studies,","studies.","study,","study.","study:","studylistdatefilternumday","subject","submit","such","sudo","summari","support","support,","support.","support?","sure","sure.","svg","switch","synchronously,","system","system,","system.","systems,","systems.","tab","tab.","tabl","table,","table.","tabs:","taken.","target","target,","target.","team","technic","technolog","tell","temp","templat","template.","temporari","term","termin","test","testing.","text","text.","them.","theme","theme.","then:","there),","third","this,","this?","those","thousand","three","through","thumbnail","thumbnail.","time","time,","time.","timepoint","timepoint,","timepoint.","tip","to:","toggl","took","tool","tool**","tool,","tool.","toolbar","toolbar)","toolbar:","toolmanag","tools.","top","total","track","tracker","tracker,","tracker:","trail","trail,","trails,","tri","triag","trial","troubleshoot","true","tumour","turn","tutori","two","type","typic","u","u.s.","ui","ui,","ui.","ui:","un","underli","understand.","uninstal","uninstall.","uniqu","unknown","unknown,","unlink","unofficially:","unselect","until","up","up,","up.","updat","upload","uri:","url","url.","url:","us","us.","usabl","usag","useful:","user","user,","usernam","username:","uses.","v","valid","values.","var.","variabl","verb","veri","version","versions.","vertically,","view","viewer","viewer,","viewer.","viewer/sampledicom.json","viewer:","viewport","viewport):","viewport.","viewport:","visit","volum","volume,","vue","vue).","w/","w/l","wado","wait","want","way","way,","ways:","web","web,","website.","websocket","welcom","well","went","whatsoever,","wheel.","wherea","whether","whole","wide","wider","width","width.","width/level","wildfli","window","window.","window/level","windows,","wish","with:","within","without","wizard","words.","work","workspac","workspace.","worth","yet,","you'r","you.","yourself","zip","zoom","{{#header","{{#header}}","{{#section","{{/header}}","{{/section}}","|"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"Looking for your Deploy Preview? - Deploy Preview for Viewer\nIntroduction\nThe Open Health Imaging Foundation is developing an open source framework for constructing web-based medical imaging applications. The application framework is built using modern HTML / CSS / JavaScript and uses Cornerstone at its core to display and manipulate medical images. It is built with Meteor, a Node.js-based full-stack JavaScript platform.\nThis documentation concerns the OHIF framework itself and its three example applications: the OHIF Viewer, Lesion Tracker, and the Standalone Viewer.\nThe OHIF Viewer: A general purpose DICOM Viewer (demo)\n\nThe Open Health Imaging Foundation intends to provide a simple general purpose DICOM Viewer which can be easily extended for specific uses. The primary purpose of the OHIF Viewer is to serve as a testing ground for the underlying packages and the Cornerstone family of libraries.\nLesion Tracker: An oncology-focused imaging application (demo)\n\nThe Lesion Tracker is designed to facilitate quantitative assessments of tumour burden over time. It is similar in scope to the ePAD Imaging Platform (https://epad.stanford.edu/), developed at Stanford Medicine.\nStudy List & DICOM Connectivity\n\nThe solution provides a study list and other resources for connecting to PACS and other Image Archives through standard communication approaches (DICOM Web, DICOM Messages).\nStandalone Viewer (demo)\nThe Standalone Viewer offers only the client-side portions of the OHIF Viewer with the Study List pages removed. This single-page viewer can be hosted as a static site (e.g. on Amazon S3, Azure Blob Storage, or Github Pages), and easily integrated with existing back-end DICOM storage systems. Alternative Cornerstone Image Loaders can be included to allow your viewer to support non-DICOM objects (e.g. PNG, JPEG).\n"},"essentials/installation.html":{"url":"essentials/installation.html","title":"Installation","keywords":"","body":"Installation\nGetting the Code\nEither clone the repository using Git:\ngit clone git@github.com:OHIF/Viewers.git\n\nor Download the latest Master as a ZIP File.\nSet up a DICOM server\n\nChoose and install an Image Archive\nUpload some data into your archive (e.g. with DCMTK's storescu or your archive's web interface)\nKeep the server running\n\nOpen Source DICOM Image Archive Options\n\n\n\nArchive\nInstallation\n\n\n\n\nDCM4CHEE Archive 5.x\nInstallation with Docker\n\n\nOrthanc\nInstallation with Docker\n\n\nDICOMcloud (DICOM Web only)\nInstallation\n\n\nOsiriX (Mac OSX only)\n\n\n\nHoros (Mac OSX only)\n\n\n\n\nFeel free to make a Pull Request if you want to add to this list.\nSet up and test the OHIF Viewer (or LesionTracker) application:\n\nInstall Meteor\nOpen a new terminal tab in one of the Application directories (OHIFViewer or LesionTracker)\nInstruct Meteor to install all dependent NPM Packages\nMETEOR_PACKAGE_DIRS=\"../Packages\" meteor npm install\n\n\nRun Meteor using one of the available configuration files.\nMETEOR_PACKAGE_DIRS=\"../Packages\" meteor --settings ../config/orthancDICOMWeb.json\n\nNote: On Windows, you may need to set PACKAGE_DIRS=\"../Packages\" in your Environment Variables in your operating system settings.\n\nLaunch the OHIF Viewer / Lesion Tracker Study List by visiting http://localhost:3000/ in a web browser.\nIf everything is working correctly, you should see the Study List from your archive when you visit the Study List.\n\nDouble-click on a Study in the Study List to launch it in the Viewer\nIf everything is working correctly, you should see your study load into the Viewer.\n\n\nTroubleshooting\n\nIf you receive a \"No Studies Found\" message and do not see your studies, try changing the Study Date filters to a wider range.\nIf you see any errors in your server console, check the Troubleshooting page for more in depth advice.\n\n"},"essentials/getting-started.html":{"url":"essentials/getting-started.html","title":"Getting Started","keywords":"","body":"Getting Started\n...\n"},"essentials/architecture.html":{"url":"essentials/architecture.html","title":"Architecture","keywords":"","body":"Architecture\nMeteor\nMeteor is built on top of Node.js, adding reactive templates (Blaze), a publish/subscribe mechanism (via WebSockets and the Distributed Data Protocol, and a fully integrated client-server MongoDB making it easy to create reactive data elements in the UI.\nStructure of an OHIF Application\nThe OHIF Framework is built as a set of small Meteor packages which can be included as necessary in the final application. Since the logic and templates are largely pushed into packages, the actual application-specific code for each Viewer is relatively short.\nIn brief, to create a new Viewer application, you need to:\n\nDefine the existing pages and the routes which will lead to them\nDefine the overall application layout\nInclude child templates from the OHIF Packages into your application layout\nSpecify desired template options as necessary (e.g. which tools should appear in the toolbar)\n\nUser interface components for your application can be defined in any View layer supported by Meteor (Officially: Angular, React, Blaze, Unofficially: Vue).\n"},"essentials/configuration.html":{"url":"essentials/configuration.html","title":"Configuration","keywords":"","body":"Configurations\nThere are a few pre-defined settings files that you can find in config folder. These are Meteor files and all settings can be accessed as showed on Meteor Website. UI settings are also available as OHIF.uiSettings. See the schema for more information.\nServer settings\n\ndropCollections (boolean): the server will drop all Mongo collections when it's set to true as soon as it has finished starting. This is useful for demo and development environments.\n\nUI Settings\n\nstudyListDateFilterNumDays (integer): define the default date filter (range) on study list. If it's 02/15/2017 and this config is set to 5 then it will search for studies between 02/10/2017 and 02/15/2017.\n\n"},"essentials/troubleshooting.html":{"url":"essentials/troubleshooting.html","title":"Troubleshooting","keywords":"","body":"Troubleshooting\nCommon Problems\n\n\n\nProblem\nMost Common Reasons\n\n\n\n\n Can't retrieve Study List over DICOMWeb\n1. QIDO root URL is incorrect 2. DICOM Web is not enabled on PACS\n\n\n Can't retrieve Study List over DIMSE\n1. PACS is not configured to allow connections from OHIF Meteor Server\n\n\n Can't retrieve images\n1. WADO Root URL is incorrect 2. DICOM Web is not enabled on PACS 3. HTTP Basic Authentication username and password are incorrect or not provided.\n\n\n\nDebugging Steps\nCan't retrieve Study List over DICOMWeb\n\nCheck that you can query your PACS using an alternative DICOM Web client (e.g. cURL, or a Web Browser). If you cannot, then your PACS is configured incorrectly. Refer to the documentation of the image archive.\n2.\n\nCan't retrieve Study List over DIMSE\nCan't retrieve images\n"},"connecting-to-image-archives/options.html":{"url":"connecting-to-image-archives/options.html","title":"What are my options?","keywords":"","body":"Connecting to Image Archives\nWe support DIMSE and DICOMWeb. Which one to use is up to you and depends on your PACS system. DICOMWeb requires no setup on the PACS-side whatsoever, whereas DIMSE may require you to add the 'OHIFDCM' aeTitle to the known DICOM Modalities of your Archive. This is the case for Orthanc, for example (See https://github.com/OHIF/Viewers/wiki/Orthanc-with-DIMSE).\n"},"connecting-to-image-archives/dicomweb.html":{"url":"connecting-to-image-archives/dicomweb.html","title":"DICOM Web","keywords":"","body":"DICOM Web\nDICOMWeb refers to RESTful DICOM Services and is a recently standardized set of guidelines for exchanging medical images and imaging metadata over the internet. Not all archives fully support it yet, but it is gaining wider adoption.\n"},"connecting-to-image-archives/dimse.html":{"url":"connecting-to-image-archives/dimse.html","title":"DICOM Message Service Element","keywords":"","body":"DICOM Message Service Element\nDIMSE Stands for DICOM Message Service Element and is the standard method through which DICOM archives communicate. We support this messaging standard for the retrieval of study, series, and instance metadata because it is widely support. For certain PACS systems, it also (currently) provides faster query results than DICOMWeb.\n"},"connecting-to-image-archives/dcm4chee-with-docker.html":{"url":"connecting-to-image-archives/dcm4chee-with-docker.html","title":"dcm4chee w/ Docker","keywords":"","body":"DCM4CHEE with Docker\n\nInstall Docker (https://www.docker.com/)\nFollow the DCM4CHEE Guidelines for Running on Docker.\n The easiest path is to use Docker-Compose which will start and stop multiple containers for you. There are excellent instructions provided by the DCM4CHEE team on the 'light archive' repository:\n https://github.com/dcm4che/dcm4chee-arc-light/wiki/Running-on-Docker#use-docker-compose\n\nCreate docker-compose.yml and docker-compose.env files\nStart the containers:\ndocker-compose start\n\nNote: If you are running this on Mac OSX you will probably need to change the default docker-compose.yml file slightly. Specifically, the paths that refer to /var/local/ will likely need to be changed to /opt/\n\n\n\nRun the OHIF Viewer or Lesion Tracker using the dcm4cheeDIMSE.json configuration file\n\n\ncd OHIFViewer\nPACKAGE_DIRS=\"../Packages\" meteor --settings ../config/dcm4cheeDIMSE.json\n\nWeb Service URLs from DCM4CHEE:\nOriginal source here: https://github.com/dcm4che/dcm4chee-arc-light/wiki/Running-on-Docker#web-service-urls\n\n\nArchive UI: http://localhost:8080/dcm4chee-arc/ui - if secured, login with\n Username | Password | Role\n --- | --- | ---\n user | user | user\n admin | admin | user + admin\n\nKeycloak Administration Console: http://localhost:8080/auth, login with Username: admin, Password: admin.\nWildfly Administration Console: http://localhost:9990, login with Username: admin, Password: admin.\nKibana UI: http://localhost:5601\nDICOM QIDO-RS Base URL: http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs\nDICOM STOW-RS Base URL: http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs\nDICOM WADO-RS Base URL: http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs\nDICOM WADO-URI: http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado\n\n\n"},"connecting-to-image-archives/orthanc-with-docker.html":{"url":"connecting-to-image-archives/orthanc-with-docker.html","title":"Orthanc w/ Docker","keywords":"","body":"Orthanc with Docker\nDepending on whether or not you want uploaded studies to persist in Orthanc after Docker has been closed, there are two different methods for starting the Docker image:\nTemporary data storage\nThis command will start an instance of the jodogne/orthanc-plugins Docker image. All data will be removed when the instance is stopped!\ndocker run --rm -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins\nPersistent data storage\nIn order to allow your data to persist after the instance is stopped, you first need to create an image and attached data volume with Docker. The steps are as follows:\n\nCreate a persistent data volume for Orthanc to use\n docker create --name sampledata -v /sampledata jodogne/orthanc-plugins\n Note: On Windows, you need to use an absolute path for the data volume, like so:\n docker create --name sampledata -v '//C/Users/erik/sampledata' jodogne/orthanc-plugins\n\nRun Orthanc from Docker with the data volume attached\n docker run --volumes-from sampledata -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins\n\nUpload your data and it will be persisted\n\n\n"},"connecting-to-image-archives/osirix.html":{"url":"connecting-to-image-archives/osirix.html","title":"Osirix","keywords":"","body":"Example: Osirix\n...\n"},"data/data-hierarchy.html":{"url":"data/data-hierarchy.html","title":"Data Hierarchy","keywords":"","body":"Data Hierarchy\nStudies, Series, Instances, Frames\nDisplay Sets\n"},"data/image-viewport.html":{"url":"data/image-viewport.html","title":"Image Viewport","keywords":"","body":"Image Viewport\nMain Viewport Component\nThe imageViewerViewport component\n"},"layout/layout-management.html":{"url":"layout/layout-management.html","title":"Layout Management","keywords":"","body":"Layout Management\n"},"layout/hanging-protocols.html":{"url":"layout/hanging-protocols.html","title":"Hanging Protocols","keywords":"","body":"Hanging Protocols\n"},"packages/measurements.html":{"url":"packages/measurements.html","title":"Measurements Package (ohif-measurements)","keywords":"","body":"Measurements Package (ohif-measurements)\nPackage design\nUsage\nHow to define a Measurement tool\nHow to validate Measurements\nData exchange concepts\nLongitudinal Measurements\nTimepoints\n"},"deployment/building-for-production.html":{"url":"deployment/building-for-production.html","title":"Building for Production","keywords":"","body":"Building for Production\nThis tutorial considers the current folder as OHIFViewer/.\nDependencies\nFirst, you need to have installed:\n\nNode.js and NPM\nMeteor\nMongoDB\n\nMongoDB is actually not required if you have a remote MongoDB. If your database is local then you need to have it running.\nCheck your packages\nInside of the viewer folder make sure NPM packages are updated for production:\nnpm install --production\n\nBuilding\nThere are two ways of building OHIF Viewer for a specific DICOM server: Automatically or Manually.\nFor both, we use the meteor build (check it's docs) app and Orthanc Dicom Web Server.\nFor meteor build it's necessary to inform an output folder myOutputFolder.\nRemember to change myOutputFolder to your folder location.\nOHIF Viewer will be built using Orthanc DICOM Web server configuration file ../config/orthancDICOMWeb.json to set METEOR_SETTINGS environment var.\nTo run with another server, just point to the corresponding .json located in config folder or create your own.\nBuild automatically\nAfter this step, go directly to Prepare to run production build.\nNon-windows users\nMETEOR_PACKAGE_DIRS=\"../Packages\" METEOR_SETTINGS=$(cat ../config/orthancDICOMWeb.json) meteor build --directory myOutputFolder\n\nWindows users\nSince there is no cat command in Windows cmd, use Windows PowerShell (at least version 3.0) instead.\nIn PowerShell, open a new shell as an admin:\nStart-Process powershell -Verb runAs\n\nThen:\nRemember to change OHIFViewerFolderLocation to OHIFViewer's folder location.\ncd OHIFViewerFolderLocation\n$settings = Get-Content ..\\config\\orthancDICOMWeb.json -Raw\n$settings = $settings -replace \"`n\",\"\" -replace \"`r\",\"\" -replace \" \",\"\"\n[Environment]::SetEnvironmentVariable(\"METEOR_SETTINGS\", $settings, \"Machine\")\nSET METEOR_PACKAGE_DIRS=\"../Packages\"\nmeteor build --directory myOutputFolder\n\nBuild manually\nOHIF Viewer will be built normally, but with no DICOM Server information, which needs to be added when running the build. This is described in Manually adding DICOM Server to the Viewer.\nNon-windows users\nMETEOR_PACKAGE_DIRS=\"../Packages\" meteor build --directory myOutputFolder\n\nWindows users in cmd\nSET METEOR_PACKAGE_DIRS=\"../Packages\"\nmeteor build --directory myOutputFolder\n\nPrepare to run production build\nIf everything went ok, meteor build created a bundle folder inside myOutputFolder.\nRemember to change myOutputFolder to your folder location.\nGo to that folder:\ncd myOutputFolder/bundle\n\nNow install the NPM dependencies:\ncd programs/server\nnpm install\n\nTo run production build\nGo back to the bundle folder:\ncd ../..\n\nor (Remember to change myOutputFolder to your folder location.):\ncd myOutputFolder/bundle\n\n3 environment variables are set before running Node.js:\n\nMONGO_URL: is the url to MongoDB. If it's local, you need to have it running\nROOT_URL: the hostname where you can access your Viewer in the browser\nPORT: the port the Viewer will run\n\nThis way, the Viewer can be accessed in http://localhost:3000, with MongoDB running locally using 27017 port (it's default).\nNon-windows users\nMONGO_URL=mongodb://localhost:27017/myapp ROOT_URL=http://localhost PORT=3000 node main.js\n\nWindows users in cmd\nSET MONGO_URL=mongodb://localhost:27017/myapp\nSET ROOT_URL=http://localhost\nSET PORT=3000\nnode main.js\n\nManually adding DICOM Server to the Viewer\nIf DICOM Server was configured automatically during the building process, skip this step.\nAccess the viewer http://localhost:3000 and toggle the Options menu, located at top right corner. Select Server Information option.\nIn Server Information dialog click on Add a new server button and fill the fields accordingly to the DICOM Server to be added.\nIn case of doubts about any field in this dialog, use config/orthancDICOMWeb.json as reference.\nAfter filling the form, click on the Save button and the new server will be listed. Make sure to activate it by clicking on the left most button (a checkbox button) in the Actions column.\nRefresh the page and Viewer will be connected to the DICOM Server.\n"},"deployment/security.html":{"url":"deployment/security.html","title":"Security","keywords":"","body":"Security\n"},"I-want-to/add-a-tool-to-the-viewer.html":{"url":"I-want-to/add-a-tool-to-the-viewer.html","title":"Add a Tool to the Viewer","keywords":"","body":"Add a Tool to the Viewer\nTo add a tool to the Viewer there are a few steps:\n\nAdd the tool itself to the repository.\nIf you're using something from Cornerstone Tools you can skip this step.\nSome examples of custom tools can be found in the lesion tracker: https://github.com/OHIF/Viewers/tree/master/Packages/ohif-lesiontracker/client/compatibility\n\nAdd the toolbar button itself to the array of tools in the Toolbar:\nhttps://github.com/OHIF/Viewers/blob/574a6d02b090b8b2f020430c5919f8377b8316c6/OHIFViewer/client/components/toolbarSection/toolbarSection.js\n\nA: Add it to the toolManager (if it's a tool, such as length / angle):\nhttps://github.com/OHIF/Viewers/blob/574a6d02b090b8b2f020430c5919f8377b8316c6/Packages/lesiontracker/client/tools.js#L2\n --- OR --- \nB: Add it to the functionList if it's a command (e.g. toggle CINE play, or Invert the current viewport):\nhttps://github.com/OHIF/Viewers/blob/574a6d02b090b8b2f020430c5919f8377b8316c6/OHIFViewer/client/components/viewer/viewer.js#L12\n\n\n"},"I-want-to/add-a-logo-to-the-viewer.html":{"url":"I-want-to/add-a-logo-to-the-viewer.html","title":"Add a Logo to the Viewer","keywords":"","body":"Add a Logo to the Viewer\nThe OHIF Framework provides ohif-header package to add a header into application layout. ohif-header package is designed as a custom block helper named header to define your own header context.\nIf you would like to add SVG logo to header please follow these steps.\n\nAdd your SVG logo into public folder.\n\nAdd header content block which will be located on the top of the application layout into your application's main template. You can also pass some parameters to header content block to customize the header.\n\nheaderClasses: the list of classes which will be applied to header element\nbrandHref: the url of the logo to link\n\n\n\n{{#header headerClasses=\"header-big bg-blue\" brandHref=\"your logo link\"}}\n...\n{{/header}}\n\n\nCreate a section called as brand in header content block and add your logo content which is displayed on the left side of the header as default into section brand.\n\n {{#header}}\n {{#section \"brand\"}}\n \n \n \n \n\n \n Logo Text\n {{/section}}\n {{/header}}\n\n For example, see how it works in OHIF Viewer\n"},"example-applications/ohif-viewer.html":{"url":"example-applications/ohif-viewer.html","title":"OHIF Viewer","keywords":"","body":"OHIF Viewer\n"},"example-applications/lesion-tracker.html":{"url":"example-applications/lesion-tracker.html","title":"Lesion Tracker","keywords":"","body":"Lesion Tracker\n"},"example-applications/standalone-viewer.html":{"url":"example-applications/standalone-viewer.html","title":"Standalone Viewer","keywords":"","body":"Standalone Viewer\n"},"standalone-viewer/usage.html":{"url":"standalone-viewer/usage.html","title":"Usage","keywords":"","body":"Standalone Viewer\nQuick Start\nInstall dependencies:\nmeteor npm install\n\nRun the application:\nMETEOR_PACKAGE_DIRS=\"../../Packages\" ROOT_URL=http://localhost:3000 meteor\n\nOpen your web browser and navigate to one of the following URLs to test the standalone viewer application:\nhttp://localhost:3000/testId\n\nOr, to load DICOMs:\nhttp://localhost:3000/testDICOMs\n\nTo Build for the Client\nIt is possible to build this standalone viewer to run as a client-only bundle of HTML, JavaScript, and CSS.\n\nFirst, install meteor-build-client-fixed.\nsudo npm install -g meteor-build-client-fixed\n\n\nNext, build the client bundle into an output folder (\"myOutputFolder\") with a base URL (\"localhost:3000\"). In production, this would be the URL where the Viewer is available.\nMETEOR_PACKAGE_DIRS=\"../../Packages\" meteor-build-client-fixed ../myOutputFolder -u localhost:3000\n\nTest the bundled client-side package locally.\n Note: You will need to have Python installed to run the test server for this case. It is not a typical simple HTTP server. The bundled script redirects all URLs following the base URL to index.html. It will then use the routes defined in your application to handle the URL parameters.\n In our case, this means it will request a JSON file at baseURL/api/[id parameter].\n So if you navigate to http://localhost:3000/sampleJPEG.json the application will retrieve the JSON from http://localhost:3000/api/sampleJPEG.json and use it to populate the viewer. If something appears to be broken, make sure you retrieve a JSON file at the /api URL.\n Create the api folder for your data\ncd myOutputFolder\nmkdir api\n\n Copy your data into the folder\ncp ../etc/sample* api/\n\n Run the server\npython ../etc/redirectingSimpleServer.py\n\n Open your web browser and navigate to http://localhost:3000/sampleJPEG.json or http://localhost:3000/sampleDICOM.json\n\n\nTesting the Sample client-only build\nFor the sake of simplicity we have also included a pre-built client-only version of the standalone viewer, which can be found in the SampleClientOnlyBuild folder.\nYou can test this with:\n cd SampleClientOnlyBuild\n python ../etc/redirectingSimpleServer.py\n\n"},"lesion-tracker/user-manual.html":{"url":"lesion-tracker/user-manual.html","title":"User Manual","keywords":"","body":"Lesion Tracker - User Manual\n\nInstallation on Windows\nManage Studies in Orthanc\nUser Accounts\nStudy and Timepoint Management\nLesion Tracking\nUser Preferences\nServer Management\nAudit Trail\n\n"},"lesion-tracker/installation-on-windows.html":{"url":"lesion-tracker/installation-on-windows.html","title":"Installation on Windows","keywords":"","body":"Lesion Tracker - Installation on Windows\nOn Windows, the easiest way to install LesionTracker is using the provided Windows Installer. You can download the latest version of LesionTracker installer from OHIF\nInstall\n\nAfter you have obtained the latest version of LesionTracker installer, double-click the installer to install the application.\nWhen you start the installer, setup wizard will pop up.\n\n\nClick Install to start the installation.\n\nLesionTracker will install prerequisites if they do not exist before installing the application.\n\n\nClick the Next if you accept the installation.\n\n\nRead the license agreement, and if you agree, click I accept the terms in the License Agreement and then click the Next.\n\n\nSelect a location to install LesionTracker and click the Next to continue.\n\n\nClick the Install to start the installation and the installation will be started.\n\n\nClick Finish to complete the installation.\n\n\nWhen the installation is done,\n\nYou will see the final dialog which gives the URLs in order to connect to LesionTracker Viewer and Orthanc Server.\n\nIt will launch computer's default browser and display LesionTracker Viewer if you click 'http://localhost:3000'\nIt will launch computer's default browser and enables to upload studies to Orthanc Server if you click 'http://localhost:8042'\n\n\n\nAlso, LesionTracker installer will create two shortcuts named LesionTracker and Orthanc Server on the Desktop.\n\nIt will launch computer's default browser and display LesionTracker image viewer if you click LesionTracker application on the Desktop.\nIt will launch computer's default browser and enables to upload studies to Orthanc Server if you click Orthanc Server application.\n\n\n\nClick the Done and Close to close the installation window.\n\n\nAfter the installation is completed,\n\nYou can find the project folder in C:\\Program Files\\OHIF\\LesionTracker if you use the default installation location.\nYou will find 4 program executables which eases managing the services in the project folder:\n\nStart Services.exe: Starts LesionTracker, MongoDB and Orthanc services manually.\nStop Services.exe: Stops LesionTracker, MongoDB and Orthanc services manually.\nTurn Off Auto Services.exe: Configures not to start LesionTracker, MongoDB and Orthanc services automatically when Windows starts up.\nTurn On Auto Services.exe: Configures to start LesionTracker, MongoDB and Orthanc services automatically when Windows starts up.\n\n\n\n\nUninstall\n\nOpen the Start Menu.\nClick Settings.\nClick Apps on the Settings menu.\nSelect Apps & features from the left panel.\nFind the LesionTracker in programs list and click LesionTracker, then click the Uninstall.\n\n\nClick Uninstall from the LesionTracker Setup dialog.\n\n\n\nWhen the uninstallation is done, the uninstallation will remove;\n\nPrerequisites: MongoDB, nodejs and Orthanc Server\nThe project folder, OHIF, from C:\\Program Files\nBackground Services: LesionTracker Server, MongoDB and Orthanc services\nShortcuts: LesionTracker and Orthanc Server shortcuts on the Desktop\n\n"},"lesion-tracker/manage-studies-in-orthanc.html":{"url":"lesion-tracker/manage-studies-in-orthanc.html","title":"Manage Studies in Orthanc","keywords":"","body":"Lesion Tracker - Manage Studies in Orthanc\nOrthanc is an open-source, simple and powerful standalone DICOM server which eases DICOM scripting and data management for clinical routine and medical research. LesionTracker installer installs Orthanc as a service and runs automatically in the background. Orthanc serves a web interface, Orthanc Explorer, and it can be accessed through http://localhost:8042 in your web browser or the Orthanc Server shortcut which is created by LesionTracker installer and loads http://localhost:8042 in your default browser.\nUpload a study into Orthanc using Orthanc Explorer\n\nClick Upload button at the top-right of Orthanc Explorer and you will be brought to the upload page.\n\n\nSelect the DICOM files and drag those files into Orthanc Explorer.\n\n\nClick Start the upload and wait until the upload is complete.\n\n\nClick Patients to view the uploaded study.\n\n\n\nDelete a study from Orthanc using Orthanc Explorer\n\nSelect a patient from Patients list.\n\n\nSelect a study of the patient.\n\n\nSelect Delete this study in the Interact menu.\n\n\n\n"},"lesion-tracker/user-accounts.html":{"url":"lesion-tracker/user-accounts.html","title":"User Accounts","keywords":"","body":"Lesion Tracker - User Accounts\nSign In\nLesionTracker requires authentication to access the viewer.\nIf you are already a registered user, enter Your Email and Password and click Sign In\n\nRegister An Account\nIf you are a new user, click Need An Account and fill the all fields and click Join Now\n\nNote: There is a Test Drive button on the top-right of Login page. Test Drive is used to skip registration process and allows to use LesionTracker with a test account. This will be removed in the next versions.\nForgot Password\nTo reset the password, enter Your Email and click Send Reminder. An email that includes a link to reset your password will be sent to your email address.\n\nChange Password\nTo change password:\n\nClick Configuration menu icon at the top-right of the workspace then select Change Password\nEnter your password and click Change Password\n\n\nLogout\nTo logout, click Logout on the Configuration menu.\n\n"},"lesion-tracker/study-and-timepoint-management.html":{"url":"lesion-tracker/study-and-timepoint-management.html","title":"Study and Timepoint Management","keywords":"","body":"Lesion Tracker - Study and Timepoint Management\n\n\nStudy List allows to sort each column. To sort studies, click the desired column header.\nStudy List is filterable for each column and you can filter by more than one column by typing in the column field. To filter a column, type the text in the desired column header field and press Enter.\nPagination is provided for the Study List at the bottom of the page. You can change the number of rows per page or the current page.\n\nStudy List Context Menu\nWhen you right-click on the study row, Study Context Menu will pop up. Study Context Menu includes operations at the study level.\nThere are a couple of ways to view a study:\n\nSimply double-click on the study row.\nSelect View option on the Study Context Menu, then you will be redirected to Viewer page.\n\n\nTimepoint Association\n\nTo link a study with a timepoint, right-click on the study row and select Associate option on the Study Context Menu. You will see Study Association dialog.\nTo link multiple studies at the same time, hold Shift key and select studies you would like to associate, then right-click and select Associate on the Study Context Menu\n\n\nThe Study Association dialog allows you to select and unselect Timepoint Type for the selected study or studies. Also, it will include all studies within 14 days of your selected studies, in case you forgot to select a study. After you identify timepoints for the selected study or studies, click Save to save the association.\n\nRemove Timepoint Association\nTo unlink a timepoint association with a study, right-click on the study row and select Remove Association option on the Study Context Menu. Remove Association will be disabled if the study is already dissociated.\n\nView Series Details\nTo view details of related series, right-click on the study row and select View Series Details option on the Study Context Menu, then Series Details dialog will pop up. Series Details dialog gives a summary of the selected study.\n\nAnonymize (Under Development)\n...\nSend (Under Development)\n...\nExport (Under Development)\n...\nDelete (Under Development)\n...\n"},"lesion-tracker/using-the-viewer.html":{"url":"lesion-tracker/using-the-viewer.html","title":"Using the Viewer","keywords":"","body":"Lesion Tracker - Using the Viewer\nAfter you double-click a study, the Lesion Tracking imaging application will be launched. The basic patient and study data is displayed in the Image Viewer.\n\nSwitching Studies and Series\nThere are two methods to switch studies and series inside each viewport:\nStudies Panel\nStudies Panel at the left side of the workspace allows you to change studies and series. Click Studies button to toggle Studies Panel. You can view images in two ways:\n\nDouble-click the desired series thumbnail.\nDrag and drop the desired series thumbnail on the image viewer.\n\n\nQuick Switch Tool\nQuick Switch Tool in the top-middle of the workspace allows you to switch studies and series for the active image viewer easily. Selected series will be colored by the theme colors.\n\nImage Manipulation Tools\nImage Manipulation Tools are available in the toolbar at the top of the workspace.\nZoom Tool\nThere are a couple of ways to zoom the image:\n\nSelect Zoom Tool and down on the image with the left mouse button.\nDown on the image the right mouse button without selecting Zoom Tool.\n\n\nWindow Width & Level\nThere are a couple of ways to change the window/level of the image:\n\nSelect Levels Tool and drag on the image with the left mouse button. Dragging up decreases the level and dragging left decreases the window width.\n\n\nAlternatively, you can use default Window/Level Presets which are defined in User Preferences dialog or create your window level values.\n\n\n\nPan Tool\nThere are a couple of ways to pan the image:\n\nSelect Pan Tool and move the image around the screen with the left mouse button.\nMove the image around the screen with the middle mouse button without selecting Pan Tool.\n\n\nStack Scroll Tool\nThere are a number of ways to scroll images:\n\nScroll up and down the mouse wheel.\nDrag the scroll bar at the right side of the image viewer.\nUse Up and Down buttons on the keyboard.\n\n\nLesion Tracking Basics\nView Case Response Criteria\nLesionTracker supports Conformance Checks for RECIST 1.1 and click Trial to view Response Criteria details.\nNote: Trial button is available if the study is associated with a timepoint.\n\nMeasurements Table\nTo view measurements and manipulate the lesions, click Measurements button at the top-right of the workspace. The Measurements table will be displayed at the right side of the workspace. To hide the Measurements the table, click Measurements button.\nNote: Measurements button is available if the study is associated with a timepoint.\n\nTarget Tool\n\nTo create a target, select Target Tool and click on the image.\nHold, drag and release the mouse button to create the target.\n\n\nTo label the target, click Add Label button.\n\n\nTo resize the measurement, hover the mouse over the end points of the target then click and drag.\n\nTo rename the lesion, click the lesion number in the Measurements table then click Rename\n\n\nTo delete the lesion, click the lesion number in the Measurements table then click Delete. It will delete the lesion from the Measurements table and the image.\n\n\n\nCompletely Resolved (CR) Target Tool\nTo make a lesion completely resolved, click Target Tool and select CR Target from Target Tool pop up.\n\nUnknown (UN) Target Tool\nTo mark a lesion as unknown, click Target Tool and select UN Target from Target Tool pop up.\n\nNon-Target Tool\n\nTo create a non-target, select Non-Target Tool and click on the image.\nHold, drag and release the mouse button to create a non-target.\n\n\nSelect Lesion Location and Lesion Location Response then click Confirm.\n\n\nTo resize the measurement, hover the mouse over the end points of the non-target then click and drag.\n\nTo rename the lesion, click the lesion number in the Measurements table then click Rename\nTo delete the lesion, click the lesion number in the Measurements table then click Delete. It will delete the lesion from the Measurements table and the image.\n\nView Lesion\nTo view the lesion on the image, click the measurement record in the Measurements table then the image which includes the lesion will be displayed by activating the selected lesion.\n\nConformance Checks\nAny lesion that will conflict with Response Criteria for RECIST 1.1 will be flagged in the Measurements table. To view criteria non-conformities, click the icon at the left of the lesion record in the Measurements table.\n\nGenerating PDF Reports\n\nTo generate reports of measurements, click Generate Report button at the bottom of the Measurements table.\n\n\n\nA PDF file which includes target and non-target measurements with annotated image snapshots will be created.\n\n\nSaving Measurements\nThere a couple of ways to save changes:\n\nClick Save button at the top-right of the workspace.\n\n\nClick Study list to save changes and go back to Study List.\n\n\n\nTimepoint Comparison\nLesionTracker allows to compare time points and manipulate the measurements on the timepoint images. To launch the compare mode:\n\nAssociate a study with Follow-up timepoint then double-click Follow-up study. Follow-up and Baseline studies will be displayed in 1x2 layout and Baseline study will show the image which includes the first target measurement as default.\nMeasurements in the Follow-up must be created in the same order as they were on Baseline.\n\n\n\nComparison\nย  ย  Comparison tab in the Measurements table allows you to display lesions in the timepoint compared.\n\nKey Timepoints\nKey Timepoints tab in the Measurements table allows you to display the lesions by the timepoints at the same time.\n\nImage Review\nTo compare the lesions in Baseline and Follow-up, click the lesion record in the Measurements table. The recorded lesions will be displayed on the Baseline and Follow-up images\nStack Scroll Tool**\nTo scroll between two series synchronously, click More button and select Stack Scroll Tool.\n\nCase Progress\nCase Progress icon displays the progress of target and non-target lesions which are assessed out of total lesions. Number in the middle of the icon shows the number of lesions which are not assessed.\n\nHeads Up Display (HUD) Panel\nTo have a quick view of the Measurements table, click HUD button at the top-right of the workspace. You can easily move and resize the HUD Panel on the workspace.\n\nNote: HUD button is only available if the study is associated with a timepoint.\nAdditional Tools\nTemporary Length Measurement\nTo check the size of a lesion without adding to the Measurements table, select Temp Tool.\n\nStack Scroll Tool\nTo scroll images:\n\nClick More button and select Stack Scroll Tool.\nDrag down and up on the image viewer with the left mouse button.\n\n\nReset Image Tool\nTo reset the geometric orientation, position and magnification of the image in the active image viewer, click More button and select Reset Tool.\n\nRotate Right Tool\nTo rotate the image in the active image viewer 90 degree clockwise, click More button and select Rotate Right Tool.\n\nFlip H Tool\nTo flip the image in the active image viewer horizontally, click More button and select Flip H Tool.\n\nFlip V Tool\nTo flip the image in the active image viewer vertically, click More button and select Flip V Tool.\n\nInvert Tool\nTo invert the image in the active image viewer, click More button and select Invert Tool.\n\nMagnify Tool\nMagnify Tool allows to zoom in a part of the image without changing zoom level of the whole image.\n\nClick More button and select Magnify Tool.\nClick and drag around the image with the left mouse button.\n\n\n3.7.9. Ellipse Tool\nEllipse Tool allows you to draw elliptical annotation with mean and standard deviation values.\n\nClick More button and select Ellipse Tool then click on the image.\nHold, move and release the mouse button to create the annotation.\n\n\nSave Screenshot\nTo save a screenshot of the current active viewport:\n\nClick More button and click Save Screenshot.\nSet image name and sizes and click Download.\n\n\nCINE Tool\nCINE Tool allows to play through stacks of images in the active viewport.\n\nClick More button and click CINE Tool. The CINE dialog will pop up.\nClick the desired media options from the CINE dialog.\nTo close CINE dialog, click CINE Tool.\n\n\n"},"lesion-tracker/user-preferences.html":{"url":"lesion-tracker/user-preferences.html","title":"User Preferences","keywords":"","body":"Lesion Tracker - User Preferences\nTo view User Preferences dialog, select Preferences on the Configuration menu. User Preferences dialog includes a couple of tabs:\n\nKeyboard Shortcuts\nThere are a number of default shortcuts for the defined tools. To change the shortcut for the tool, type the desired key into the tool field.\n\nWindow Width & Level Presets\nThere are a number of default Window Width/Level settings in the Window W/L tab. To create a new setting, enter the desired column field.\n\nColor Themes\n\nTo modify the colors in the viewer, select Themes from Configuration menu.\nSelect a theme then click Apply theme to change the theme.\n\n\n"},"lesion-tracker/server-management.html":{"url":"lesion-tracker/server-management.html","title":"Server Management","keywords":"","body":"Lesion Tracker - Server Management\nLesionTracker supports configuration of multiple servers and allows to switch between them. To configure the servers, click Server Information on the Configuration Menu.\n\n"},"lesion-tracker/audit-trail.html":{"url":"lesion-tracker/audit-trail.html","title":"Audit Trail","keywords":"","body":"Lesion Tracker - Audit Trail\n\nTo view Audit Trails, select View Audit Log on the Configuration menu.\nTo filter audit logs for a column or multiple columns, type or select in the related column or columns.\n\n\n"},"faq/general.html":{"url":"faq/general.html","title":"General","keywords":"","body":"Frequently Asked Questions - General\nHow do I file a bug?\nWe accept and triage bug reports through Github primarily.\n\nCreate a Github account\nSearch the current Issue List to ensure you are not creating a duplicate issue.\nIf your issue already exists, post a comment to show us that this issue also affects you.\n\nIf no prior issue exists, Create a New Issue on the repository.\n\n\nSome tips for filing a new issue:\n\nMake sure your issue is reproducible: If we try to reproduce your issue given your provided steps and we cannot reproduce it, we will not be able to fix it. Nobody wants to spend time guessing how to reproduce your issue! Before filing, please reproduce your issue more than once and clearly describe the steps taken.\nIf you are reporting a user interface issue, provide screenshots: A picture is worth a thousand words. If your issue concerns the UI, screenshots will help us identify the issue dramatically faster since it can be extremely challenging to describe UI bugs with text. You should still clearly describe the steps that you took to produce the issue.\nInclude platform & environment: Your operating system, web browser, and web browser version are highly relevant for many bugs. Please provide these with all bug reports.\nInclude expected and actual result: Tell us what you expected to happen, and what actually happened. If you don't do this, we might not consider it a bug.\n\nHow can I request a new feature?\nAt the moment we are in the process of defining our roadmap and will do our best to communicate this to the community. If your requested feature is on the roadmap, then it will most likely be built at some point. If it is not, you are welcome to build it yourself and contribute it. If you have resources and would like to fund the development of a feature, please contact us.\nWho should I contact about Academic Collaborations?\nGordon J. Harris at Massachusetts General Hospital is the primary contact for any academic collaborators. We are always happy to hear about new groups interested in using the OHIF framework, and may be able to provide development support if the proposed collaboration has an impact on cancer research.\nDo you offer commercial support?\nThe Open Health Imaging Foundation does not offer commercial support, however, some community members do offer consulting services. The following contacts may be useful:\n\nRob Lewis (Radical Imaging)\n\nPlease file a Pull Request if you wish to add your name or organization to this list.\nI emailed my question to you directly and you did not respond. Why not?\nEmailing developers directly is not a shortcut to faster support. Please file your issues and questions on Github so that everyone can benefit from the discussion and solutions.\nDo your Viewers have 510(k) Clearance from the U.S. F.D.A or CE Marking from the European Commission?\nNO. The OHIF Viewer, Lesion Tracker, and Standalone Viewer, NOT F.D.A. cleared or CE Marked. It is the users responsibility to ensure compliance with applicable rules and regulations. The License for the OHIF Framework does not prevent your company or group from seeking F.D.A. clearance for a product built using the framework.\nIf you have gone this route (or are going there), please let us know because we would be interested to hear about your experience.\nAre your Viewers HIPAA Compliant?\nNO. The OHIF Viewer, Lesion Tracker, and Standalone Viewer DO NOT fulfill all of the criteria to become HIPAA Compliant. It is the users responsibility to ensure compliance with applicable rules and regulations.\nThe Lesion Tracker application demonstrates some available components and features (e.g. Audit Trail, automatic logoff, and unique user identification for User Accounts) which could be used by third parties seeking HIPAA compliance.\n"},"faq/technical.html":{"url":"faq/technical.html","title":"Technical","keywords":"","body":"Frequently Asked Questions - Technical\nWhy is your framework built with Meteor?\nAt the time of project conception, Meteor was a simple way to begin using bleeding edge web technologies without putting significant effort into configuration and build processes. Although Meteor does have some drawbacks, it remains a simple all-in-one solution.\nDo you have any plans to stop using Meteor?\nWe have considered migrating templates from Blaze (http://blazejs.org/) to React (https://reactjs.org/) or Vue (https://vuejs.org/), simply because these decouple the view layer from the remainder of the application. Blaze currently lacks Stand-alone Support which means that our templates are not re-usable outside of a Meteor application. This is certainly a downside, but the resource cost to migrate every template is significant.\n"},"contributing.html":{"url":"contributing.html","title":"Contributing","keywords":"","body":"Contributing\nI would like to contribute code - how do I do this?\nFork the repository, make your change and submit a pull request.\nAny guidance on submitting changes?\nWhile we do appreciate code contributions, triaging and integrating contributed code changes can be very time consuming. Please consider the following tips when working on your pull requests:\n\nFunctionality is appropriate for the repository. Consider posting on the forum if you are not sure.\nCode quality is acceptable. We don't have coding standards defined, but make sure it passes ESLint and looks like the rest of the code in the repository.\nQuality of design is acceptable. This is a bit subjective so you should consider posting on the forum for specific guidance.\nThe scope of the pull request is not too large. Please consider separate pull requests for each feature as big pull requests are very time consuming to understand.\n\nWe will provide feedback on your pull requests as soon as possible. Following the tips above will help ensure your changes are reviewed.\nTesting contribution pull requests\nOHIF uses netlify so that pull requests are autogenerated and available for testing.\nFor example, this url allows you to test pull request 237, the request that created this FAQ entry, using data pulled from Amazon S3.\nReplacing the number 237 in the link below with your pull request number should let you test it as well and you can use this link for discussions on github without requiring reviewers to download and build your branch.\nhttps://deploy-preview-237--ohif.netlify.com/viewer/?url=https://s3.eu-central-1.amazonaws.com/ohif-viewer/sampleDICOM.json\nIf you have made a documentation change, a link like this will let you preview the gitbook generated by the pull request:\nhttps://deploy-preview-237--ohif.netlify.com/contributing.html\n"}}} \ No newline at end of file diff --git a/docs/latest/_book/history/v1/sitemap.xml b/docs/latest/_book/history/v1/sitemap.xml deleted file mode 100644 index 82b65a8c9..000000000 --- a/docs/latest/_book/history/v1/sitemap.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - https://docs.ohif.org/./ weekly 0.5 - https://docs.ohif.org/essentials/installation.html weekly 0.5 - https://docs.ohif.org/essentials/getting-started.html weekly 0.5 - https://docs.ohif.org/essentials/architecture.html weekly 0.5 - https://docs.ohif.org/essentials/configuration.html weekly 0.5 - https://docs.ohif.org/essentials/troubleshooting.html weekly 0.5 - https://docs.ohif.org/connecting-to-image-archives/options.html weekly 0.5 - https://docs.ohif.org/connecting-to-image-archives/dicomweb.html weekly 0.5 - https://docs.ohif.org/connecting-to-image-archives/dimse.html weekly 0.5 - https://docs.ohif.org/connecting-to-image-archives/dcm4chee-with-docker.html weekly 0.5 - https://docs.ohif.org/connecting-to-image-archives/orthanc-with-docker.html weekly 0.5 - https://docs.ohif.org/connecting-to-image-archives/osirix.html weekly 0.5 - https://docs.ohif.org/data/data-hierarchy.html weekly 0.5 - https://docs.ohif.org/data/image-viewport.html weekly 0.5 - https://docs.ohif.org/layout/layout-management.html weekly 0.5 - https://docs.ohif.org/layout/hanging-protocols.html weekly 0.5 - https://docs.ohif.org/packages/measurements.html weekly 0.5 - https://docs.ohif.org/deployment/building-for-production.html weekly 0.5 - https://docs.ohif.org/deployment/security.html weekly 0.5 - https://docs.ohif.org/I-want-to/add-a-tool-to-the-viewer.html weekly 0.5 - https://docs.ohif.org/I-want-to/add-a-logo-to-the-viewer.html weekly 0.5 - https://docs.ohif.org/example-applications/ohif-viewer.html weekly 0.5 - https://docs.ohif.org/example-applications/lesion-tracker.html weekly 0.5 - https://docs.ohif.org/example-applications/standalone-viewer.html weekly 0.5 - https://docs.ohif.org/standalone-viewer/usage.html weekly 0.5 - https://docs.ohif.org/lesion-tracker/user-manual.html weekly 0.5 - https://docs.ohif.org/lesion-tracker/installation-on-windows.html weekly 0.5 - https://docs.ohif.org/lesion-tracker/manage-studies-in-orthanc.html weekly 0.5 - https://docs.ohif.org/lesion-tracker/user-accounts.html weekly 0.5 - https://docs.ohif.org/lesion-tracker/study-and-timepoint-management.html weekly 0.5 - https://docs.ohif.org/lesion-tracker/using-the-viewer.html weekly 0.5 - https://docs.ohif.org/lesion-tracker/user-preferences.html weekly 0.5 - https://docs.ohif.org/lesion-tracker/server-management.html weekly 0.5 - https://docs.ohif.org/lesion-tracker/audit-trail.html weekly 0.5 - https://docs.ohif.org/faq/general.html weekly 0.5 - https://docs.ohif.org/faq/technical.html weekly 0.5 - https://docs.ohif.org/contributing.html weekly 0.5 - \ No newline at end of file diff --git a/docs/latest/_book/history/v1/standalone-viewer/usage.html b/docs/latest/_book/history/v1/standalone-viewer/usage.html deleted file mode 100644 index 4aba8a2a0..000000000 --- a/docs/latest/_book/history/v1/standalone-viewer/usage.html +++ /dev/null @@ -1,1017 +0,0 @@ - - - - - - - Usage ยท OHIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                        -
                                                                        - - - - - - - - -
                                                                        - -
                                                                        - -
                                                                        - - - - - - - - - -
                                                                        -
                                                                        - -
                                                                        -
                                                                        - -
                                                                        - -

                                                                        Standalone Viewer

                                                                        -

                                                                        Quick Start

                                                                        -

                                                                        Install dependencies:

                                                                        -
                                                                        meteor npm install
                                                                        -
                                                                        -

                                                                        Run the application:

                                                                        -
                                                                        METEOR_PACKAGE_DIRS="../../Packages" ROOT_URL=http://localhost:3000 meteor
                                                                        -
                                                                        -

                                                                        Open your web browser and navigate to one of the following URLs to test the standalone viewer application:

                                                                        -
                                                                        http://localhost:3000/testId
                                                                        -
                                                                        -

                                                                        Or, to load DICOMs:

                                                                        -
                                                                        http://localhost:3000/testDICOMs
                                                                        -
                                                                        -

                                                                        To Build for the Client

                                                                        -

                                                                        It is possible to build this standalone viewer to run as a client-only bundle of HTML, JavaScript, and CSS.

                                                                        -
                                                                          -
                                                                        1. First, install meteor-build-client-fixed.

                                                                          -
                                                                          sudo npm install -g meteor-build-client-fixed
                                                                          -
                                                                          -
                                                                        2. -
                                                                        3. Next, build the client bundle into an output folder ("myOutputFolder") with a base URL ("localhost:3000"). In production, this would be the URL where the Viewer is available.

                                                                          -
                                                                          METEOR_PACKAGE_DIRS="../../Packages" meteor-build-client-fixed ../myOutputFolder -u localhost:3000
                                                                          -
                                                                        4. -
                                                                        5. Test the bundled client-side package locally.

                                                                          -

                                                                          Note: You will need to have Python installed to run the test server for this case. It is not a typical simple HTTP server. The bundled script redirects all URLs following the base URL to index.html. It will then use the routes defined in your application to handle the URL parameters.

                                                                          -

                                                                          In our case, this means it will request a JSON file at baseURL/api/[id parameter].

                                                                          -

                                                                          So if you navigate to http://localhost:3000/sampleJPEG.json the application will retrieve the JSON from http://localhost:3000/api/sampleJPEG.json and use it to populate the viewer. If something appears to be broken, make sure you retrieve a JSON file at the /api URL.

                                                                          -

                                                                          Create the api folder for your data

                                                                          -
                                                                          cd myOutputFolder
                                                                          -mkdir api
                                                                          -
                                                                          -

                                                                          Copy your data into the folder

                                                                          -
                                                                          cp ../etc/sample* api/
                                                                          -
                                                                          -

                                                                          Run the server

                                                                          -
                                                                          python ../etc/redirectingSimpleServer.py
                                                                          -
                                                                          -

                                                                          Open your web browser and navigate to http://localhost:3000/sampleJPEG.json or http://localhost:3000/sampleDICOM.json

                                                                          -
                                                                        6. -
                                                                        -

                                                                        Testing the Sample client-only build

                                                                        -

                                                                        For the sake of simplicity we have also included a pre-built client-only version of the standalone viewer, which can be found in the SampleClientOnlyBuild folder.

                                                                        -

                                                                        You can test this with:

                                                                        -
                                                                          cd SampleClientOnlyBuild
                                                                        -  python ../etc/redirectingSimpleServer.py
                                                                        -
                                                                        - - -
                                                                        - -
                                                                        -
                                                                        -
                                                                        - -

                                                                        results matching ""

                                                                        -
                                                                          - -
                                                                          -
                                                                          - -

                                                                          No results matching ""

                                                                          - -
                                                                          -
                                                                          -
                                                                          - -
                                                                          -
                                                                          - - -
                                                                          - - - - - - -
                                                                          - - -
                                                                          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/latest/_book/index.html b/docs/latest/_book/index.html index 0529b8115..e52d6a65b 100644 --- a/docs/latest/_book/index.html +++ b/docs/latest/_book/index.html @@ -21,6 +21,10 @@ + + + + @@ -380,7 +384,7 @@ @@ -402,6 +406,14 @@ + + + + + + + + diff --git a/docs/latest/_book/package.json b/docs/latest/_book/package.json index 1213c7262..12d2b543a 100644 --- a/docs/latest/_book/package.json +++ b/docs/latest/_book/package.json @@ -37,7 +37,8 @@ "gitbook-plugin-ga": "^2.0.0", "gitbook-plugin-github": "^3.0.0", "gitbook-plugin-sitemap": "^1.2.0", - "gitbook-plugin-theme-cornerstone": "^1.1.1" + "gitbook-plugin-theme-cornerstone": "file:.yalc/gitbook-plugin-theme-cornerstone", + "gitbook-plugin-versions": "^2.1.4" }, "devDependencies": { "gitbook-cli": "^2.3.2" diff --git a/docs/latest/_book/search_index.json b/docs/latest/_book/search_index.json index 8f2d4bd09..76517f540 100644 --- a/docs/latest/_book/search_index.json +++ b/docs/latest/_book/search_index.json @@ -1 +1 @@ -{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["(demo)","applications.","base","construct","deploy","develop","dicom","easili","extend","foundat","framework","gener","health","imag","intend","introduct","look","medic","ohif","open","preview","preview?","provid","purpos","simpl","sourc","specif","uses.","viewer","viewer:","web"],"essentials/getting-started.html":["\"no","'loading'","(dicom","(e.g.","(mac","../../config","5.x","abov","add","advice.","against","app","applic","application:","archiv","archive'","avail","browser","browser.","cd","chang","check","choos","click","clone","code","configur","configuration.","connect","consol","console,","correctly,","creat","custom","data","date","dcm4chee","dcmtk'","depend","depth","develop","dicom","dicomcloud","dicomweb","directori","docker","doubl","download","environ","error","errors.","everyth","exampl","feel","file.","files.","filter","follow","found\"","free","get","git","git:","git@github.com:ohif/viewers.git","horo","http://localhost:3000/","identifi","imag","insid","instal","installation.","interface)","javascript","keep","latest","launch","link","list","list.","load","local","make","master","messag","more","never","new","next","node.j","note:","npm","ohif","on","only)","open","option","orthanc","osirix","osx","packag","page","pass","pleas","public","pull","range.","react","react/ccc.json)","react/ohif","react_app_config=$(cat","read","receiv","remot","repositori","request","resolves,","run","section","see","server","server.","set","sourc","start","storescu","studi","studies,","tab","termin","test","tool","tri","troubleshoot","up","upload","us","variabl","verifi","via","viewer","viewer.","visit","want","web","wider","windows.","work","zip"],"essentials/troubleshooting.html":["(e.g.","1.","2.","3.","altern","archive.","authent","basic","browser).","can't","cannot,","check","client","common","configur","curl,","debug","dicom","dicomweb","document","enabl","http","imag","incorrect","incorrectly.","list","over","pac","password","problem","provided.","qido","queri","reason","refer","retriev","root","step","studi","troubleshoot","url","us","usernam","wado","web"],"connecting-to-image-archives/dicomweb.html":["adoption.","archiv","connect","dicom","dicomweb","exchang","fulli","gain","guidelin","imag","internet.","medic","metadata","over","recent","refer","rest","servic","set","standard","support","web","wider","yet,"],"I-want-to/script-tag.html":["(e.g.","/viewer/),","applic","code","codec","correctli","currently,","emb","html","imag","import","loader","notes:","root","rooturl","routerbasenam","run","script","server","sourc","specifi","subdirectori","tag","tag.","url","us","viewer","wado","web","worker"],"faq/general.html":["&","(or","(radic","510(k)","academ","accept","account","actual","add","affect","alreadi","alway","applic","ask","becom","befor","benefit","best","browser","browser,","bug","bug.","bug?","bugs.","build","built","cancer","ce","challeng","clear","clearanc","clearli","collabor","collaborations?","collaborators.","comment","commerci","commission?","commun","community.","compani","complianc","compliant.","compliant?","concern","consid","consult","contact","contribut","creat","criteria","current","defin","describ","develop","directli","discuss","don't","dramat","duplic","email","ensur","environment:","european","everyon","exists,","expect","experience.","extrem","f.d.a","f.d.a.","faster","featur","feature,","feature?","file","filing,","fix","follow","foundat","framework","framework,","framework.","frequent","fulfil","fund","gener","github","given","go","gone","gordon","group","guess","happen,","happened.","happi","harri","health","hear","help","highli","hipaa","hospit","however,","identifi","imag","imaging)","impact","includ","interest","interfac","issu","issue!","issue,","issue.","issue:","it,","it.","j.","know","lesion","lewi","licens","list","list.","make","mani","mark","marked.","massachusett","member","moment","more","name","new","no.","nobodi","not,","not?","offer","ohif","onc","open","oper","organ","pictur","platform","pleas","point.","post","prevent","primari","primarily.","prior","process","produc","product","propos","provid","pull","question","regulations.","relev","report","reports.","repository.","reproduc","reproducible:","request","research.","resourc","respond.","respons","result:","roadmap","roadmap,","rob","rout","rule","screenshot","screenshots:","search","seek","services.","shortcut","show","solutions.","spend","standalon","step","still","support","support,","support.","support?","sure","system,","taken.","tell","text.","there),","this,","thousand","through","time","tip","took","tracker,","tri","triag","u.s.","ui","ui,","us","us.","useful:","user","version","viewer","viewer,","web","welcom","wish","words.","worth","you.","yourself"],"contributing.html":["1.amazonaws.com/ohif","237","237,","abov","acceptable.","allow","amazon","appreci","appropri","autogener","avail","below","big","bit","branch.","build","central","chang","change,","changes?","code","consid","consum","consuming.","contribut","contributions,","creat","data","defined,","design","discuss","document","don't","download","each","ensur","entry,","eslint","example,","faq","featur","feedback","follow","fork","forum","function","gener","gitbook","github","guidanc","guidance.","help","https://deploy","integr","large.","link","look","made","make","netlifi","number","ohif","ohif.netlify.com/contributing.html","ohif.netlify.com/viewer/?url=https://s3.eu","pass","pleas","possible.","post","preview","provid","pull","qualiti","replac","repository,","repository.","request","request.","request:","requests:","requir","rest","review","reviewed.","s3.","scope","separ","soon","specif","standard","subject","submit","sure","sure.","test","testing.","this?","time","tip","triag","understand.","url","us","veri","viewer/sampledicom.json","well","without","work"]},"length":7},"tokenStore":{"root":{"1":{"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043}},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"w":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}}}}}}}}}}},"2":{"3":{"7":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"docs":{}},"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043}}}},"3":{"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}},"5":{"1":{"0":{"docs":{},"(":{"docs":{},"k":{"docs":{},")":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"docs":{}},"docs":{},".":{"docs":{},"x":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}},"o":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903},"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}},":":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"d":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"v":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.02768166089965398},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.07142857142857142}},"e":{"docs":{},"'":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"o":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"s":{"docs":{},"k":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"m":{"docs":{},"a":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}},"i":{"docs":{},"c":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}},")":{"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"n":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"s":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"u":{"docs":{},"g":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"i":{"docs":{},"g":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}}}}},"o":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},"e":{"docs":{},",":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}},"i":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.024539877300613498}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"m":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}},"c":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.012461059190031152}}}}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":10.024539877300613}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903},"contributing.html":{"ref":"contributing.html","tf":0.03680981595092025}},"c":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01384083044982699}}}},"i":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}}}}},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"r":{"docs":{},"c":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"u":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}},"t":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}}}}}}},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},"e":{"docs":{},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"s":{"docs":{},"?":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}},"l":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}},"r":{"docs":{},"l":{"docs":{},",":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.04225352112676056}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},",":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"c":{"docs":{},"e":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.046511627906976744}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}},"t":{"docs":{},"h":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.046511627906976744},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.04225352112676056},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":5.071428571428571}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"u":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}},"l":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}}},"s":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"c":{"docs":{},"m":{"4":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"docs":{},"t":{"docs":{},"k":{"docs":{},"'":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}},"w":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}}}},"c":{"docs":{},"h":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},"e":{"docs":{},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}}}},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},"s":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01384083044982699}}}},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"m":{"docs":{},"b":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":2.032258064516129}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"u":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.046511627906976744},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"\"":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}},"r":{"docs":{},"k":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"u":{"docs":{},"m":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}},"e":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.012461059190031152}},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"s":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"x":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"n":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},".":{"docs":{},"d":{"docs":{},".":{"docs":{},"a":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"q":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.046511627906976744},"faq/general.html":{"ref":"faq/general.html","tf":10.006230529595015},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":5.006920415224913}}}},"i":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},":":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"@":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},":":{"docs":{},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{},"/":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"o":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"n":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"r":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.046511627906976744},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}},"l":{"docs":{},"p":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"o":{"docs":{},"r":{"docs":{},"o":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}},"s":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"w":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}}}}}}}}}},"m":{"docs":{},"l":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"l":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"p":{"docs":{},"a":{"docs":{},"a":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.06976744186046512},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.10714285714285714},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"e":{"docs":{},")":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},".":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"g":{"docs":{},"r":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10.023255813953488}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.03806228373702422}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.04225352112676056}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.03426791277258567}},"e":{"docs":{},"!":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"t":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"a":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}},"e":{"docs":{},"r":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01384083044982699}}}}}},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}}}},"s":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01730103806228374},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"w":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}},"t":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"r":{"docs":{},"k":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"d":{"docs":{},"e":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.020761245674740483},"faq/general.html":{"ref":"faq/general.html","tf":0.012461059190031152},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"?":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"=":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"s":{"3":{"docs":{},".":{"docs":{},"e":{"docs":{},"u":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.06976744186046512},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"n":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},"l":{"docs":{},"y":{"docs":{},")":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242}}}}},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"s":{"docs":{},"i":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}},"x":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},"?":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"faq/general.html":{"ref":"faq/general.html","tf":0.012461059190031152},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"o":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"u":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.046511627906976744}}}}}},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242}}}}}},"l":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.0736196319018405}}}}},"a":{"docs":{},"c":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.056338028169014086}},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01384083044982699}}}}}},"g":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}},"s":{"docs":{},"s":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.018691588785046728},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}},"a":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"s":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}},"s":{"3":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"i":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.06451612903225806}}}}}},"n":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.02422145328719723}},"k":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01730103806228374},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"i":{"docs":{},"c":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01384083044982699},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":5.010380622837371}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"u":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}},"u":{"docs":{},"d":{"docs":{},"i":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.04844290657439446},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}},"e":{"docs":{},"p":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521},"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"b":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}},"r":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":2.032258064516129}}}}},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"s":{"docs":{},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"w":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"u":{"docs":{},"s":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":2.032258064516129},"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"p":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"r":{"docs":{},"l":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},".":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.06976744186046512},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.03460207612456748},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":2.032258064516129},"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}},":":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}}},"/":{"docs":{},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01730103806228374}}}}}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}}}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}},"f":{"docs":{},"i":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01384083044982699},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.056338028169014086},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":5.035714285714286},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903},"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"l":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}},"d":{"docs":{},"o":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}}}},"s":{"docs":{},"h":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01730103806228374},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},"r":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"t":{"docs":{},"h":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"\"":{"docs":{},"n":{"docs":{},"o":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}},".":{"docs":{},".":{"docs":{},"/":{"docs":{},".":{"docs":{},".":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"w":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"faq/general.html":{"ref":"faq/general.html","tf":0.012461059190031152}}},"x":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"s":{"docs":{},":":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"p":{"docs":{},"m":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.020761245674740483}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},"/":{"docs":{},"c":{"docs":{},"c":{"docs":{},"c":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}}},"_":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"=":{"docs":{},"$":{"docs":{},"(":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}},"n":{"docs":{},"t":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"y":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"r":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.012461059190031152}},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364},"contributing.html":{"ref":"contributing.html","tf":0.05521472392638037}},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},":":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"s":{"docs":{},":":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"i":{"docs":{},"r":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"t":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.04225352112676056}}}}}}},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}},"u":{"docs":{},"n":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}},"l":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}}},"u":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"b":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}},"g":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":2.032258064516129}},".":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}},"s":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"l":{"docs":{},"l":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"x":{"docs":{},"t":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"k":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"r":{"docs":{},"i":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"a":{"docs":{},"g":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":10.014084507042254}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"i":{"docs":{},"s":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"?":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}},"p":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}},"z":{"docs":{},"i":{"docs":{},"p":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"q":{"docs":{},"i":{"docs":{},"d":{"docs":{},"o":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}}}}},"y":{"docs":{},"e":{"docs":{},"t":{"docs":{},",":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}},"o":{"docs":{},"u":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}},"/":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},")":{"docs":{},",":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}}}}}}}},"&":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"length":613},"corpusTokens":["\"no","&","'loading'","(demo)","(dicom","(e.g.","(mac","(or","(radic","../../config","/viewer/),","1.","1.amazonaws.com/ohif","2.","237","237,","3.","5.x","510(k)","abov","academ","accept","acceptable.","account","actual","add","adoption.","advice.","affect","against","allow","alreadi","altern","alway","amazon","app","applic","application:","applications.","appreci","appropri","archiv","archive'","archive.","ask","authent","autogener","avail","base","basic","becom","befor","below","benefit","best","big","bit","branch.","browser","browser).","browser,","browser.","bug","bug.","bug?","bugs.","build","built","can't","cancer","cannot,","cd","ce","central","challeng","chang","change,","changes?","check","choos","clear","clearanc","clearli","click","client","clone","code","codec","collabor","collaborations?","collaborators.","comment","commerci","commission?","common","commun","community.","compani","complianc","compliant.","compliant?","concern","configur","configuration.","connect","consid","consol","console,","construct","consult","consum","consuming.","contact","contribut","contributions,","correctli","correctly,","creat","criteria","curl,","current","currently,","custom","data","date","dcm4chee","dcmtk'","debug","defin","defined,","depend","deploy","depth","describ","design","develop","dicom","dicomcloud","dicomweb","directli","directori","discuss","docker","document","don't","doubl","download","dramat","duplic","each","easili","email","emb","enabl","ensur","entry,","environ","environment:","error","errors.","eslint","european","everyon","everyth","exampl","example,","exchang","exists,","expect","experience.","extend","extrem","f.d.a","f.d.a.","faq","faster","featur","feature,","feature?","feedback","feel","file","file.","files.","filing,","filter","fix","follow","fork","forum","found\"","foundat","framework","framework,","framework.","free","frequent","fulfil","fulli","function","fund","gain","gener","get","git","git:","git@github.com:ohif/viewers.git","gitbook","github","given","go","gone","gordon","group","guess","guidanc","guidance.","guidelin","happen,","happened.","happi","harri","health","hear","help","highli","hipaa","horo","hospit","however,","html","http","http://localhost:3000/","https://deploy","identifi","imag","imaging)","impact","import","includ","incorrect","incorrectly.","insid","instal","installation.","integr","intend","interest","interfac","interface)","internet.","introduct","issu","issue!","issue,","issue.","issue:","it,","it.","j.","javascript","keep","know","large.","latest","launch","lesion","lewi","licens","link","list","list.","load","loader","local","look","made","make","mani","mark","marked.","massachusett","master","medic","member","messag","metadata","moment","more","name","netlifi","never","new","next","no.","nobodi","node.j","not,","not?","note:","notes:","npm","number","offer","ohif","ohif.netlify.com/contributing.html","ohif.netlify.com/viewer/?url=https://s3.eu","on","onc","only)","open","oper","option","organ","orthanc","osirix","osx","over","pac","packag","page","pass","password","pictur","platform","pleas","point.","possible.","post","prevent","preview","preview?","primari","primarily.","prior","problem","process","produc","product","propos","provid","provided.","public","pull","purpos","qido","qualiti","queri","question","range.","react","react/ccc.json)","react/ohif","react_app_config=$(cat","read","reason","receiv","recent","refer","regulations.","relev","remot","replac","report","reports.","repositori","repository,","repository.","reproduc","reproducible:","request","request.","request:","requests:","requir","research.","resolves,","resourc","respond.","respons","rest","result:","retriev","review","reviewed.","roadmap","roadmap,","rob","root","rooturl","rout","routerbasenam","rule","run","s3.","scope","screenshot","screenshots:","script","search","section","see","seek","separ","server","server.","servic","services.","set","shortcut","show","simpl","solutions.","soon","sourc","specif","specifi","spend","standalon","standard","start","step","still","storescu","studi","studies,","subdirectori","subject","submit","support","support,","support.","support?","sure","sure.","system,","tab","tag","tag.","taken.","tell","termin","test","testing.","text.","there),","this,","this?","thousand","through","time","tip","took","tool","tracker,","tri","triag","troubleshoot","u.s.","ui","ui,","understand.","up","upload","url","us","us.","useful:","user","usernam","uses.","variabl","veri","verifi","version","via","viewer","viewer,","viewer.","viewer/sampledicom.json","viewer:","visit","wado","want","web","welcom","well","wider","windows.","wish","without","words.","work","worker","worth","yet,","you.","yourself","zip"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"Looking for your Deploy Preview? - Deploy Preview for Viewer\nIntroduction\nThe Open Health Imaging Foundation is developing an open source framework for constructing web-based medical imaging applications.\nThe OHIF Viewer: A general purpose DICOM Viewer (demo)\n\nThe Open Health Imaging Foundation intends to provide a simple general purpose DICOM Viewer which can be easily extended for specific uses.\n"},"essentials/getting-started.html":{"url":"essentials/getting-started.html","title":"Getting Started","keywords":"","body":"Getting Started\nGetting the Code\nEither clone the repository using Git:\ngit clone git@github.com:OHIF/Viewers.git\n\nor Download the latest Master as a ZIP File.\nTest the archive against our public DICOM server\nSet up and test the OHIF Viewer application:\n\nInstall Node.js\nOpen a new terminal tab in the ohif-viewer directory and install all dependency packages via NPM\ncd Packages-react/ohif-viewer\nnpm install\n\n\nRun the application\nnpm start\n\n\n\nNote: This will connect to our public DICOMWeb server so you can verify your installation. Follow the next section to connect to your own local or remote DICOMWeb server.\n\nLaunch the OHIF Viewer Study List by visiting http://localhost:3000/ in a web browser.\n\nIf everything is working correctly, you should see the studies from our public archive when you visit the Study List.\n\nDouble-click on a Study in the Study List to launch it in the Viewer\nIf everything is working correctly, you should see your study load into the Viewer.\n\n\nSet up a local DICOM server\n\nChoose and install an Image Archive\nUpload some data into your archive (e.g. with DCMTK's storescu or your archive's web interface)\nKeep the server running\n\nOpen Source DICOM Image Archive Options\n\n\n\nArchive\nInstallation\n\n\n\n\nDCM4CHEE Archive 5.x\nInstallation with Docker\n\n\nOrthanc\nInstallation with Docker\n\n\nDICOMcloud (DICOM Web only)\nInstallation\n\n\nOsiriX (Mac OSX only)\n\n\n\nHoros (Mac OSX only)\n\n\n\n\nFeel free to make a Pull Request if you want to add to this list.\nSet up and test the OHIF Viewer application:\n\nInstall Node.js\nOpen a new terminal tab in the ohif-viewer directory and install all dependency packages via NPM\ncd Packages-react/ohif-viewer\nnpm install\n\n\nRun the application using one of the available configuration files.\nREACT_APP_CONFIG=$(cat ../../config-react/ccc.json)\nnpm start\n\nThis uses the Custom Environment Variables of Create-React-App to pass in your configuration. The example above will not work on Windows. Please visit the link to read about how to set environment variables on Windows.\n\nLaunch the OHIF Viewer Study List by visiting http://localhost:3000/ in a web browser.\nIf everything is working correctly, you should see the Study List from your archive when you visit the Study List.\n\nDouble-click on a Study in the Study List to launch it in the Viewer\nIf everything is working correctly, you should see your study load into the Viewer.\n\n\nTroubleshooting\n\nIf you receive a \"No Studies Found\" message and do not see your studies, try changing the Study Date filters to a wider range.\nIf you see a 'Loading' message which never resolves, check your browser JavaScript console inside the Developer Tools to identify any errors.\nIf you see any errors in your server console, check the Troubleshooting page for more in depth advice.\n\n"},"essentials/troubleshooting.html":{"url":"essentials/troubleshooting.html","title":"Troubleshooting","keywords":"","body":"Troubleshooting\nCommon Problems\n\n\n\nProblem\nMost Common Reasons\n\n\n\n\n Can't retrieve Study List over DICOMWeb\n1. QIDO root URL is incorrect 2. DICOM Web is not enabled on PACS\n\n\n Can't retrieve images\n1. WADO Root URL is incorrect 2. DICOM Web is not enabled on PACS 3. HTTP Basic Authentication username and password are incorrect or not provided.\n\n\n\nDebugging Steps\nCan't retrieve Study List over DICOMWeb\n\nCheck that you can query your PACS using an alternative DICOM Web client (e.g. cURL, or a Web Browser). If you cannot, then your PACS is configured incorrectly. Refer to the documentation of the image archive.\n\n"},"connecting-to-image-archives/dicomweb.html":{"url":"connecting-to-image-archives/dicomweb.html","title":"DICOM Web","keywords":"","body":"Connecting to Image Archives\nDICOM Web\nDICOMWeb refers to RESTful DICOM Services and is a recently standardized set of guidelines for exchanging medical images and imaging metadata over the internet. Not all archives fully support it yet, but it is gaining wider adoption.\n"},"I-want-to/script-tag.html":{"url":"I-want-to/script-tag.html","title":"Embed the viewer using a script tag","keywords":"","body":"Embed the viewer using a script tag\n\n\nImportant notes:\n\nYou must correctly specify rootUrl and the HTML tag.\nIf your application runs in a subdirectory (e.g. /viewer/), this must be specified in routerBasename\nCurrently, the WADO Image Loader Codecs and Web Worker source code must also be server at the ROOT URL\n\n"},"faq/general.html":{"url":"faq/general.html","title":"General","keywords":"","body":"Frequently Asked Questions - General\nHow do I file a bug?\nWe accept and triage bug reports through Github primarily.\n\nCreate a Github account\nSearch the current Issue List to ensure you are not creating a duplicate issue.\nIf your issue already exists, post a comment to show us that this issue also affects you.\n\nIf no prior issue exists, Create a New Issue on the repository.\n\n\nSome tips for filing a new issue:\n\nMake sure your issue is reproducible: If we try to reproduce your issue given your provided steps and we cannot reproduce it, we will not be able to fix it. Nobody wants to spend time guessing how to reproduce your issue! Before filing, please reproduce your issue more than once and clearly describe the steps taken.\nIf you are reporting a user interface issue, provide screenshots: A picture is worth a thousand words. If your issue concerns the UI, screenshots will help us identify the issue dramatically faster since it can be extremely challenging to describe UI bugs with text. You should still clearly describe the steps that you took to produce the issue.\nInclude platform & environment: Your operating system, web browser, and web browser version are highly relevant for many bugs. Please provide these with all bug reports.\nInclude expected and actual result: Tell us what you expected to happen, and what actually happened. If you don't do this, we might not consider it a bug.\n\nHow can I request a new feature?\nAt the moment we are in the process of defining our roadmap and will do our best to communicate this to the community. If your requested feature is on the roadmap, then it will most likely be built at some point. If it is not, you are welcome to build it yourself and contribute it. If you have resources and would like to fund the development of a feature, please contact us.\nWho should I contact about Academic Collaborations?\nGordon J. Harris at Massachusetts General Hospital is the primary contact for any academic collaborators. We are always happy to hear about new groups interested in using the OHIF framework, and may be able to provide development support if the proposed collaboration has an impact on cancer research.\nDo you offer commercial support?\nThe Open Health Imaging Foundation does not offer commercial support, however, some community members do offer consulting services. The following contacts may be useful:\n\nRob Lewis (Radical Imaging)\n\nPlease file a Pull Request if you wish to add your name or organization to this list.\nI emailed my question to you directly and you did not respond. Why not?\nEmailing developers directly is not a shortcut to faster support. Please file your issues and questions on Github so that everyone can benefit from the discussion and solutions.\nDo your Viewers have 510(k) Clearance from the U.S. F.D.A or CE Marking from the European Commission?\nNO. The OHIF Viewer, Lesion Tracker, and Standalone Viewer, NOT F.D.A. cleared or CE Marked. It is the users responsibility to ensure compliance with applicable rules and regulations. The License for the OHIF Framework does not prevent your company or group from seeking F.D.A. clearance for a product built using the framework.\nIf you have gone this route (or are going there), please let us know because we would be interested to hear about your experience.\nAre your Viewers HIPAA Compliant?\nNO. The OHIF Viewer, Lesion Tracker, and Standalone Viewer DO NOT fulfill all of the criteria to become HIPAA Compliant. It is the users responsibility to ensure compliance with applicable rules and regulations.\n"},"contributing.html":{"url":"contributing.html","title":"Contributing","keywords":"","body":"Contributing\nI would like to contribute code - how do I do this?\nFork the repository, make your change and submit a pull request.\nAny guidance on submitting changes?\nWhile we do appreciate code contributions, triaging and integrating contributed code changes can be very time consuming. Please consider the following tips when working on your pull requests:\n\nFunctionality is appropriate for the repository. Consider posting on the forum if you are not sure.\nCode quality is acceptable. We don't have coding standards defined, but make sure it passes ESLint and looks like the rest of the code in the repository.\nQuality of design is acceptable. This is a bit subjective so you should consider posting on the forum for specific guidance.\nThe scope of the pull request is not too large. Please consider separate pull requests for each feature as big pull requests are very time consuming to understand.\n\nWe will provide feedback on your pull requests as soon as possible. Following the tips above will help ensure your changes are reviewed.\nTesting contribution pull requests\nOHIF uses netlify so that pull requests are autogenerated and available for testing.\nFor example, this url allows you to test pull request 237, the request that created this FAQ entry, using data pulled from Amazon S3.\nReplacing the number 237 in the link below with your pull request number should let you test it as well and you can use this link for discussions on github without requiring reviewers to download and build your branch.\nhttps://deploy-preview-237--ohif.netlify.com/viewer/?url=https://s3.eu-central-1.amazonaws.com/ohif-viewer/sampleDICOM.json\nIf you have made a documentation change, a link like this will let you preview the gitbook generated by the pull request:\nhttps://deploy-preview-237--ohif.netlify.com/contributing.html\n"}}} \ No newline at end of file +{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["(demo)","applications.","base","construct","deploy","develop","dicom","easili","extend","foundat","framework","gener","health","imag","intend","introduct","look","medic","ohif","open","preview","preview?","provid","purpos","simpl","sourc","specif","uses.","viewer","viewer:","web"],"essentials/getting-started.html":["\"no","'loading'","(dicom","(e.g.","(mac","../../config","5.x","abov","add","advice.","against","app","applic","application:","archiv","archive'","avail","browser","browser.","cd","chang","check","choos","click","clone","code","configur","configuration.","connect","consol","console,","correctly,","creat","custom","data","date","dcm4chee","dcmtk'","depend","depth","develop","dicom","dicomcloud","dicomweb","directori","docker","doubl","download","environ","error","errors.","everyth","exampl","feel","file.","files.","filter","follow","found\"","free","get","git","git:","git@github.com:ohif/viewers.git","horo","http://localhost:3000/","identifi","imag","insid","instal","installation.","interface)","javascript","keep","latest","launch","link","list","list.","load","local","make","master","messag","more","never","new","next","node.j","note:","npm","ohif","on","only)","open","option","orthanc","osirix","osx","packag","page","pass","pleas","public","pull","range.","react","react/ccc.json)","react/ohif","react_app_config=$(cat","read","receiv","remot","repositori","request","resolves,","run","section","see","server","server.","set","sourc","start","storescu","studi","studies,","tab","termin","test","tool","tri","troubleshoot","up","upload","us","variabl","verifi","via","viewer","viewer.","visit","want","web","wider","windows.","work","zip"],"essentials/troubleshooting.html":["(e.g.","1.","2.","3.","altern","archive.","authent","basic","browser).","can't","cannot,","check","client","common","configur","curl,","debug","dicom","dicomweb","document","enabl","http","imag","incorrect","incorrectly.","list","over","pac","password","problem","provided.","qido","queri","reason","refer","retriev","root","step","studi","troubleshoot","url","us","usernam","wado","web"],"connecting-to-image-archives/dicomweb.html":["adoption.","archiv","connect","dicom","dicomweb","exchang","fulli","gain","guidelin","imag","internet.","medic","metadata","over","recent","refer","rest","servic","set","standard","support","web","wider","yet,"],"I-want-to/script-tag.html":["(e.g.","/viewer/),","applic","code","codec","correctli","currently,","emb","html","imag","import","loader","notes:","root","rooturl","routerbasenam","run","script","server","sourc","specifi","subdirectori","tag","tag.","url","us","viewer","wado","web","worker"],"faq/general.html":["&","(or","(radic","510(k)","academ","accept","account","actual","add","affect","alreadi","alway","applic","ask","becom","befor","benefit","best","browser","browser,","bug","bug.","bug?","bugs.","build","built","cancer","ce","challeng","clear","clearanc","clearli","collabor","collaborations?","collaborators.","comment","commerci","commission?","commun","community.","compani","complianc","compliant.","compliant?","concern","consid","consult","contact","contribut","creat","criteria","current","defin","describ","develop","directli","discuss","don't","dramat","duplic","email","ensur","environment:","european","everyon","exists,","expect","experience.","extrem","f.d.a","f.d.a.","faster","featur","feature,","feature?","file","filing,","fix","follow","foundat","framework","framework,","framework.","frequent","fulfil","fund","gener","github","given","go","gone","gordon","group","guess","happen,","happened.","happi","harri","health","hear","help","highli","hipaa","hospit","however,","identifi","imag","imaging)","impact","includ","interest","interfac","issu","issue!","issue,","issue.","issue:","it,","it.","j.","know","lesion","lewi","licens","list","list.","make","mani","mark","marked.","massachusett","member","moment","more","name","new","no.","nobodi","not,","not?","offer","ohif","onc","open","oper","organ","pictur","platform","pleas","point.","post","prevent","primari","primarily.","prior","process","produc","product","propos","provid","pull","question","regulations.","relev","report","reports.","repository.","reproduc","reproducible:","request","research.","resourc","respond.","respons","result:","roadmap","roadmap,","rob","rout","rule","screenshot","screenshots:","search","seek","services.","shortcut","show","solutions.","spend","standalon","step","still","support","support,","support.","support?","sure","system,","taken.","tell","text.","there),","this,","thousand","through","time","tip","took","tracker,","tri","triag","u.s.","ui","ui,","us","us.","useful:","user","version","viewer","viewer,","web","welcom","wish","words.","worth","you.","yourself"],"contributing.html":["1.amazonaws.com/ohif","237","237,","abov","acceptable.","allow","amazon","appreci","appropri","autogener","avail","below","big","bit","branch.","build","central","chang","change,","changes?","code","consid","consum","consuming.","contribut","contributions,","creat","data","defined,","design","discuss","document","don't","download","each","ensur","entry,","eslint","example,","faq","featur","feedback","follow","fork","forum","function","gener","gitbook","github","guidanc","guidance.","help","https://deploy","integr","large.","link","look","made","make","netlifi","number","ohif","ohif.netlify.com/contributing.html","ohif.netlify.com/viewer/?url=https://s3.eu","pass","pleas","possible.","post","preview","provid","pull","qualiti","replac","repository,","repository.","request","request.","request:","requests:","requir","rest","review","reviewed.","s3.","scope","separ","soon","specif","standard","subject","submit","sure","sure.","test","testing.","this?","time","tip","triag","understand.","url","us","veri","viewer/sampledicom.json","well","without","work"]},"length":7},"tokenStore":{"root":{"1":{"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043}},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"w":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}}}}}}}}}}},"2":{"3":{"7":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"docs":{}},"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043}}}},"3":{"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}},"5":{"1":{"0":{"docs":{},"(":{"docs":{},"k":{"docs":{},")":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"docs":{}},"docs":{},".":{"docs":{},"x":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}},"o":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903},"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}},":":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"d":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"v":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.02768166089965398},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.07142857142857142}},"e":{"docs":{},"'":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"o":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"s":{"docs":{},"k":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"m":{"docs":{},"a":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}},"i":{"docs":{},"c":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}},")":{"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"n":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"s":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"u":{"docs":{},"g":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"i":{"docs":{},"g":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}}}}},"o":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},"e":{"docs":{},",":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}},"i":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.024539877300613498}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"m":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}},"c":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.012461059190031152}}}}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":10.024539877300613}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903},"contributing.html":{"ref":"contributing.html","tf":0.03680981595092025}},"c":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01384083044982699}}}},"i":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}}}}},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"r":{"docs":{},"c":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"u":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}},"t":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}}}}}}},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},"e":{"docs":{},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"s":{"docs":{},"?":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}},"l":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}},"r":{"docs":{},"l":{"docs":{},",":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.04225352112676056}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},",":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"c":{"docs":{},"e":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.046511627906976744}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}},"t":{"docs":{},"h":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.046511627906976744},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.04225352112676056},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":5.071428571428571}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"u":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}},"l":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}}},"s":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"c":{"docs":{},"m":{"4":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"docs":{},"t":{"docs":{},"k":{"docs":{},"'":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}},"w":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}}}},"c":{"docs":{},"h":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},"e":{"docs":{},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}}}},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},"s":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01384083044982699}}}},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"m":{"docs":{},"b":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":2.032258064516129}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"u":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.046511627906976744},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"\"":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}},"r":{"docs":{},"k":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"u":{"docs":{},"m":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}},"e":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.012461059190031152}},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"s":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"x":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"n":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},".":{"docs":{},"d":{"docs":{},".":{"docs":{},"a":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"q":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.046511627906976744},"faq/general.html":{"ref":"faq/general.html","tf":10.006230529595015},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":5.006920415224913}}}},"i":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},":":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"@":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},":":{"docs":{},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{},"/":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"o":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"n":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"r":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.046511627906976744},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}},"l":{"docs":{},"p":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"o":{"docs":{},"r":{"docs":{},"o":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}},"s":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"w":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}}}}}}}}}},"m":{"docs":{},"l":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"l":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"p":{"docs":{},"a":{"docs":{},"a":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.06976744186046512},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.10714285714285714},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"e":{"docs":{},")":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},".":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"g":{"docs":{},"r":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10.023255813953488}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.03806228373702422}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.04225352112676056}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.03426791277258567}},"e":{"docs":{},"!":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"t":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"a":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}},"e":{"docs":{},"r":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01384083044982699}}}}}},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}}}},"s":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01730103806228374},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"w":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}},"t":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"r":{"docs":{},"k":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"d":{"docs":{},"e":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.020761245674740483},"faq/general.html":{"ref":"faq/general.html","tf":0.012461059190031152},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"?":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"=":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"s":{"3":{"docs":{},".":{"docs":{},"e":{"docs":{},"u":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.06976744186046512},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"n":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},"l":{"docs":{},"y":{"docs":{},")":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242}}}}},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"s":{"docs":{},"i":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}},"x":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},"?":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"faq/general.html":{"ref":"faq/general.html","tf":0.012461059190031152},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"o":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"u":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.046511627906976744}}}}}},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242}}}}}},"l":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.0736196319018405}}}}},"a":{"docs":{},"c":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.056338028169014086}},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01384083044982699}}}}}},"g":{"docs":{},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}},"s":{"docs":{},"s":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.018691588785046728},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}},"a":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"s":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}},"s":{"3":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"i":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.06451612903225806}}}}}},"n":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"e":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.02422145328719723}},"k":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01730103806228374},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"i":{"docs":{},"c":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01384083044982699},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":5.010380622837371}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"u":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}},"u":{"docs":{},"d":{"docs":{},"i":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.04844290657439446},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}},"e":{"docs":{},"p":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521},"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"b":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}},"r":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":2.032258064516129}}}}},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"s":{"docs":{},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"w":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"u":{"docs":{},"s":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":2.032258064516129},"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}}},"r":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"p":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"r":{"docs":{},"l":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}},".":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.06976744186046512},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.03460207612456748},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":2.032258064516129},"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}},":":{"docs":{"./":{"ref":"./","tf":0.023255813953488372}}},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}}},"/":{"docs":{},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01730103806228374}}}}}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}}}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}},"f":{"docs":{},"i":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.023255813953488372},"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01384083044982699},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.056338028169014086},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":5.035714285714286},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903},"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"l":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}},"d":{"docs":{},"o":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}}}},"s":{"docs":{},"h":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.01730103806228374},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},"r":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"t":{"docs":{},"h":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"\"":{"docs":{},"n":{"docs":{},"o":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}},".":{"docs":{},".":{"docs":{},"/":{"docs":{},".":{"docs":{},".":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"w":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"faq/general.html":{"ref":"faq/general.html","tf":0.012461059190031152}}},"x":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"s":{"docs":{},":":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"?":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"p":{"docs":{},"m":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.020761245674740483}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}},"/":{"docs":{},"c":{"docs":{},"c":{"docs":{},"c":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}}},"_":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"=":{"docs":{},"$":{"docs":{},"(":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}}},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}},"n":{"docs":{},"t":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}}},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"y":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}},",":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}},"r":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.012461059190031152}},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364},"contributing.html":{"ref":"contributing.html","tf":0.05521472392638037}},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},":":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"s":{"docs":{},":":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}},"i":{"docs":{},"r":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"t":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"s":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},":":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521},"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.04225352112676056}}}}}}},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}}}},"u":{"docs":{},"n":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}},"l":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.028169014084507043},"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}}},"u":{"docs":{},"t":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"b":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}},"g":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":2.032258064516129}},".":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495}}}}}},"s":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.010380622837370242},"contributing.html":{"ref":"contributing.html","tf":0.018404907975460124}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}}}}},"l":{"docs":{},"l":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"x":{"docs":{},"t":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}},"k":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}},"r":{"docs":{},"i":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475},"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}},"a":{"docs":{},"g":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.006920415224913495},"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":10.014084507042254}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.006230529595015576}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}},"i":{"docs":{},"s":{"docs":{},",":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"?":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.006134969325153374}}}}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}},"p":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788},"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}},"z":{"docs":{},"i":{"docs":{},"p":{"docs":{"essentials/getting-started.html":{"ref":"essentials/getting-started.html","tf":0.0034602076124567475}}}}},"q":{"docs":{},"i":{"docs":{},"d":{"docs":{},"o":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}}},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"essentials/troubleshooting.html":{"ref":"essentials/troubleshooting.html","tf":0.014084507042253521}}}},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.009345794392523364}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"contributing.html":{"ref":"contributing.html","tf":0.012269938650306749}}}}}}}}},"y":{"docs":{},"e":{"docs":{},"t":{"docs":{},",":{"docs":{"connecting-to-image-archives/dicomweb.html":{"ref":"connecting-to-image-archives/dicomweb.html","tf":0.03571428571428571}}}}},"o":{"docs":{},"u":{"docs":{},".":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}}}}}}}},"/":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},")":{"docs":{},",":{"docs":{"I-want-to/script-tag.html":{"ref":"I-want-to/script-tag.html","tf":0.03225806451612903}}}}}}}}}}}},"&":{"docs":{"faq/general.html":{"ref":"faq/general.html","tf":0.003115264797507788}}}},"length":2452},"corpusTokens":["\"no","&","'loading'","(demo)","(dicom","(e.g.","(mac","(or","(radic","../../config","/viewer/),","1.","1.amazonaws.com/ohif","2.","237","237,","3.","5.x","510(k)","abov","academ","accept","acceptable.","account","actual","add","adoption.","advice.","affect","against","allow","alreadi","altern","alway","amazon","app","applic","application:","applications.","appreci","appropri","archiv","archive'","archive.","ask","authent","autogener","avail","base","basic","becom","befor","below","benefit","best","big","bit","branch.","browser","browser).","browser,","browser.","bug","bug.","bug?","bugs.","build","built","can't","cancer","cannot,","cd","ce","central","challeng","chang","change,","changes?","check","choos","clear","clearanc","clearli","click","client","clone","code","codec","collabor","collaborations?","collaborators.","comment","commerci","commission?","common","commun","community.","compani","complianc","compliant.","compliant?","concern","configur","configuration.","connect","consid","consol","console,","construct","consult","consum","consuming.","contact","contribut","contributions,","correctli","correctly,","creat","criteria","curl,","current","currently,","custom","data","date","dcm4chee","dcmtk'","debug","defin","defined,","depend","deploy","depth","describ","design","develop","dicom","dicomcloud","dicomweb","directli","directori","discuss","docker","document","don't","doubl","download","dramat","duplic","each","easili","email","emb","enabl","ensur","entry,","environ","environment:","error","errors.","eslint","european","everyon","everyth","exampl","example,","exchang","exists,","expect","experience.","extend","extrem","f.d.a","f.d.a.","faq","faster","featur","feature,","feature?","feedback","feel","file","file.","files.","filing,","filter","fix","follow","fork","forum","found\"","foundat","framework","framework,","framework.","free","frequent","fulfil","fulli","function","fund","gain","gener","get","git","git:","git@github.com:ohif/viewers.git","gitbook","github","given","go","gone","gordon","group","guess","guidanc","guidance.","guidelin","happen,","happened.","happi","harri","health","hear","help","highli","hipaa","horo","hospit","however,","html","http","http://localhost:3000/","https://deploy","identifi","imag","imaging)","impact","import","includ","incorrect","incorrectly.","insid","instal","installation.","integr","intend","interest","interfac","interface)","internet.","introduct","issu","issue!","issue,","issue.","issue:","it,","it.","j.","javascript","keep","know","large.","latest","launch","lesion","lewi","licens","link","list","list.","load","loader","local","look","made","make","mani","mark","marked.","massachusett","master","medic","member","messag","metadata","moment","more","name","netlifi","never","new","next","no.","nobodi","node.j","not,","not?","note:","notes:","npm","number","offer","ohif","ohif.netlify.com/contributing.html","ohif.netlify.com/viewer/?url=https://s3.eu","on","onc","only)","open","oper","option","organ","orthanc","osirix","osx","over","pac","packag","page","pass","password","pictur","platform","pleas","point.","possible.","post","prevent","preview","preview?","primari","primarily.","prior","problem","process","produc","product","propos","provid","provided.","public","pull","purpos","qido","qualiti","queri","question","range.","react","react/ccc.json)","react/ohif","react_app_config=$(cat","read","reason","receiv","recent","refer","regulations.","relev","remot","replac","report","reports.","repositori","repository,","repository.","reproduc","reproducible:","request","request.","request:","requests:","requir","research.","resolves,","resourc","respond.","respons","rest","result:","retriev","review","reviewed.","roadmap","roadmap,","rob","root","rooturl","rout","routerbasenam","rule","run","s3.","scope","screenshot","screenshots:","script","search","section","see","seek","separ","server","server.","servic","services.","set","shortcut","show","simpl","solutions.","soon","sourc","specif","specifi","spend","standalon","standard","start","step","still","storescu","studi","studies,","subdirectori","subject","submit","support","support,","support.","support?","sure","sure.","system,","tab","tag","tag.","taken.","tell","termin","test","testing.","text.","there),","this,","this?","thousand","through","time","tip","took","tool","tracker,","tri","triag","troubleshoot","u.s.","ui","ui,","understand.","up","upload","url","us","us.","useful:","user","usernam","uses.","variabl","veri","verifi","version","via","viewer","viewer,","viewer.","viewer/sampledicom.json","viewer:","visit","wado","want","web","welcom","well","wider","windows.","wish","without","words.","work","worker","worth","yet,","you.","yourself","zip"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"Looking for your Deploy Preview? - Deploy Preview for Viewer\nIntroduction\nThe Open Health Imaging Foundation is developing an open source framework for constructing web-based medical imaging applications.\nThe OHIF Viewer: A general purpose DICOM Viewer (demo)\n\nThe Open Health Imaging Foundation intends to provide a simple general purpose DICOM Viewer which can be easily extended for specific uses.\n"},"essentials/getting-started.html":{"url":"essentials/getting-started.html","title":"Getting Started","keywords":"","body":"Getting Started\nGetting the Code\nEither clone the repository using Git:\ngit clone git@github.com:OHIF/Viewers.git\n\nor Download the latest Master as a ZIP File.\nTest the archive against our public DICOM server\nSet up and test the OHIF Viewer application:\n\nInstall Node.js\nOpen a new terminal tab in the ohif-viewer directory and install all dependency packages via NPM\ncd Packages-react/ohif-viewer\nnpm install\n\n\nRun the application\nnpm start\n\n\n\nNote: This will connect to our public DICOMWeb server so you can verify your installation. Follow the next section to connect to your own local or remote DICOMWeb server.\n\nLaunch the OHIF Viewer Study List by visiting http://localhost:3000/ in a web browser.\n\nIf everything is working correctly, you should see the studies from our public archive when you visit the Study List.\n\nDouble-click on a Study in the Study List to launch it in the Viewer\nIf everything is working correctly, you should see your study load into the Viewer.\n\n\nSet up a local DICOM server\n\nChoose and install an Image Archive\nUpload some data into your archive (e.g. with DCMTK's storescu or your archive's web interface)\nKeep the server running\n\nOpen Source DICOM Image Archive Options\n\n\n\nArchive\nInstallation\n\n\n\n\nDCM4CHEE Archive 5.x\nInstallation with Docker\n\n\nOrthanc\nInstallation with Docker\n\n\nDICOMcloud (DICOM Web only)\nInstallation\n\n\nOsiriX (Mac OSX only)\n\n\n\nHoros (Mac OSX only)\n\n\n\n\nFeel free to make a Pull Request if you want to add to this list.\nSet up and test the OHIF Viewer application:\n\nInstall Node.js\nOpen a new terminal tab in the ohif-viewer directory and install all dependency packages via NPM\ncd Packages-react/ohif-viewer\nnpm install\n\n\nRun the application using one of the available configuration files.\nREACT_APP_CONFIG=$(cat ../../config-react/ccc.json)\nnpm start\n\nThis uses the Custom Environment Variables of Create-React-App to pass in your configuration. The example above will not work on Windows. Please visit the link to read about how to set environment variables on Windows.\n\nLaunch the OHIF Viewer Study List by visiting http://localhost:3000/ in a web browser.\nIf everything is working correctly, you should see the Study List from your archive when you visit the Study List.\n\nDouble-click on a Study in the Study List to launch it in the Viewer\nIf everything is working correctly, you should see your study load into the Viewer.\n\n\nTroubleshooting\n\nIf you receive a \"No Studies Found\" message and do not see your studies, try changing the Study Date filters to a wider range.\nIf you see a 'Loading' message which never resolves, check your browser JavaScript console inside the Developer Tools to identify any errors.\nIf you see any errors in your server console, check the Troubleshooting page for more in depth advice.\n\n"},"essentials/troubleshooting.html":{"url":"essentials/troubleshooting.html","title":"Troubleshooting","keywords":"","body":"Troubleshooting\nCommon Problems\n\n\n\nProblem\nMost Common Reasons\n\n\n\n\n Can't retrieve Study List over DICOMWeb\n1. QIDO root URL is incorrect 2. DICOM Web is not enabled on PACS\n\n\n Can't retrieve images\n1. WADO Root URL is incorrect 2. DICOM Web is not enabled on PACS 3. HTTP Basic Authentication username and password are incorrect or not provided.\n\n\n\nDebugging Steps\nCan't retrieve Study List over DICOMWeb\n\nCheck that you can query your PACS using an alternative DICOM Web client (e.g. cURL, or a Web Browser). If you cannot, then your PACS is configured incorrectly. Refer to the documentation of the image archive.\n\n"},"connecting-to-image-archives/dicomweb.html":{"url":"connecting-to-image-archives/dicomweb.html","title":"DICOM Web","keywords":"","body":"Connecting to Image Archives\nDICOM Web\nDICOMWeb refers to RESTful DICOM Services and is a recently standardized set of guidelines for exchanging medical images and imaging metadata over the internet. Not all archives fully support it yet, but it is gaining wider adoption.\n"},"I-want-to/script-tag.html":{"url":"I-want-to/script-tag.html","title":"Embed the viewer using a script tag","keywords":"","body":"Embed the viewer using a script tag\n\n\nImportant notes:\n\nYou must correctly specify rootUrl and the HTML tag.\nIf your application runs in a subdirectory (e.g. /viewer/), this must be specified in routerBasename\nCurrently, the WADO Image Loader Codecs and Web Worker source code must also be server at the ROOT URL\n\n"},"faq/general.html":{"url":"faq/general.html","title":"General","keywords":"","body":"Frequently Asked Questions - General\nHow do I file a bug?\nWe accept and triage bug reports through Github primarily.\n\nCreate a Github account\nSearch the current Issue List to ensure you are not creating a duplicate issue.\nIf your issue already exists, post a comment to show us that this issue also affects you.\n\nIf no prior issue exists, Create a New Issue on the repository.\n\n\nSome tips for filing a new issue:\n\nMake sure your issue is reproducible: If we try to reproduce your issue given your provided steps and we cannot reproduce it, we will not be able to fix it. Nobody wants to spend time guessing how to reproduce your issue! Before filing, please reproduce your issue more than once and clearly describe the steps taken.\nIf you are reporting a user interface issue, provide screenshots: A picture is worth a thousand words. If your issue concerns the UI, screenshots will help us identify the issue dramatically faster since it can be extremely challenging to describe UI bugs with text. You should still clearly describe the steps that you took to produce the issue.\nInclude platform & environment: Your operating system, web browser, and web browser version are highly relevant for many bugs. Please provide these with all bug reports.\nInclude expected and actual result: Tell us what you expected to happen, and what actually happened. If you don't do this, we might not consider it a bug.\n\nHow can I request a new feature?\nAt the moment we are in the process of defining our roadmap and will do our best to communicate this to the community. If your requested feature is on the roadmap, then it will most likely be built at some point. If it is not, you are welcome to build it yourself and contribute it. If you have resources and would like to fund the development of a feature, please contact us.\nWho should I contact about Academic Collaborations?\nGordon J. Harris at Massachusetts General Hospital is the primary contact for any academic collaborators. We are always happy to hear about new groups interested in using the OHIF framework, and may be able to provide development support if the proposed collaboration has an impact on cancer research.\nDo you offer commercial support?\nThe Open Health Imaging Foundation does not offer commercial support, however, some community members do offer consulting services. The following contacts may be useful:\n\nRob Lewis (Radical Imaging)\n\nPlease file a Pull Request if you wish to add your name or organization to this list.\nI emailed my question to you directly and you did not respond. Why not?\nEmailing developers directly is not a shortcut to faster support. Please file your issues and questions on Github so that everyone can benefit from the discussion and solutions.\nDo your Viewers have 510(k) Clearance from the U.S. F.D.A or CE Marking from the European Commission?\nNO. The OHIF Viewer, Lesion Tracker, and Standalone Viewer, NOT F.D.A. cleared or CE Marked. It is the users responsibility to ensure compliance with applicable rules and regulations. The License for the OHIF Framework does not prevent your company or group from seeking F.D.A. clearance for a product built using the framework.\nIf you have gone this route (or are going there), please let us know because we would be interested to hear about your experience.\nAre your Viewers HIPAA Compliant?\nNO. The OHIF Viewer, Lesion Tracker, and Standalone Viewer DO NOT fulfill all of the criteria to become HIPAA Compliant. It is the users responsibility to ensure compliance with applicable rules and regulations.\n"},"contributing.html":{"url":"contributing.html","title":"Contributing","keywords":"","body":"Contributing\nI would like to contribute code - how do I do this?\nFork the repository, make your change and submit a pull request.\nAny guidance on submitting changes?\nWhile we do appreciate code contributions, triaging and integrating contributed code changes can be very time consuming. Please consider the following tips when working on your pull requests:\n\nFunctionality is appropriate for the repository. Consider posting on the forum if you are not sure.\nCode quality is acceptable. We don't have coding standards defined, but make sure it passes ESLint and looks like the rest of the code in the repository.\nQuality of design is acceptable. This is a bit subjective so you should consider posting on the forum for specific guidance.\nThe scope of the pull request is not too large. Please consider separate pull requests for each feature as big pull requests are very time consuming to understand.\n\nWe will provide feedback on your pull requests as soon as possible. Following the tips above will help ensure your changes are reviewed.\nTesting contribution pull requests\nOHIF uses netlify so that pull requests are autogenerated and available for testing.\nFor example, this url allows you to test pull request 237, the request that created this FAQ entry, using data pulled from Amazon S3.\nReplacing the number 237 in the link below with your pull request number should let you test it as well and you can use this link for discussions on github without requiring reviewers to download and build your branch.\nhttps://deploy-preview-237--ohif.netlify.com/viewer/?url=https://s3.eu-central-1.amazonaws.com/ohif-viewer/sampleDICOM.json\nIf you have made a documentation change, a link like this will let you preview the gitbook generated by the pull request:\nhttps://deploy-preview-237--ohif.netlify.com/contributing.html\n"}}} \ No newline at end of file diff --git a/docs/latest/_book/sitemap.xml b/docs/latest/_book/sitemap.xml index 2c090645b..c0ad35310 100644 --- a/docs/latest/_book/sitemap.xml +++ b/docs/latest/_book/sitemap.xml @@ -7,4 +7,25 @@ https://docs.ohif.org/I-want-to/script-tag.html weekly 0.5 https://docs.ohif.org/faq/general.html weekly 0.5 https://docs.ohif.org/contributing.html weekly 0.5 + https://docs.ohif.org/./ weekly 0.5 + https://docs.ohif.org/essentials/getting-started.html weekly 0.5 + https://docs.ohif.org/essentials/troubleshooting.html weekly 0.5 + https://docs.ohif.org/connecting-to-image-archives/dicomweb.html weekly 0.5 + https://docs.ohif.org/I-want-to/script-tag.html weekly 0.5 + https://docs.ohif.org/faq/general.html weekly 0.5 + https://docs.ohif.org/contributing.html weekly 0.5 + https://docs.ohif.org/./ weekly 0.5 + https://docs.ohif.org/essentials/getting-started.html weekly 0.5 + https://docs.ohif.org/essentials/troubleshooting.html weekly 0.5 + https://docs.ohif.org/connecting-to-image-archives/dicomweb.html weekly 0.5 + https://docs.ohif.org/I-want-to/script-tag.html weekly 0.5 + https://docs.ohif.org/faq/general.html weekly 0.5 + https://docs.ohif.org/contributing.html weekly 0.5 + https://docs.ohif.org/./ weekly 0.5 + https://docs.ohif.org/essentials/getting-started.html weekly 0.5 + https://docs.ohif.org/essentials/troubleshooting.html weekly 0.5 + https://docs.ohif.org/connecting-to-image-archives/dicomweb.html weekly 0.5 + https://docs.ohif.org/I-want-to/script-tag.html weekly 0.5 + https://docs.ohif.org/faq/general.html weekly 0.5 + https://docs.ohif.org/contributing.html weekly 0.5 \ No newline at end of file diff --git a/docs/latest/_book/yarn.lock b/docs/latest/_book/yarn.lock index 01adfa812..4d2441b7c 100644 --- a/docs/latest/_book/yarn.lock +++ b/docs/latest/_book/yarn.lock @@ -59,11 +59,6 @@ ansi-align@^2.0.0: dependencies: string-width "^2.0.0" -ansi-regex@*: - version "4.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.0.0.tgz#70de791edf021404c3fd615aa89118ae0432e5a9" - integrity sha512-iB5Dda8t/UqpPI/IjsejXu5jOGDrzn41wJyljwPH65VCIbk6+1BzFIMJGFwTNrYXT1CrD+B4l19U7awiQ8rk7w== - ansi-regex@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" @@ -635,7 +630,7 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -debuglog@*, debuglog@^1.0.1: +debuglog@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI= @@ -1079,10 +1074,13 @@ gitbook-plugin-sitemap@^1.2.0: dependencies: sitemap "1.5.0" -gitbook-plugin-theme-cornerstone@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/gitbook-plugin-theme-cornerstone/-/gitbook-plugin-theme-cornerstone-1.1.1.tgz#39c70366e9f540dc7e68876913b0c33effd7f617" - integrity sha512-hy1Glfm3HHw6j7jyTsCY7MTDcoVRMpZ0lO8GlFK9sCBB2frXrK7Y5ll0tEyl772cbWKkfH8gtm0pwe/MtbUVOA== +"gitbook-plugin-theme-cornerstone@file:.yalc/gitbook-plugin-theme-cornerstone": + version "1.1.1-f155120b" + +gitbook-plugin-versions@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/gitbook-plugin-versions/-/gitbook-plugin-versions-2.1.4.tgz#210d0b7d60698f738d77681663992aec4eb12883" + integrity sha1-IQ0LfWBpj3ONd2gWY5kq7E6xKIM= github-slugid@1.0.1: version "1.0.1" @@ -1308,7 +1306,7 @@ import-lazy@^2.1.0: resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= -imurmurhash@*, imurmurhash@^0.1.4: +imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= @@ -1537,11 +1535,6 @@ lockfile@~1.0.1, lockfile@~1.0.3: dependencies: signal-exit "^3.0.2" -lodash._baseindexof@*: - version "3.1.0" - resolved "https://registry.yarnpkg.com/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz#fe52b53a1c6761e42618d654e4a25789ed61822c" - integrity sha1-/lK1OhxnYeQmGNZU5KJXie1hgiw= - lodash._baseuniq@~4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash._baseuniq/-/lodash._baseuniq-4.6.0.tgz#0ebb44e456814af7905c6212fa2c9b2d51b841e8" @@ -1550,33 +1543,11 @@ lodash._baseuniq@~4.6.0: lodash._createset "~4.0.0" lodash._root "~3.0.0" -lodash._bindcallback@*: - version "3.0.1" - resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" - integrity sha1-5THCdkTPi1epnhftlbNcdIeJOS4= - -lodash._cacheindexof@*: - version "3.0.2" - resolved "https://registry.yarnpkg.com/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz#3dc69ac82498d2ee5e3ce56091bafd2adc7bde92" - integrity sha1-PcaayCSY0u5ePOVgkbr9Ktx73pI= - -lodash._createcache@*: - version "3.1.2" - resolved "https://registry.yarnpkg.com/lodash._createcache/-/lodash._createcache-3.1.2.tgz#56d6a064017625e79ebca6b8018e17440bdcf093" - integrity sha1-VtagZAF2JeeevKa4AY4XRAvc8JM= - dependencies: - lodash._getnative "^3.0.0" - lodash._createset@~4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/lodash._createset/-/lodash._createset-4.0.3.tgz#0f4659fbb09d75194fa9e2b88a6644d363c9fe26" integrity sha1-D0ZZ+7CddRlPqeK4imZE02PJ/iY= -lodash._getnative@*, lodash._getnative@^3.0.0: - version "3.9.1" - resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" - integrity sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U= - lodash._root@~3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" @@ -1657,11 +1628,6 @@ lodash.reject@^4.4.0: resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" integrity sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU= -lodash.restparam@*: - version "3.6.1" - resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" - integrity sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU= - lodash.some@^4.4.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" @@ -2638,7 +2604,7 @@ readable-stream@~2.1.5: string_decoder "~0.10.x" util-deprecate "~1.0.1" -readdir-scoped-modules@*, readdir-scoped-modules@^1.0.0: +readdir-scoped-modules@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.0.2.tgz#9fafa37d286be5d92cbaebdee030dc9b5f406747" integrity sha1-n6+jfShr5dksuuve4DDcm19AZ0c= @@ -3291,7 +3257,7 @@ uuid@~3.1.0: resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" integrity sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g== -validate-npm-package-license@*, validate-npm-package-license@^3.0.1, validate-npm-package-license@~3.0.1: +validate-npm-package-license@^3.0.1, validate-npm-package-license@~3.0.1: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== diff --git a/docs/latest/package.json b/docs/latest/package.json index 1213c7262..fb272168c 100644 --- a/docs/latest/package.json +++ b/docs/latest/package.json @@ -37,7 +37,8 @@ "gitbook-plugin-ga": "^2.0.0", "gitbook-plugin-github": "^3.0.0", "gitbook-plugin-sitemap": "^1.2.0", - "gitbook-plugin-theme-cornerstone": "^1.1.1" + "gitbook-plugin-theme-cornerstone": "^1.1.2", + "gitbook-plugin-versions": "^2.1.4" }, "devDependencies": { "gitbook-cli": "^2.3.2" diff --git a/docs/latest/yarn.lock b/docs/latest/yarn.lock index 01adfa812..4d2441b7c 100644 --- a/docs/latest/yarn.lock +++ b/docs/latest/yarn.lock @@ -59,11 +59,6 @@ ansi-align@^2.0.0: dependencies: string-width "^2.0.0" -ansi-regex@*: - version "4.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.0.0.tgz#70de791edf021404c3fd615aa89118ae0432e5a9" - integrity sha512-iB5Dda8t/UqpPI/IjsejXu5jOGDrzn41wJyljwPH65VCIbk6+1BzFIMJGFwTNrYXT1CrD+B4l19U7awiQ8rk7w== - ansi-regex@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" @@ -635,7 +630,7 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -debuglog@*, debuglog@^1.0.1: +debuglog@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI= @@ -1079,10 +1074,13 @@ gitbook-plugin-sitemap@^1.2.0: dependencies: sitemap "1.5.0" -gitbook-plugin-theme-cornerstone@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/gitbook-plugin-theme-cornerstone/-/gitbook-plugin-theme-cornerstone-1.1.1.tgz#39c70366e9f540dc7e68876913b0c33effd7f617" - integrity sha512-hy1Glfm3HHw6j7jyTsCY7MTDcoVRMpZ0lO8GlFK9sCBB2frXrK7Y5ll0tEyl772cbWKkfH8gtm0pwe/MtbUVOA== +"gitbook-plugin-theme-cornerstone@file:.yalc/gitbook-plugin-theme-cornerstone": + version "1.1.1-f155120b" + +gitbook-plugin-versions@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/gitbook-plugin-versions/-/gitbook-plugin-versions-2.1.4.tgz#210d0b7d60698f738d77681663992aec4eb12883" + integrity sha1-IQ0LfWBpj3ONd2gWY5kq7E6xKIM= github-slugid@1.0.1: version "1.0.1" @@ -1308,7 +1306,7 @@ import-lazy@^2.1.0: resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= -imurmurhash@*, imurmurhash@^0.1.4: +imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= @@ -1537,11 +1535,6 @@ lockfile@~1.0.1, lockfile@~1.0.3: dependencies: signal-exit "^3.0.2" -lodash._baseindexof@*: - version "3.1.0" - resolved "https://registry.yarnpkg.com/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz#fe52b53a1c6761e42618d654e4a25789ed61822c" - integrity sha1-/lK1OhxnYeQmGNZU5KJXie1hgiw= - lodash._baseuniq@~4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash._baseuniq/-/lodash._baseuniq-4.6.0.tgz#0ebb44e456814af7905c6212fa2c9b2d51b841e8" @@ -1550,33 +1543,11 @@ lodash._baseuniq@~4.6.0: lodash._createset "~4.0.0" lodash._root "~3.0.0" -lodash._bindcallback@*: - version "3.0.1" - resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" - integrity sha1-5THCdkTPi1epnhftlbNcdIeJOS4= - -lodash._cacheindexof@*: - version "3.0.2" - resolved "https://registry.yarnpkg.com/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz#3dc69ac82498d2ee5e3ce56091bafd2adc7bde92" - integrity sha1-PcaayCSY0u5ePOVgkbr9Ktx73pI= - -lodash._createcache@*: - version "3.1.2" - resolved "https://registry.yarnpkg.com/lodash._createcache/-/lodash._createcache-3.1.2.tgz#56d6a064017625e79ebca6b8018e17440bdcf093" - integrity sha1-VtagZAF2JeeevKa4AY4XRAvc8JM= - dependencies: - lodash._getnative "^3.0.0" - lodash._createset@~4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/lodash._createset/-/lodash._createset-4.0.3.tgz#0f4659fbb09d75194fa9e2b88a6644d363c9fe26" integrity sha1-D0ZZ+7CddRlPqeK4imZE02PJ/iY= -lodash._getnative@*, lodash._getnative@^3.0.0: - version "3.9.1" - resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" - integrity sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U= - lodash._root@~3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" @@ -1657,11 +1628,6 @@ lodash.reject@^4.4.0: resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" integrity sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU= -lodash.restparam@*: - version "3.6.1" - resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" - integrity sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU= - lodash.some@^4.4.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" @@ -2638,7 +2604,7 @@ readable-stream@~2.1.5: string_decoder "~0.10.x" util-deprecate "~1.0.1" -readdir-scoped-modules@*, readdir-scoped-modules@^1.0.0: +readdir-scoped-modules@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.0.2.tgz#9fafa37d286be5d92cbaebdee030dc9b5f406747" integrity sha1-n6+jfShr5dksuuve4DDcm19AZ0c= @@ -3291,7 +3257,7 @@ uuid@~3.1.0: resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" integrity sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g== -validate-npm-package-license@*, validate-npm-package-license@^3.0.1, validate-npm-package-license@~3.0.1: +validate-npm-package-license@^3.0.1, validate-npm-package-license@~3.0.1: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== diff --git a/docs/v1/package.json b/docs/v1/package.json index 078ec0246..f08a96b0c 100644 --- a/docs/v1/package.json +++ b/docs/v1/package.json @@ -37,7 +37,8 @@ "gitbook-plugin-ga": "^2.0.0", "gitbook-plugin-github": "^3.0.0", "gitbook-plugin-sitemap": "^1.2.0", - "gitbook-plugin-theme-cornerstone": "^1.1.1" + "gitbook-plugin-theme-cornerstone": "^1.1.2", + "gitbook-plugin-versions": "^2.1.4" }, "devDependencies": { "gitbook-cli": "^2.3.2"