diff --git a/book/src/Setup.md b/book/src/Setup.md index 6ee8c11a..f5e7f97f 100644 --- a/book/src/Setup.md +++ b/book/src/Setup.md @@ -71,7 +71,7 @@ If you want to use the `CSIDriver` CRD and get a preview of how configuration wi 1) Ensure the feature gate is enabled with `--feature-gates=CSIDriverRegistry=true` 2) Install the `CSIDriver` CRD on the Kubernetes cluster with the following command: ``` -$> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml +$> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml --validate=false ``` ### Listing registered CSI drivers @@ -129,16 +129,16 @@ items: Where: - `csiDrivers` - list of CSI drivers running on the node and their properties. - `driver` - the CSI driver that this object refers to. -- `nodeId` - the assigned identifier for the node as determined by the driver. -- `toplogykeys` - A list of topology keys assigned to the node as supported by the driver. +- `nodeID` - the assigned identifier for the node as determined by the driver. +- `topologyKeys` - A list of topology keys assigned to the node as supported by the driver. ### Enabling CSINodeInfo If you want to use the `CSINodeInfo` CRD and get a preview of how configuration will work at runtime, do the followings: -1) Ensure the feature gate is enabled with `--feature-gates=CSIDriverRegistry=true` +1) Ensure the feature gate is enabled with `--feature-gates=CSINodeInfo=true` 2) Install the `CSINodeInfo` CRD on the Kubernetes cluster with the following command: ``` -$> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml +$> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml --validate=false ``` @@ -224,6 +224,20 @@ by default for alpha): --feature-gates=VolumeSnapshotDataSource=true ``` +## Topology (alpha) +In order to support topology-aware dynamic provisioning mechanisms available in Kubernetes, the *external-provisioner* must have the Topology feature enabled: + +``` +--feature-gates=Topology=true +``` + +In addition, in the *Kubernetes cluster* the `CSINodeInfo` alpha feature must be enabled (refer to the [CSINodeInfo custom resource]{csinodeinfo-custom-resource-alpha} section for more info): + +``` +--feature-gates=CSINodeInfo=true +``` +as well as the `KubeletPluginsWatcher` beta feature (currently enabled by default). + ## Archives Please visit the [Archives](Archive.html) for setup instructions on previous versions of Kubernetes. diff --git a/docs/Setup.html b/docs/Setup.html index 87b6f20f..d3f028bc 100644 --- a/docs/Setup.html +++ b/docs/Setup.html @@ -188,7 +188,7 @@

Kubernetes CSI Documentation

  • Ensure the feature gate is enabled with --feature-gates=CSIDriverRegistry=true
  • Install the CSIDriver CRD on the Kubernetes cluster with the following command:
  • -
    $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml
    +
    $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml --validate=false
     

    Listing registered CSI drivers

    Using theCSIDriver CRD, it is now possible to query Kubernetes to get a list of registered drivers running in the cluster as shown below:

    @@ -237,16 +237,16 @@

    Kubernetes CSI Documentation

    Enabling CSINodeInfo

    If you want to use the CSINodeInfo CRD and get a preview of how configuration will work at runtime, do the followings:

      -
    1. Ensure the feature gate is enabled with --feature-gates=CSIDriverRegistry=true
    2. +
    3. Ensure the feature gate is enabled with --feature-gates=CSINodeInfo=true
    4. Install the CSINodeInfo CRD on the Kubernetes cluster with the following command:
    -
    $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml
    +
    $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml --validate=false
     

    CSI driver discovery (beta)

    The CSI driver discovery uses the Kubelet Plugin Watcher feature which allows Kubelet to discover deployed CSI drivers automatically. The registrar sidecar container exposes an internal registration server via a Unix data socket path. The Kubelet monitors its registration directory to detect new registration requests. Once detected, the Kubelet contacts the registrar sidecar to query driver information. The retrieved CSI driver information (including the driver's own socket path) will be used for further interaction with the driver.

    @@ -328,6 +328,14 @@

    Kubernetes CSI Documentation

    by default for alpha):

    --feature-gates=VolumeSnapshotDataSource=true
     
    +

    Topology (alpha)

    +

    In order to support topology-aware dynamic provisioning mechanisms available in Kubernetes, the external-provisioner must have the Topology feature enabled:

    +
    --feature-gates=Topology=true
    +
    +

    In addition, in the Kubernetes cluster the CSINodeInfo alpha feature must be enabled (refer to the [CSINodeInfo custom resource]{csinodeinfo-custom-resource-alpha} section for more info):

    +
    --feature-gates=CSINodeInfo=true
    +
    +

    as well as the KubeletPluginsWatcher beta feature (currently enabled by default).

    Archives

    Please visit the Archives for setup instructions on previous versions of Kubernetes.

    diff --git a/docs/book.js b/docs/book.js index c9c2f4d6..854c648d 100644 --- a/docs/book.js +++ b/docs/book.js @@ -19,16 +19,9 @@ function playpen_text(playpen) { // Hide Rust code lines prepended with a specific character var hiding_character = "#"; - function fetch_with_timeout(url, options, timeout = 6000) { - return Promise.race([ - fetch(url, options), - new Promise((_, reject) => setTimeout(() => reject(new Error('timeout')), timeout)) - ]); - } - var playpens = Array.from(document.querySelectorAll(".playpen")); if (playpens.length > 0) { - fetch_with_timeout("https://play.rust-lang.org/meta/crates", { + fetch("https://play.rust-lang.org/meta/crates", { headers: { 'Content-Type': "application/json", }, @@ -103,28 +96,33 @@ function playpen_text(playpen) { let text = playpen_text(code_block); var params = { - version: "stable", - optimize: "0", - code: text + channel: "stable", + mode: "debug", + crateType: "bin", + tests: false, + code: text, + backtrace: false, }; if (text.indexOf("#![feature") !== -1) { - params.version = "nightly"; + params.channel = "nightly"; } result_block.innerText = "Running..."; - fetch_with_timeout("https://play.rust-lang.org/evaluate.json", { + var request = fetch("https://play.rust-lang.org/execute", { headers: { 'Content-Type': "application/json", }, method: 'POST', mode: 'cors', body: JSON.stringify(params) - }) - .then(response => response.json()) - .then(response => result_block.innerText = response.result) - .catch(error => result_block.innerText = "Playground Communication: " + error.message); + }); + + request + .then(function (response) { return response.json(); }) + .then(function (response) { result_block.innerText = response.success ? response.stdout : response.stderr; }) + .catch(function (error) { result_block.innerText = "Playground communication" + error.message; }); } // Syntax highlighting Configuration diff --git a/docs/css/variables.css b/docs/css/variables.css index 29daa072..586706af 100644 --- a/docs/css/variables.css +++ b/docs/css/variables.css @@ -10,7 +10,7 @@ /* Themes */ .ayu { - --bg: hsl(210, 25%, 8%); + --bg: #0f1419; --fg: #c5c5c5; --sidebar-bg: #14191f; @@ -32,12 +32,12 @@ --theme-popup-border: #5c6773; --theme-hover: #191f26; - --quote-bg: hsl(226, 15%, 17%); - --quote-border: hsl(226, 15%, 22%); + --quote-bg: #262933; + --quote-border: lighten(var(--quote-bg), 5%); - --table-border-color: hsl(210, 25%, 13%); - --table-header-bg: hsl(210, 25%, 28%); - --table-alternate-bg: hsl(210, 25%, 11%); + --table-border-color: lighten(var(--bg), 5%); + --table-header-bg: lighten(var(--bg), 20%); + --table-alternate-bg: lighten(var(--bg), 3%); --searchbar-border-color: #848484; --searchbar-bg: #424242; @@ -50,7 +50,7 @@ } .coal { - --bg: hsl(200, 7%, 8%); + --bg: #141617; --fg: #98a3ad; --sidebar-bg: #292c2f; @@ -72,12 +72,12 @@ --theme-popup-border: #43484d; --theme-hover: #1f2124; - --quote-bg: hsl(234, 21%, 18%); - --quote-border: hsl(234, 21%, 23%); + --quote-bg: #242637; + --quote-border: lighten(var(--quote-bg), 5%); - --table-border-color: hsl(200, 7%, 13%); - --table-header-bg: hsl(200, 7%, 28%); - --table-alternate-bg: hsl(200, 7%, 11%); + --table-border-color: lighten(var(--bg), 5%); + --table-header-bg: lighten(var(--bg), 20%); + --table-alternate-bg: lighten(var(--bg), 3%); --searchbar-border-color: #aaa; --searchbar-bg: #b7b7b7; @@ -90,7 +90,7 @@ } .light { - --bg: hsl(0, 0%, 100%); + --bg: #ffffff; --fg: #333333; --sidebar-bg: #fafafa; @@ -112,12 +112,12 @@ --theme-popup-border: #cccccc; --theme-hover: #e6e6e6; - --quote-bg: hsl(197, 37%, 96%); - --quote-border: hsl(197, 37%, 91%); + --quote-bg: #f2f7f9; + --quote-border: darken(var(--quote-bg), 5%); - --table-border-color: hsl(0, 0%, 95%); - --table-header-bg: hsl(0, 0%, 80%); - --table-alternate-bg: hsl(0, 0%, 97%); + --table-border-color: darken(var(--bg), 5%); + --table-header-bg: darken(var(--bg), 20%); + --table-alternate-bg: darken(var(--bg), 3%); --searchbar-border-color: #aaa; --searchbar-bg: #fafafa; @@ -130,7 +130,7 @@ } .navy { - --bg: hsl(226, 23%, 11%); + --bg: #161923; --fg: #bcbdd0; --sidebar-bg: #282d3f; @@ -152,12 +152,12 @@ --theme-popup-border: #737480; --theme-hover: #282e40; - --quote-bg: hsl(226, 15%, 17%); - --quote-border: hsl(226, 15%, 22%); + --quote-bg: #262933; + --quote-border: lighten(var(--quote-bg), 5%); - --table-border-color: hsl(226, 23%, 16%); - --table-header-bg: hsl(226, 23%, 31%); - --table-alternate-bg: hsl(226, 23%, 14%); + --table-border-color: lighten(var(--bg), 5%); + --table-header-bg: lighten(var(--bg), 20%); + --table-alternate-bg: lighten(var(--bg), 3%); --searchbar-border-color: #aaa; --searchbar-bg: #aeaec6; @@ -170,7 +170,7 @@ } .rust { - --bg: hsl(60, 9%, 87%); + --bg: #e1e1db; --fg: #262625; --sidebar-bg: #3b2e2a; @@ -192,12 +192,12 @@ --theme-popup-border: #b38f6b; --theme-hover: #99908a; - --quote-bg: hsl(60, 5%, 75%); - --quote-border: hsl(60, 5%, 70%); + --quote-bg: #c1c1bb; + --quote-border: darken(var(--quote-bg), 5%); - --table-border-color: hsl(60, 9%, 82%); + --table-border-color: darken(var(--bg), 5%); --table-header-bg: #b3a497; - --table-alternate-bg: hsl(60, 9%, 84%); + --table-alternate-bg: darken(var(--bg), 3%); --searchbar-border-color: #aaa; --searchbar-bg: #fafafa; diff --git a/docs/index.html b/docs/index.html index 774ef08e..6c8f67e6 100644 --- a/docs/index.html +++ b/docs/index.html @@ -72,7 +72,7 @@
    @@ -162,6 +162,10 @@

    Kubernetes CSI Documentation

    + +
    @@ -172,6 +176,10 @@

    Kubernetes CSI Documentation

    + +
    @@ -198,4 +206,4 @@

    Kubernetes CSI Documentation

    - + \ No newline at end of file diff --git a/docs/print.html b/docs/print.html index 7e7d082d..de570ec6 100644 --- a/docs/print.html +++ b/docs/print.html @@ -215,7 +215,7 @@

    Kubernetes CSI Documentation

  • Ensure the feature gate is enabled with --feature-gates=CSIDriverRegistry=true
  • Install the CSIDriver CRD on the Kubernetes cluster with the following command:
  • -
    $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml
    +
    $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml --validate=false
     

    Listing registered CSI drivers

    Using theCSIDriver CRD, it is now possible to query Kubernetes to get a list of registered drivers running in the cluster as shown below:

    @@ -264,16 +264,16 @@

    Kubernetes CSI Documentation

    • csiDrivers - list of CSI drivers running on the node and their properties.
    • driver - the CSI driver that this object refers to.
    • -
    • nodeId - the assigned identifier for the node as determined by the driver.
    • -
    • toplogykeys - A list of topology keys assigned to the node as supported by the driver.
    • +
    • nodeID - the assigned identifier for the node as determined by the driver.
    • +
    • topologyKeys - A list of topology keys assigned to the node as supported by the driver.

    Enabling CSINodeInfo

    If you want to use the CSINodeInfo CRD and get a preview of how configuration will work at runtime, do the followings:

      -
    1. Ensure the feature gate is enabled with --feature-gates=CSIDriverRegistry=true
    2. +
    3. Ensure the feature gate is enabled with --feature-gates=CSINodeInfo=true
    4. Install the CSINodeInfo CRD on the Kubernetes cluster with the following command:
    -
    $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml
    +
    $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml --validate=false
     

    CSI driver discovery (beta)

    The CSI driver discovery uses the Kubelet Plugin Watcher feature which allows Kubelet to discover deployed CSI drivers automatically. The registrar sidecar container exposes an internal registration server via a Unix data socket path. The Kubelet monitors its registration directory to detect new registration requests. Once detected, the Kubelet contacts the registrar sidecar to query driver information. The retrieved CSI driver information (including the driver's own socket path) will be used for further interaction with the driver.

    @@ -355,6 +355,14 @@

    Kubernetes CSI Documentation

    by default for alpha):

    --feature-gates=VolumeSnapshotDataSource=true
     
    +

    Topology (alpha)

    +

    In order to support topology-aware dynamic provisioning mechanisms available in Kubernetes, the external-provisioner must have the Topology feature enabled:

    +
    --feature-gates=Topology=true
    +
    +

    In addition, in the Kubernetes cluster the CSINodeInfo alpha feature must be enabled (refer to the [CSINodeInfo custom resource]{csinodeinfo-custom-resource-alpha} section for more info):

    +
    --feature-gates=CSINodeInfo=true
    +
    +

    as well as the KubeletPluginsWatcher beta feature (currently enabled by default).

    Archives

    Please visit the Archives for setup instructions on previous versions of Kubernetes.

    Deployment

    diff --git a/docs/searchindex.js b/docs/searchindex.js index a94b26e7..e32dfdd9 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -window.search = {"doc_urls":["Home.html#introduction","Home.html#kubernetes-csi-documentation","Home.html#project-status","Home.html#sidecar-container-status","Home.html#installation","UsingCSIDriver.html#using-csi-drivers","Setup.html#setup","Setup.html#enabling-features","Setup.html#enable-privileged-pods","Setup.html#enabling-mount-propagation","Setup.html#enable-raw-block-volume-support-alpha","Setup.html#csidriver-custom-resource-alpha","Setup.html#enabling-csidriver","Setup.html#listing-registered-csi-drivers","Setup.html#csinodeinfo-custom-resource-alpha","Setup.html#enabling-csinodeinfo","Setup.html#csi-driver-discovery-beta","Setup.html#registrar-sidecar-configuration","Setup.html#the-kubelet-root-directory","Setup.html#archives","Deployment.html#deployment","Drivers.html#drivers","Drivers.html#sample-drivers","Drivers.html#production-drivers","Drivers.html#testing","Usage.html#usage","Usage.html#pre-provisioned-volumes","Usage.html#dynamic-provisioning","Example.html#example","Example.html#deployment","Example.html#create-rbac-rules-for-csi-provisioner","Example.html#create-rbac-rules-for-csi-attacher","Example.html#create-rbac-rules-for-node-plugin","Example.html#create-rbac-rules-for-csi-snapshotter","Example.html#deploy-csi-provisioner-in-statefulset-pod","Example.html#deploy-csi-attacher-in-statefulset-pod","Example.html#deploy-driver-registrar-and-hostpath-csi-plugin-in-daemonset-pod","Example.html#deploy-csi-snapshotter-in-statefulset-pod","Example.html#usage","Example.html#confirming-the-setup","Example.html#snapshot-support","Example.html#restore-volume-from-snapshot-support","Development.html#development","CSI-Driver.html#developing-a-csi-driver","CSI-Driver.html#other-resources","Implement-Snapshot-Feature.html#implement-snapshot-feature","Implement-Snapshot-Feature.html#snapshot-apis","Implement-Snapshot-Feature.html#enable-volumesnapshotdatasource-feature-gate","Implement-Snapshot-Feature.html#deploy-external-snapshotter-with-csi-driver","Implement-Snapshot-Feature.html#test-snapshot-feature","Implement-Snapshot-Feature.html#pvc-not-bound","CSI-Kubernetes.html#deploying-in-kubernetes","CSI-Kubernetes.html#overview","CSI-Kubernetes.html#sidecar-containers","CSI-Kubernetes.html#external-attacher","CSI-Kubernetes.html#external-provisioner","CSI-Kubernetes.html#external-snapshotter","CSI-Kubernetes.html#driver-registrar","CSI-Kubernetes.html#kubelet","CSI-Kubernetes.html#mount-point","CSI-Kubernetes.html#rbac-rules","CSI-Kubernetes.html#deploying","CSI-Kubernetes.html#examples","CSI-Kubernetes.html#more-information","Testing.html#testing","Testing-Clients.html#testing-csi-clients","Testing-Clients.html#csi-test-unit-test-mock-driver","Testing-Clients.html#more-information","Testing-Clients.html#hostpath-driver","Testing-Drivers.html#testing-csi-drivers","Testing-Drivers.html#unit-testing","Testing-Drivers.html#functional-testing","Testing-Drivers.html#csi-sanity","Troubleshooting.html#troubleshooting","Troubleshooting.html#node-plugin-pod-does-not-start-with--runcontainererror--status","Troubleshooting.html#external-attacher-cant-find--volumeattachments","Troubleshooting.html#problems-with-the-external-components","References.html#references","Archive.html#archive","Kubernetes-1.9.html#csi-with-kubernetes-19","Kubernetes-1.9.html#developers","Kubernetes-1.9.html#confirming-the-setup","Kubernetes-1.10.html#csi-with-kubernetes-110"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":1,"title":1},"1":{"body":15,"breadcrumbs":3,"title":3},"10":{"body":32,"breadcrumbs":9,"title":6},"11":{"body":129,"breadcrumbs":7,"title":4},"12":{"body":27,"breadcrumbs":5,"title":2},"13":{"body":73,"breadcrumbs":7,"title":4},"14":{"body":87,"breadcrumbs":7,"title":4},"15":{"body":27,"breadcrumbs":5,"title":2},"16":{"body":83,"breadcrumbs":7,"title":4},"17":{"body":273,"breadcrumbs":6,"title":3},"18":{"body":48,"breadcrumbs":6,"title":3},"19":{"body":8,"breadcrumbs":4,"title":1},"2":{"body":13,"breadcrumbs":2,"title":2},"20":{"body":24,"breadcrumbs":4,"title":1},"21":{"body":17,"breadcrumbs":4,"title":1},"22":{"body":40,"breadcrumbs":5,"title":2},"23":{"body":170,"breadcrumbs":5,"title":2},"24":{"body":10,"breadcrumbs":4,"title":1},"25":{"body":24,"breadcrumbs":4,"title":1},"26":{"body":68,"breadcrumbs":6,"title":3},"27":{"body":350,"breadcrumbs":5,"title":2},"28":{"body":14,"breadcrumbs":4,"title":1},"29":{"body":56,"breadcrumbs":4,"title":1},"3":{"body":22,"breadcrumbs":3,"title":3},"30":{"body":131,"breadcrumbs":8,"title":5},"31":{"body":90,"breadcrumbs":8,"title":5},"32":{"body":99,"breadcrumbs":8,"title":5},"33":{"body":142,"breadcrumbs":8,"title":5},"34":{"body":125,"breadcrumbs":8,"title":5},"35":{"body":130,"breadcrumbs":8,"title":5},"36":{"body":167,"breadcrumbs":11,"title":8},"37":{"body":157,"breadcrumbs":8,"title":5},"38":{"body":431,"breadcrumbs":4,"title":1},"39":{"body":100,"breadcrumbs":5,"title":2},"4":{"body":9,"breadcrumbs":1,"title":1},"40":{"body":337,"breadcrumbs":5,"title":2},"41":{"body":135,"breadcrumbs":7,"title":4},"42":{"body":8,"breadcrumbs":1,"title":1},"43":{"body":35,"breadcrumbs":4,"title":3},"44":{"body":24,"breadcrumbs":2,"title":1},"45":{"body":53,"breadcrumbs":7,"title":3},"46":{"body":21,"breadcrumbs":6,"title":2},"47":{"body":19,"breadcrumbs":8,"title":4},"48":{"body":58,"breadcrumbs":9,"title":5},"49":{"body":39,"breadcrumbs":7,"title":3},"5":{"body":44,"breadcrumbs":3,"title":3},"50":{"body":46,"breadcrumbs":6,"title":2},"51":{"body":10,"breadcrumbs":3,"title":2},"52":{"body":26,"breadcrumbs":2,"title":1},"53":{"body":18,"breadcrumbs":3,"title":2},"54":{"body":73,"breadcrumbs":3,"title":2},"55":{"body":22,"breadcrumbs":3,"title":2},"56":{"body":23,"breadcrumbs":3,"title":2},"57":{"body":67,"breadcrumbs":3,"title":2},"58":{"body":42,"breadcrumbs":2,"title":1},"59":{"body":41,"breadcrumbs":3,"title":2},"6":{"body":21,"breadcrumbs":4,"title":1},"60":{"body":62,"breadcrumbs":3,"title":2},"61":{"body":13,"breadcrumbs":2,"title":1},"62":{"body":25,"breadcrumbs":2,"title":1},"63":{"body":10,"breadcrumbs":3,"title":2},"64":{"body":7,"breadcrumbs":2,"title":1},"65":{"body":49,"breadcrumbs":5,"title":3},"66":{"body":111,"breadcrumbs":8,"title":6},"67":{"body":11,"breadcrumbs":4,"title":2},"68":{"body":21,"breadcrumbs":4,"title":2},"69":{"body":13,"breadcrumbs":5,"title":3},"7":{"body":29,"breadcrumbs":5,"title":2},"70":{"body":52,"breadcrumbs":4,"title":2},"71":{"body":7,"breadcrumbs":4,"title":2},"72":{"body":27,"breadcrumbs":4,"title":2},"73":{"body":0,"breadcrumbs":1,"title":1},"74":{"body":31,"breadcrumbs":6,"title":6},"75":{"body":50,"breadcrumbs":5,"title":5},"76":{"body":30,"breadcrumbs":3,"title":3},"77":{"body":8,"breadcrumbs":1,"title":1},"78":{"body":8,"breadcrumbs":1,"title":1},"79":{"body":28,"breadcrumbs":4,"title":3},"8":{"body":37,"breadcrumbs":6,"title":3},"80":{"body":32,"breadcrumbs":2,"title":1},"81":{"body":55,"breadcrumbs":3,"title":2},"82":{"body":1,"breadcrumbs":4,"title":3},"9":{"body":47,"breadcrumbs":6,"title":3}},"docs":{"0":{"body":"","breadcrumbs":"Introduction","id":"0","title":"Introduction"},"1":{"body":"Welcome to the CSI for Kubernetes documentation repository. Here you will find information on how to use, develop, and deploy CSI plugins, or drivers, with Kubernetes.","breadcrumbs":"Kubernetes CSI Documentation","id":"1","title":"Kubernetes CSI Documentation"},"10":{"body":"Kubernetes now has raw block volume Support as an alpha implementation. If you want to use the CSI raw block volume support , you must enable the feature (for your Kubernetes binaries including server, kubelet, controller manager, etc) with the feature-gates flag as follow: $ kube --feature-gates=BlockVolume=true,CSIBlockVolume=true ...","breadcrumbs":"Using a CSI Driver » Enable raw block volume support (alpha)","id":"10","title":"Enable raw block volume support (alpha)"},"11":{"body":"Starting with version 1.12, the CSIDriver custom resource definition (or CRD) has been introduced as a way to represent the CSI drivers running in a cluster. An admin can update the attributes of this object to modify the configuration of its associated driver at runtime. You can see the full definition of this CRD here . The alpha release of CSIDriver exposes three main configuration settings: apiVersion: v1\nitems:\n- apiVersion: csi.storage.k8s.io/v1alpha1 kind: CSIDriver metadata: name: csi-hostpath spec: attachRequired: true podInfoOnMountVersion: \"v1\" Where: metadata:name - the identifying name of the CSI driver. That name must be unique in the cluster as it is the name that is used to identify the CSI cluster. attachRequired - indicates that the CSI volume driver requires a volume attach operation. This will cause Kubernetes to call make a CSI.ControllerPublishVolume() call and wait for completion before proceeding to mount. podInfoOnMountVersion - this value indicates that the associated CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount. Leave value empty if you do not want pod info to be transmitted. Or, provide a value of v1 which will cause the Kubelet to send the followings pod information during NodePublishVolume() calls to the driver as VolumeAttributes : csi.storage.k8s.io/pod.name: pod.Name\ncsi.storage.k8s.io/pod.namespace: pod.Namespace\ncsi.storage.k8s.io/pod.uid: string(pod.UID)","breadcrumbs":"Using a CSI Driver » CSIDriver custom resource (alpha)","id":"11","title":"CSIDriver custom resource (alpha)"},"12":{"body":"If you want to use the CSIDriver CRD and get a preview of how configuration will work at runtime, do the followings: Ensure the feature gate is enabled with --feature-gates=CSIDriverRegistry=true Install the CSIDriver CRD on the Kubernetes cluster with the following command: $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml","breadcrumbs":"Using a CSI Driver » Enabling CSIDriver","id":"12","title":"Enabling CSIDriver"},"13":{"body":"Using the CSIDriver CRD, it is now possible to query Kubernetes to get a list of registered drivers running in the cluster as shown below: $> kubectl get csidrivers.csi.storage.k8s.io\nNAME AGE\ncsi-hostpath 2m Or get a more detail view of your registered driver with: $> kubectl describe csidrivers.csi.storage.k8s.io\nName: csi-hostpath\nNamespace:\nLabels: \nAnnotations: \nAPI Version: csi.storage.k8s.io/v1alpha1\nKind: CSIDriver\nMetadata: Creation Timestamp: 2018-10-04T21:15:30Z Generation: 1 Resource Version: 390 Self Link: /apis/csi.storage.k8s.io/v1alpha1/csidrivers/csi-hostpath UID: 9f854aa6-c81a-11e8-bdce-000c29e88ff1\nSpec: Attach Required: true Pod Info On Mount Version:\nEvents: ","breadcrumbs":"Using a CSI Driver » Listing registered CSI drivers","id":"13","title":"Listing registered CSI drivers"},"14":{"body":"Object CSINodeInfo is a resource designed to carry binding information between a CSI driver and a cluster node where its volume storage will land. In the first release, object CSINodeInfo is used to establish the link between a node, its driver, and the topology keys used for scheduling volume storage. You can see the full definition of this CRD here . The following snippet shows a sample CSIDriverInfo which is usually created by Kubernetes: apiVersion: v1\nitems:\n- apiVersion: csi.storage.k8s.io/v1alpha1 kind: CSINodeInfo metadata: name: 127.0.0.1 csiDrivers: - driver: csi-hostpath nodeID: 127.0.0.1 topologyKeys: []\n... Where: csiDrivers - list of CSI drivers running on the node and their properties. driver - the CSI driver that this object refers to. nodeId - the assigned identifier for the node as determined by the driver. toplogykeys - A list of topology keys assigned to the node as supported by the driver.","breadcrumbs":"Using a CSI Driver » CSINodeInfo custom resource (alpha)","id":"14","title":"CSINodeInfo custom resource (alpha)"},"15":{"body":"If you want to use the CSINodeInfo CRD and get a preview of how configuration will work at runtime, do the followings: Ensure the feature gate is enabled with --feature-gates=CSIDriverRegistry=true Install the CSINodeInfo CRD on the Kubernetes cluster with the following command: $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml","breadcrumbs":"Using a CSI Driver » Enabling CSINodeInfo","id":"15","title":"Enabling CSINodeInfo"},"16":{"body":"The CSI driver discovery uses the Kubelet Plugin Watcher feature which allows Kubelet to discover deployed CSI drivers automatically. The registrar sidecar container exposes an internal registration server via a Unix data socket path. The Kubelet monitors its registration directory to detect new registration requests. Once detected, the Kubelet contacts the registrar sidecar to query driver information. The retrieved CSI driver information (including the driver's own socket path) will be used for further interaction with the driver. This replaces the previous driver registration mechanism, where the driver-registrar sidecar, rather than kubelet, handles registration. Using this discovery feature, instead of the prior registration mechanism, will not have any effect on how drivers behave, however, this will be the way CSI works internally in coming releases.","breadcrumbs":"Using a CSI Driver » CSI driver discovery (beta)","id":"16","title":"CSI driver discovery (beta)"},"17":{"body":"The registrar sidecar container provides configuration functionalities to its associated driver. For instance, using the registrar container, an admin can specify how the driver should behave during volume attachment operations. Some CLI arguments provided to the registrar container will be used to create the CSIDriver and CSIDriverInfo custom resources discussed earlier. To configure your driver using the registrar sidecar, you can configure the container as shown in the snippet below: - name: driver-registrar args: - --v=5 - --csi-address=/csi/csi.sock - --mode=node-register - --driver-requires-attachment=true - --pod-info-mount-version=\"v1\" - --kubelet-registration-path=/var/lib/kubelet/plugins/csi-hostpath/csi.sock env: - name: KUBE_NODE_NAME valueFrom: fieldRef: apiVersion: v1 fieldPath: spec.nodeName image: quay.io/k8scsi/driver-registrar:v0.2.0 imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumeMounts: - name: registration-dir mountPath: /registration\n...\nvolumes: name: socket-dir - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: registration-dir - hostPath: path: /var/lib/kubelet/plugins type: Directory Where: --csi-address - specifies the Unix domain socket path, on the host, for the CSI driver. It allows the registrar sidecar to communicate with the driver for discovery information. Mount path /csi is mapped to HostPath entry socket-dir which is mapped to directory /var/lib/kubelet/plugins/csi-hostpath --mode - this flag specifies how the registar binary will function in either --driver-requires-attachment - indicates that this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that Kubernetes should call attach and wait for any attach operation to complete before proceeding to mounting. If value is not specified, default is false meaning attach will not be called. --pod-info-mount-version=\"v1\" - this indicates that the associated CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount. A version of value \"v1\" will cause the Kubelet send the followings pod information during NodePublishVolume() calls to the driver as VolumeAttributes: csi.storage.k8s.io/pod.name: pod.Name csi.storage.k8s.io/pod.namespace: pod.Namespace csi.storage.k8s.io/pod.uid: string(pod.UID) --kubelet-registration-path - specifies the fully-qualified path of the Unix domain socket for the CSI driver on the host. This path is constructed using the path from HostPath socket-dir and the additional suffix csi.sock . The registrar sidecar will provide this path to core CSI components for subsequent volume operations. VolumeMount /csi - is mapped to HostPath /var/lib/kubelet/plugins/csi-hostpath . It is the root location where the CSI driver's Unix Domain socket file is mounted on the host. VolumeMount /registration is mapped to HostPath /var/lib/kubelet/plugins . It is the root location where Kubelet watcher scans for new plugin registration.","breadcrumbs":"Using a CSI Driver » Registrar sidecar configuration","id":"17","title":"Registrar sidecar configuration"},"18":{"body":"In the configuration above, notice that all paths starts with /var/lib/kubelet/plugin That is because the discovery mechanism relies on the Kubelet's root directory (which is by default) /var/lib/kubelet . Ensure that this path value matches the value specified in the Kubelet's --root-dir argument. CSI Volume Snapshot support CSI volume snapshot support : To enable support for Kubernetes volume snapshotting, you must set the following feature gate on Kubernetes v1.12 (disabled by default for alpha): --feature-gates=VolumeSnapshotDataSource=true","breadcrumbs":"Using a CSI Driver » The Kubelet root directory","id":"18","title":"The Kubelet root directory"},"19":{"body":"Please visit the Archives for setup instructions on previous versions of Kubernetes.","breadcrumbs":"Using a CSI Driver » Archives","id":"19","title":"Archives"},"2":{"body":"Kubernetes CSI spec Status v1.9 v0.1 Alpha v1.10 v0.2 Beta v1.11 v0.3 Beta","breadcrumbs":"Project status","id":"2","title":"Project status"},"20":{"body":"To benefit from the new CSI support, you will need to deploy a CSI driver. Please visit the Drivers page to determine how to deploy your specific driver. A functional example based on the HostPath driver is presented in the Example section.","breadcrumbs":"Using a CSI Driver » Deployment","id":"20","title":"Deployment"},"21":{"body":"The following are a set of CSI driver which can be used with Kubernetes: NOTE: If you would like your driver to be added to this table, please create an issue in this repo with the information you would like to add here.","breadcrumbs":"Using a CSI Driver » Drivers","id":"21","title":"Drivers"},"22":{"body":"Name Status More Information Flexvolume Sample HostPath v0.2.0 Only use for a single node tests. See the Example page for Kubernetes-specific instructions. In-memory Sample Mock Driver v0.3.0 The sample mock driver used for csi-sanity NFS Sample VFS Driver Released A CSI plugin that provides a virtual file system.","breadcrumbs":"Using a CSI Driver » Sample Drivers","id":"22","title":"Sample Drivers"},"23":{"body":"Name Status More Information Cinder v0.2.0 A Container Storage Interface (CSI) Storage Plug-in for Cinder DigitalOcean Block Storage v0.0.1 (alpha) A Container Storage Interface (CSI) Driver for DigitalOcean Block Storage AWS Elastic Block Storage v0.0.1(alpha) A Container Storage Interface (CSI) Driver for AWS Elastic Block Storage (EBS) GCE Persistent Disk Alpha A Container Storage Interface (CSI) Storage Plugin for Google Compute Engine Persistent Disk OpenSDS Beta For more information, please visit releases and https://github.com/opensds/nbp/tree/master/csi Portworx 0.3.0 CSI implementation is available here which can be used as an example also. RBD v0.2.0 A Container Storage Interface (CSI) Storage RBD Plug-in for Ceph CephFS v0.2.0 A Container Storage Interface (CSI) Storage Plug-in for CephFS ScaleIO v0.1.0 A Container Storage Interface (CSI) Storage Plugin for DellEMC ScaleIO vSphere v0.1.0 A Container Storage Interface (CSI) Storage Plug-in for VMware vSphere NetApp v0.2.0 (alpha) A Container Storage Interface (CSI) Storage Plug-in for NetApp's Trident container storage orchestrator Ember CSI v0.2.0 (alpha) Multi-vendor CSI plugin supporting over 80 storage drivers to provide block and mount storage to Container Orchestration systems. Nutanix beta A Container Storage Interface (CSI) Storage Driver for Nutanix Quobyte v0.2.0 A Container Storage Interface (CSI) Plugin for Quobyte GlusterFS Beta A Container Storage Interface (CSI) Plugin for GlusterFS","breadcrumbs":"Using a CSI Driver » Production Drivers","id":"23","title":"Production Drivers"},"24":{"body":"There are multiple ways to test your driver. Please see Testing Drivers for more information.","breadcrumbs":"Using a CSI Driver » Testing","id":"24","title":"Testing"},"25":{"body":"There are two main models of how to use storage in Kubernetes with CSI drivers. These models include either the usage of pre-provisioned volumes or dynamic provisioned volumes. Please check the documentation of your specific driver for more information.","breadcrumbs":"Using a CSI Driver » Usage","id":"25","title":"Usage"},"26":{"body":"Pre-provisioned drivers work just as they did before, where the administrator would create a PersistentVolume specification which would describe the volume to be used. The PersistentVolume specification would need to be setup according to your driver, the difference here is that there is a new section called csi which needs to be setup accordingly. Please see Kubernetes Documentation on CSI Volumes . Here is an example of a PersistentVolume specification of a pre-provisioned volume managed by a CSI driver: apiVersion: v1\nkind: PersistentVolume\nmetadata: name: manually-created-pv\nspec: capacity: storage: 5Gi accessModes: - ReadWriteOnce persistentVolumeReclaimPolicy: Retain csi: driver: com.example.team/csi-driver volumeHandle: existingVolumeName readOnly: false","breadcrumbs":"Using a CSI Driver » Pre-provisioned volumes","id":"26","title":"Pre-provisioned volumes"},"27":{"body":"To setup the system for dynamic provisioning, the administrator needs to setup a StorageClass pointing to the CSI driver’s external-provisioner and specifying any parameters required by the driver. Here is an example of a StorageClass: kind: StorageClass\napiVersion: storage.k8s.io/v1\nmetadata: name: fast-storage\nprovisioner: com.example.team/csi-driver\nparameters: type: pd-ssd Where, provisioner : Must be set to the name of the CSI driver parameters : Must contain any parameters specific to the CSI driver. The user can then create a PersistentVolumeClaim utilizing this StorageClass as follows: apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata: name: request-for-storage\nspec: accessModes: - ReadWriteOnce resources: requests: storage: 5Gi storageClassName: fast-storage CSI Provisioner Parameters The CSI dynamic provisioner makes CreateVolumeRequest and DeleteVolumeRequest calls to CSI drivers. The controllerCreateSecrets and controllerDeleteSecrets fields in those requests can be populated with data from a Kubernetes Secret object by setting csiProvisionerSecretName and csiProvisionerSecretNamespace parameters in the StorageClass . For example: kind: StorageClass\napiVersion: storage.k8s.io/v1\nmetadata: name: fast-storage\nprovisioner: com.example.team/csi-driver\nparameters: type: pd-ssd csiProvisionerSecretName: fast-storage-provision-key csiProvisionerSecretNamespace: pd-ssd-credentials The csiProvisionerSecretName and csiProvisionerSecretNamespace parameters may specify literal values, or a template containing the following variables: ${pv.name} - replaced with the name of the PersistentVolume object being provisioned Once the CSI volume is created, a corresponding Kubernetes PersistentVolume object is created. The controllerPublishSecretRef , nodeStageSecretRef , and nodePublishSecretRef fields in the PersistentVolume object can be populated via the following storage class parameters: controllerPublishSecretRef in the PersistentVolume is populated by setting these StorageClass parameters: csiControllerPublishSecretName csiControllerPublishSecretNamespace nodeStageSecretRef in the PersistentVolume is populated by setting these StorageClass parameters: csiNodeStageSecretName csiNodeStageSecretNamespace nodePublishSecretRef in the PersistentVolume is populated by setting these StorageClass parameters: csiNodePublishSecretName csiNodePublishSecretNamespace The csiControllerPublishSecretName , csiNodeStageSecretName , and csiNodePublishSecretName parameters may specify a literal secret name, or a template containing the following variables: ${pv.name} - replaced with the name of the PersistentVolume ${pvc.name} - replaced with the name of the PersistentVolumeClaim ${pvc.namespace} - replaced with the namespace of the PersistentVolumeClaim ${pvc.annotations['']} (e.g. ${pvc.annotations['example.com/key']} ) - replaced with the value of the specified annotation in the PersistentVolumeClaim The csiControllerPublishSecretNamespace , csiNodeStageSecretNamespace , and csiNodePublishSecretNamespace parameters may specify a literal namespace name, or a template containing the following variables: ${pv.name} - replaced with the name of the PersistentVolume ${pvc.namespace} - replaced with the namespace of the PersistentVolumeClaim As an example, consider this StorageClass: kind: StorageClass\napiVersion: storage.k8s.io/v1\nmetadata: name: fast-storage\nprovisioner: com.example.team/csi-driver\nparameters: type: pd-ssd csiProvisionerSecretName: fast-storage-provision-key csiProvisionerSecretNamespace: pd-ssd-credentials csiControllerPublishSecretName: ${pv.name}-publish csiControllerPublishSecretNamespace: pd-ssd-credentials csiNodeStageSecretName: ${pv.name}-stage csiNodeStageSecretNamespace: pd-ssd-credentials csiNodePublishSecretName: ${pvc.annotations['com.example.team/key']} csiNodePublishSecretNamespace: ${pvc.namespace} This StorageClass instructs the CSI provisioner to do the following: send the data in the fast-storage-provision-key secret in the pd-ssd-credentials namespace as part of the create request to the CSI driver create a PersistentVolume with: a per-volume controller publish and node stage secret, both in the pd-ssd-credentials (those secrets would need to be created separately in response to the PersistentVolume creation before the PersistentVolume could be attached/mounted) a node publish secret in the same namespace as the PersistentVolumeClaim that triggered the provisioning, with a name specified as an annotation on the PersistentVolumeClaim. This could be used to give the creator of the PersistentVolumeClaim the ability to specify a secret containing a decryption key they have control over.","breadcrumbs":"Using a CSI Driver » Dynamic Provisioning","id":"27","title":"Dynamic Provisioning"},"28":{"body":"The HostPath can be used to provision local storage in a single node test. This section shows how to deploy and use that driver in Kubernetes.","breadcrumbs":"Using a CSI Driver » Example","id":"28","title":"Example"},"29":{"body":"This is tested with Kubernetes v1.12. Set the following feature gate flags to true: --feature-dates=CSIPersistentVolume=true,MountPropagation=true,VolumeSnapshotDataSource=true,KubeletPluginsWatcher=true,CSINodeInfo=true,CSIDriverRegistry=true CSIPersistentVolume is enabled by default in v1.10. MountPropagation is enabled by default in v1.10. VolumeSnapshotDataSource is a new alpha feature in v1.12. KubeletPluginsWatcher is enabled by default in v1.12. CSINodeInfo and CSIDriverRegistry are new alpha features in v1.12. CRDs needs to be created manually for CSIDriverRegistry and CSINodeInfo . $ kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml --validate=false\ncustomresourcedefinition.apiextensions.k8s.io/csidrivers.csi.storage.k8s.io created $ kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml --validate=false\ncustomresourcedefinition.apiextensions.k8s.io/csinodeinfos.csi.storage.k8s.io created","breadcrumbs":"Using a CSI Driver » Deployment","id":"29","title":"Deployment"},"3":{"body":"Container Name CSI spec Latest Release Tag csi-provisioner v0.3 v0.4.1 csi-attacher v0.3 v0.4.1 driver-registrar v0.3 v0.4.1 livenessprobe v0.3 v0.4.1","breadcrumbs":"Sidecar container status","id":"3","title":"Sidecar container status"},"30":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/rbac/csi-provisioner-rbac.yaml\nserviceaccount/csi-provisioner created\nclusterrole.rbac.authorization.k8s.io/external-provisioner-runner created\nclusterrolebinding.rbac.authorization.k8s.io/csi-provisioner-role created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-provisioner ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: external-provisioner-runner\nrules: - apiGroups: [\"\"] resources: [\"secrets\"] verbs: [\"get\", \"list\"] - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\", \"create\", \"delete\"] - apiGroups: [\"\"] resources: [\"persistentvolumeclaims\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"storageclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"events\"] verbs: [\"list\", \"watch\", \"create\", \"update\", \"patch\"] - apiGroups: [\"\"] resources: [\"endpoints\"] verbs: [\"list\", \"watch\", \"create\", \"update\", \"get\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshots\"] verbs: [\"get\", \"list\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshotcontents\"] verbs: [\"get\", \"list\"] - apiGroups: [\"csi.storage.k8s.io\"] resources: [\"csinodeinfos\"] verbs: [\"get\", \"list\", \"watch\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-provisioner-role\nsubjects: - kind: ServiceAccount name: csi-provisioner namespace: default\nroleRef: kind: ClusterRole name: external-provisioner-runner apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for CSI provisioner","id":"30","title":"Create RBAC rules for CSI provisioner"},"31":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/rbac/csi-attacher-rbac.yaml\nserviceaccount/csi-attacher created\nclusterrole.rbac.authorization.k8s.io/external-attacher-runner created\nclusterrolebinding.rbac.authorization.k8s.io/csi-attacher-role created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-attacher ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: external-attacher-runner\nrules: - apiGroups: [\"\"] resources: [\"events\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"volumeattachments\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-attacher-role\nsubjects: - kind: ServiceAccount name: csi-attacher namespace: default\nroleRef: kind: ClusterRole name: external-attacher-runner apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for CSI attacher","id":"31","title":"Create RBAC rules for CSI attacher"},"32":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/rbac/csi-nodeplugin-rbac.yaml\nserviceaccount/csi-nodeplugin created\nclusterrole.rbac.authorization.k8s.io/csi-nodeplugin created\nclusterrolebinding.rbac.authorization.k8s.io/csi-nodeplugin created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-nodeplugin ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-nodeplugin\nrules: - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"update\"] - apiGroups: [\"\"] resources: [\"namespaces\"] verbs: [\"get\", \"list\"] - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"volumeattachments\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"csi.storage.k8s.io\"] resources: [\"csidrivers\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"csi.storage.k8s.io\"] resources: [\"csinodeinfos\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-nodeplugin\nsubjects: - kind: ServiceAccount name: csi-nodeplugin namespace: default\nroleRef: kind: ClusterRole name: csi-nodeplugin apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for node plugin","id":"32","title":"Create RBAC rules for node plugin"},"33":{"body":"The CSI snapshotter is an optional sidecar container. You only need to create these RBAC rules if you want to test the snapshot feature. $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-snapshotter-rbac.yaml\nserviceaccount/csi-snapshotter created\nclusterrole.rbac.authorization.k8s.io/external-snapshotter-runner created\nclusterrolebinding.rbac.authorization.k8s.io/csi-snapshotter-role created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-snapshotter ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: external-snapshotter-runner\nrules: - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"persistentvolumeclaims\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"storageclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"events\"] verbs: [\"list\", \"watch\", \"create\", \"update\", \"patch\"] - apiGroups: [\"\"] resources: [\"secrets\"] verbs: [\"get\", \"list\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshotclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshotcontents\"] verbs: [\"create\", \"get\", \"list\", \"watch\", \"update\", \"delete\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshots\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"apiextensions.k8s.io\"] resources: [\"customresourcedefinitions\"] verbs: [\"create\", \"list\", \"watch\", \"delete\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-snapshotter-role\nsubjects: - kind: ServiceAccount name: csi-snapshotter namespace: default\nroleRef: kind: ClusterRole name: external-snapshotter-runner apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for CSI snapshotter","id":"33","title":"Create RBAC rules for CSI snapshotter"},"34":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/hostpath/csi-hostpath-provisioner.yaml\nservice/csi-hostpath-provisioner created\nstatefulset.apps/csi-hostpath-provisioner created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-provisioner-0 1/1 Running 0 6s kind: Service\napiVersion: v1\nmetadata: name: csi-hostpath-provisioner labels: app: csi-hostpath-provisioner\nspec: selector: app: csi-hostpath-provisioner ports: - name: dummy port: 12345 ---\nkind: StatefulSet\napiVersion: apps/v1\nmetadata: name: csi-hostpath-provisioner\nspec: serviceName: \"csi-hostpath-provisioner\" replicas: 1 selector: matchLabels: app: csi-hostpath-provisioner template: metadata: labels: app: csi-hostpath-provisioner spec: serviceAccount: csi-provisioner containers: - name: csi-provisioner image: quay.io/k8scsi/csi-provisioner:v0.4.1 args: - \"--provisioner=csi-hostpath\" - \"--csi-address=$(ADDRESS)\" - \"--connection-timeout=15s\" env: - name: ADDRESS value: /csi/csi.sock imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir","breadcrumbs":"Using a CSI Driver » Deploy CSI provisioner in StatefulSet pod","id":"34","title":"Deploy CSI provisioner in StatefulSet pod"},"35":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/hostpath/csi-hostpath-attacher.yaml\nservice/csi-hostpath-attacher created\nstatefulset.apps/csi-hostpath-attacher created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 4s\ncsi-hostpath-provisioner-0 1/1 Running 0 2m1s kind: Service\napiVersion: v1\nmetadata: name: csi-hostpath-attacher labels: app: csi-hostpath-attacher\nspec: selector: app: csi-hostpath-attacher ports: - name: dummy port: 12345 ---\nkind: StatefulSet\napiVersion: apps/v1\nmetadata: name: csi-hostpath-attacher\nspec: serviceName: \"csi-hostpath-attacher\" replicas: 1 selector: matchLabels: app: csi-hostpath-attacher template: metadata: labels: app: csi-hostpath-attacher spec: serviceAccount: csi-attacher containers: - name: csi-attacher image: quay.io/k8scsi/csi-attacher:v0.4.1 args: - --v=5 - --csi-address=$(ADDRESS) env: - name: ADDRESS value: /csi/csi.sock imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir","breadcrumbs":"Using a CSI Driver » Deploy CSI attacher in StatefulSet pod","id":"35","title":"Deploy CSI attacher in StatefulSet pod"},"36":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/hostpath/csi-hostpathplugin.yaml\ndaemonset.apps/csi-hostpathplugin created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 53s\ncsi-hostpath-provisioner-0 1/1 Running 0 2m50s\ncsi-hostpathplugin-9rp7c 2/2 Running 0 5s kind: DaemonSet\napiVersion: apps/v1\nmetadata: name: csi-hostpathplugin\nspec: selector: matchLabels: app: csi-hostpathplugin template: metadata: labels: app: csi-hostpathplugin spec: serviceAccount: csi-nodeplugin hostNetwork: true containers: - name: driver-registrar image: quay.io/k8scsi/driver-registrar:v0.4.1 args: - --v=5 - --csi-address=/csi/csi.sock - --kubelet-registration-path=/var/lib/kubelet/plugins/csi-hostpath/csi.sock env: - name: KUBE_NODE_NAME valueFrom: fieldRef: apiVersion: v1 fieldPath: spec.nodeName imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir - mountPath: /registration name: registration-dir - name: hostpath image: quay.io/k8scsi/hostpathplugin:v0.4.1 args: - \"--v=5\" - \"--endpoint=$(CSI_ENDPOINT)\" - \"--nodeid=$(KUBE_NODE_NAME)\" env: - name: CSI_ENDPOINT value: unix:///csi/csi.sock - name: KUBE_NODE_NAME valueFrom: fieldRef: apiVersion: v1 fieldPath: spec.nodeName imagePullPolicy: Always securityContext: privileged: true volumeMounts: - mountPath: /csi name: socket-dir - mountPath: /var/lib/kubelet/pods mountPropagation: Bidirectional name: mountpoint-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir - hostPath: path: /var/lib/kubelet/pods type: DirectoryOrCreate name: mountpoint-dir - hostPath: path: /var/lib/kubelet/plugins type: Directory name: registration-dir","breadcrumbs":"Using a CSI Driver » Deploy driver-registrar and hostpath CSI plugin in DaemonSet pod","id":"36","title":"Deploy driver-registrar and hostpath CSI plugin in DaemonSet pod"},"37":{"body":"The CSI snapshotter is an optional sidecar container. You only need to deploy it if you want to test the snapshot feature. $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-hostpath-snapshotter.yaml\nservice/csi-hostpath-snapshotter created\nstatefulset.apps/csi-hostpath-snapshotter created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 96s\ncsi-hostpath-provisioner-0 1/1 Running 0 3m33s\ncsi-hostpath-snapshotter-0 1/1 Running 0 5s\ncsi-hostpathplugin-9rp7c 2/2 Running 0 48s kind: Service\napiVersion: v1\nmetadata: name: csi-hostpath-snapshotter labels: app: csi-hostpath-snapshotter\nspec: selector: app: csi-hostpath-snapshotter ports: - name: dummy port: 12345 ---\nkind: StatefulSet\napiVersion: apps/v1\nmetadata: name: csi-hostpath-snapshotter\nspec: serviceName: \"csi-hostpath-snapshotter\" replicas: 1 selector: matchLabels: app: csi-hostpath-snapshotter template: metadata: labels: app: csi-hostpath-snapshotter spec: serviceAccount: csi-snapshotter containers: - name: csi-snapshotter image: quay.io/k8scsi/csi-snapshotter:v0.4.1 args: - \"--csi-address=$(ADDRESS)\" - \"--connection-timeout=15s\" env: - name: ADDRESS value: /csi/csi.sock imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir","breadcrumbs":"Using a CSI Driver » Deploy CSI snapshotter in StatefulSet pod","id":"37","title":"Deploy CSI snapshotter in StatefulSet pod"},"38":{"body":"Dynamic provisioning is enabled by creating a csi-hostpath-sc storage class. $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/usage/csi-storageclass.yaml\nstorageclass.storage.k8s.io/csi-hostpath-sc created apiVersion: storage.k8s.io/v1\nkind: StorageClass\nmetadata: name: csi-hostpath-sc\nprovisioner: csi-hostpath\nreclaimPolicy: Delete\nvolumeBindingMode: Immediate We can use this storage class to create and claim a new volume: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/usage/csi-pvc.yaml\npersistentvolumeclaim/csi-pvc created\n$ kubectl get pvc\nNAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE\ncsi-pvc Bound pvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO csi-hostpath-sc 3s $ kubectl get pv\nNAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE\npvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO Delete Bound default/csi-pvc csi-hostpath-sc 3s apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata: name: csi-pvc\nspec: accessModes: - ReadWriteOnce resources: requests: storage: 1Gi storageClassName: csi-hostpath-sc # defined in csi-setup.yaml The HostPath driver is configured to create new volumes under /tmp inside the hostpath container in the CSI hostpath plugin DaemonSet pod and thus persist as long as the DaemonSet pod itself. We can use such volumes in another pod like this: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/usage/csi-app.yaml\npod/my-csi-app created\n$ kubectl get pods\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 17m\ncsi-hostpath-provisioner-0 1/1 Running 0 19m\ncsi-hostpath-snapshotter-0 1/1 Running 0 16m\ncsi-hostpathplugin-9rp7c 2/2 Running 0 16m\nmy-csi-app 1/1 Running 0 5s $ kubectl describe pods/my-csi-app\nName: my-csi-app\nNamespace: default\nPriority: 0\nPriorityClassName: \nNode: 127.0.0.1/127.0.0.1\nStart Time: Wed, 03 Oct 2018 06:59:19 -0700\nLabels: \nAnnotations: \nStatus: Running\nIP: 172.17.0.5\nContainers: my-frontend: Container ID: docker://fd2950af39a155bdf08d1da341cfb23aa0d1af3eaaad6950a946355789606e8c Image: busybox Image ID: docker-pullable://busybox@sha256:2a03a6059f21e150ae84b0973863609494aad70f0a80eaeb64bddd8d92465812 Port: Host Port: Command: sleep 1000000 State: Running Started: Wed, 03 Oct 2018 06:59:22 -0700 Ready: True Restart Count: 0 Environment: Mounts: /data from my-csi-volume (rw) /var/run/secrets/kubernetes.io/serviceaccount from default-token-xms2g (ro)\nConditions: Type Status Initialized True Ready True ContainersReady True PodScheduled True\nVolumes: my-csi-volume: Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace) ClaimName: csi-pvc ReadOnly: false default-token-xms2g: Type: Secret (a volume populated by a Secret) SecretName: default-token-xms2g Optional: false\nQoS Class: BestEffort\nNode-Selectors: \nTolerations: node.kubernetes.io/not-ready:NoExecute for 300s node.kubernetes.io/unreachable:NoExecute for 300s\nEvents: Type Reason Age From Message ---- ------ ---- ---- ------- Normal Scheduled 69s default-scheduler Successfully assigned default/my-csi-app to 127.0.0.1 Normal SuccessfulAttachVolume 69s attachdetach-controller AttachVolume.Attach succeeded for volume \"pvc-0571cc14-c714-11e8-8911-000c2967769a\" Normal Pulling 67s kubelet, 127.0.0.1 pulling image \"busybox\" Normal Pulled 67s kubelet, 127.0.0.1 Successfully pulled image \"busybox\" Normal Created 67s kubelet, 127.0.0.1 Created container Normal Started 66s kubelet, 127.0.0.1 Started container kind: Pod\napiVersion: v1\nmetadata: name: my-csi-app\nspec: containers: - name: my-frontend image: busybox volumeMounts: - mountPath: \"/data\" name: my-csi-volume command: [ \"sleep\", \"1000000\" ] volumes: - name: my-csi-volume persistentVolumeClaim: claimName: csi-pvc # defined in csi-pvs.yaml","breadcrumbs":"Using a CSI Driver » Usage","id":"38","title":"Usage"},"39":{"body":"Writing inside the app container should be visible in /tmp of the hostpath container: $ kubectl exec -it my-csi-app /bin/sh\n/ # touch /data/hello-world\n/ # exit $ kubectl exec -it $(kubectl get pods --selector app=csi-hostpathplugin -o jsonpath='{.items[*].metadata.name}') -c hostpath /bin/sh\n/ # find / -name hello-world\n/tmp/057485ab-c714-11e8-bb16-000c2967769a/hello-world\n/ # exit There should be a VolumeAttachment while the app has the volume mounted: $ kubectl get VolumeAttachment\nName: csi-a4e97f3af2161c6d081b8e96c58ed00c9bf1e1745e89b2545e24505437f015df\nNamespace:\nLabels: \nAnnotations: \nAPI Version: storage.k8s.io/v1beta1\nKind: VolumeAttachment\nMetadata: Creation Timestamp: 2018-10-03T13:59:19Z Resource Version: 1730 Self Link: /apis/storage.k8s.io/v1beta1/volumeattachments/csi-a4e97f3af2161c6d081b8e96c58ed00c9bf1e1745e89b2545e24505437f015df UID: 862d7241-c714-11e8-8911-000c2967769a\nSpec: Attacher: csi-hostpath Node Name: 127.0.0.1 Source: Persistent Volume Name: pvc-0571cc14-c714-11e8-8911-000c2967769a\nStatus: Attached: true\nEvents: ","breadcrumbs":"Using a CSI Driver » Confirming the setup","id":"39","title":"Confirming the setup"},"4":{"body":"Please see the Setup page for instructions on how to setup Kubernetes support with CSI.","breadcrumbs":"Installation","id":"4","title":"Installation"},"40":{"body":"Enable dynamic provisioning of volume snapshot by creating a volume snapshot class as follows: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-snapshotclass.yaml\nvolumesnapshotclass.snapshot.storage.k8s.io/csi-hostpath-snapclass created\n$ kubectl get volumesnapshotclass\nNAME AGE\ncsi-hostpath-snapclass 11s\n$ kubectl describe volumesnapshotclass\nName: csi-hostpath-snapclass\nNamespace:\nLabels: \nAnnotations: \nAPI Version: snapshot.storage.k8s.io/v1alpha1\nKind: VolumeSnapshotClass\nMetadata: Creation Timestamp: 2018-10-03T14:15:30Z Generation: 1 Resource Version: 2418 Self Link: /apis/snapshot.storage.k8s.io/v1alpha1/volumesnapshotclasses/csi-hostpath-snapclass UID: c8f5bc47-c716-11e8-8911-000c2967769a\nSnapshotter: csi-hostpath\nEvents: apiVersion: snapshot.storage.k8s.io/v1alpha1\nkind: VolumeSnapshotClass\nmetadata: name: csi-hostpath-snapclass\nsnapshotter: csi-hostpath Use the volume snapshot class to dynamically create a volume snapshot: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-snapshot.yaml\nvolumesnapshot.snapshot.storage.k8s.io/new-snapshot-demo created $ kubectl get volumesnapshot\nNAME AGE\nnew-snapshot-demo 12s $ kubectl get volumesnapshotcontent\nNAME AGE\nsnapcontent-f55db632-c716-11e8-8911-000c2967769a 14s $ kubectl describe volumesnapshot\nName: new-snapshot-demo\nNamespace: default\nLabels: \nAnnotations: \nAPI Version: snapshot.storage.k8s.io/v1alpha1\nKind: VolumeSnapshot\nMetadata: Creation Timestamp: 2018-10-03T14:16:45Z Generation: 1 Resource Version: 2476 Self Link: /apis/snapshot.storage.k8s.io/v1alpha1/namespaces/default/volumesnapshots/new-snapshot-demo UID: f55db632-c716-11e8-8911-000c2967769a\nSpec: Snapshot Class Name: csi-hostpath-snapclass Snapshot Content Name: snapcontent-f55db632-c716-11e8-8911-000c2967769a Source: Kind: PersistentVolumeClaim Name: csi-pvc\nStatus: Creation Time: 2018-10-03T14:16:45Z Ready: true Restore Size: 1Gi\nEvents: $ kubectl describe volumesnapshotcontent\nName: snapcontent-f55db632-c716-11e8-8911-000c2967769a\nNamespace:\nLabels: \nAnnotations: \nAPI Version: snapshot.storage.k8s.io/v1alpha1\nKind: VolumeSnapshotContent\nMetadata: Creation Timestamp: 2018-10-03T14:16:45Z Generation: 1 Resource Version: 2474 Self Link: /apis/snapshot.storage.k8s.io/v1alpha1/volumesnapshotcontents/snapcontent-f55db632-c716-11e8-8911-000c2967769a UID: f561411f-c716-11e8-8911-000c2967769a\nSpec: Csi Volume Snapshot Source: Creation Time: 1538576205471577525 Driver: csi-hostpath Restore Size: 1073741824 Snapshot Handle: f55ff979-c716-11e8-bb16-000c2967769a Persistent Volume Ref: API Version: v1 Kind: PersistentVolume Name: pvc-0571cc14-c714-11e8-8911-000c2967769a Resource Version: 1573 UID: 0575b966-c714-11e8-8911-000c2967769a Snapshot Class Name: csi-hostpath-snapclass Volume Snapshot Ref: API Version: snapshot.storage.k8s.io/v1alpha1 Kind: VolumeSnapshot Name: new-snapshot-demo Namespace: default Resource Version: 2472 UID: f55db632-c716-11e8-8911-000c2967769a\nEvents: apiVersion: snapshot.storage.k8s.io/v1alpha1\nkind: VolumeSnapshot\nmetadata: name: new-snapshot-demo\nspec: snapshotClassName: csi-hostpath-snapclass source: name: csi-pvc kind: PersistentVolumeClaim","breadcrumbs":"Using a CSI Driver » Snapshot support","id":"40","title":"Snapshot support"},"41":{"body":"Follow the following example to create a volume from a volume snapshot: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-restore.yaml\npersistentvolumeclaim/hpvc-restore created\n$ kubectl get pvc\nNAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE\ncsi-pvc Bound pvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO csi-hostpath-sc 24m\nhpvc-restore Bound pvc-77324684-c717-11e8-8911-000c2967769a 1Gi RWO csi-hostpath-sc 6s\n$ kubectl get pv\nNAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE\npvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO Delete Bound default/csi-pvc csi-hostpath-sc 25m\npvc-77324684-c717-11e8-8911-000c2967769a 1Gi RWO Delete Bound default/hpvc-restore csi-hostpath-sc 33s apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata: name: hpvc-restore\nspec: storageClassName: csi-hostpath-sc dataSource: name: new-snapshot-demo kind: VolumeSnapshot apiGroup: snapshot.storage.k8s.io accessModes: - ReadWriteOnce resources: requests: storage: 1Gi If you encounter any problems, please check the [Troubleshooting page](Troubleshooting.html).","breadcrumbs":"Using a CSI Driver » Restore volume from snapshot support","id":"41","title":"Restore volume from snapshot support"},"42":{"body":"This section describes to developers how to create and deploy a CSI driver for Kubernetes.","breadcrumbs":"Development","id":"42","title":"Development"},"43":{"body":"To write a CSI Driver, a developer must create an application which implements the three Identity , Controller , and Node services as described in the CSI specification . The Drivers page contains a set of drivers which may be used as an example of how to write a CSI driver. If this is your first driver, you can start with the in-memory sample Mock Driver used for csi-sanity","breadcrumbs":"Development » Developing a CSI driver","id":"43","title":"Developing a CSI driver"},"44":{"body":"Here are some other resources useful for writing CSI drivers: How to write a Container Storage Interface (CSI) plugin - by Fatih Arslan Understanding Container Storage Interface (CSI) - by Anoop Maniankara (4 min read)","breadcrumbs":"Development » Other Resources","id":"44","title":"Other Resources"},"45":{"body":"To implement the snapshot feature, a CSI driver needs to support controller capabilities CREATE_DELETE_SNAPSHOT and LIST_SNAPSHOTS, and implement controller RPCs CreateSnapshot, DeleteSnapshot, and ListSnapshots. For details, see the CSI spec here . Here are some example CSI plugins that have implemented the snapshot feature: GCE PD CSI driver OpenSDS CSI driver Ceph RBD CSI driver You can find more sample and production CSI drivers here . Please note that drivers may or may not have implemented the snapshot feature.","breadcrumbs":"Development » Developing a CSI driver » Implement Snapshot Feature","id":"45","title":"Implement Snapshot Feature"},"46":{"body":"The volume snapshot APIs are implemented as CRDs here . Once you deploy the CSI sidecar containers which includes the external snapshotter in your cluster, the external-snapshotter will pre-install the Snapshot CRDs.","breadcrumbs":"Development » Developing a CSI driver » Snapshot APIs","id":"46","title":"Snapshot APIs"},"47":{"body":"Since volume snapshot is an alpha feature in Kubernetes v1.12, you need to enable a new alpha feature gate called VolumeSnapshotDataSource in API server binary. --feature-gates=VolumeSnapshotDataSource=true","breadcrumbs":"Development » Developing a CSI driver » Enable VolumeSnapshotDataSource Feature Gate","id":"47","title":"Enable VolumeSnapshotDataSource Feature Gate"},"48":{"body":"The snapshot controller is implemented as a sidecar helper container called External-Snapshotter . External-Snapshotter watches VolumeSnapshot and VolumeSnapshotContent API objects and triggers CreateSnapshot and DeleteSnapshot operations. It is recommended that sidecar containers External-Snapshotter and External-Provisioner be deployed together with CSI driver in a StatefulSet. See this example yaml file which deploys External-Snapshotter and External-Provisioner with the Hostpath CSI driver. Run the following command to start the sidecar containers and the CSI driver: kubectl create -f setup-csi-snapshotter.yaml","breadcrumbs":"Development » Developing a CSI driver » Deploy External-Snapshotter with CSI Driver","id":"48","title":"Deploy External-Snapshotter with CSI Driver"},"49":{"body":"Use the following example yaml files to test the snapshot feature. Create a StorageClass : kubectl create -f storageclass.yaml Create a PVC : kubectl create -f pvc.yaml Create a VolumeSnapshotClass : kubectl create -f snapshotclass.yaml Create a VolumeSnapshot : kubectl create -f snapshot.yaml Create a PVC from a VolumeSnapshot : kuberctl create -f restore.yaml","breadcrumbs":"Development » Developing a CSI driver » Test Snapshot Feature","id":"49","title":"Test Snapshot Feature"},"5":{"body":"Before you can start using CSI, you must understand how to properly setup and configure deploy CSI drivers on top of Kubernetes. This section provides information on Setup - Information on how to setup the CSI feature Deployment - Instructions on deploying a driver Drivers - A growning list of available CSI driverse you can use Usage - Findout the usage mode of CSI drivers Example - Using Hostpath as an example CSI driver","breadcrumbs":"Using CSI Drivers","id":"5","title":"Using CSI Drivers"},"50":{"body":"If a PVC is not bound, the attempt to create a volume snapshot from that PVC will fail. No retries will be attempted. An event will be logged to indicate that the PVC is not bound. Note that this could happen if the PVC spec and the VolumeSnapshot spec are in the same yaml file. In this case, when the VolumeSnapshot object is created, the PVC object is created but volume creation is not complete and therefore PVC is not bound yet. You need to wait until the PVC is bound and try to create the snapshot again.","breadcrumbs":"Development » Developing a CSI driver » PVC not Bound","id":"50","title":"PVC not Bound"},"51":{"body":"This page describes to CSI driver developers how to deploy their driver onto a Kubernetes cluster.","breadcrumbs":"Development » Deploying in Kubernetes","id":"51","title":"Deploying in Kubernetes"},"52":{"body":"There are three components plus the kubelet that enable CSI drivers to provide storage to Kubernetes. These components are sidecar containers which are responsible for communication with both Kubernetes and the CSI driver, making the appropriate CSI calls for their respectful Kubernetes events.","breadcrumbs":"Development » Overview","id":"52","title":"Overview"},"53":{"body":"sidecar-container Sidecar containers manage Kubernetes events and make the appropriate calls to the CSI driver. These are the external attacher , external provisioner , and the driver registrar .","breadcrumbs":"Development » Sidecar Containers","id":"53","title":"Sidecar Containers"},"54":{"body":"external-attacher is a sidecar container that watches Kubernetes VolumeAttachment objects and triggers CSI ControllerPublish and ControllerUnpublish operations against a driver endpoint. As of this writing, the external attacher does not support leader election and therefore there can be only one running per CSI driver. For more information please read Attaching and Detaching . Note, even though this is called the external attacher , its function is to call the CSI API calls ControllerPublish and ControllerUnpublish . These calls most likely will occur in a node which is not the one that will mount the volume. For this reason, many CSI drivers do not support these calls, instead doing the attach/detach and mount/unmount both in the CSI NodePublish and NodeUnpublish calls done by the kubelet at the node which is supposed to mount.","breadcrumbs":"Development » External Attacher","id":"54","title":"External Attacher"},"55":{"body":"external-provisioner is a Sidecar container that watches Kubernetes PersistentVolumeClaim objects and triggers CSI CreateVolume and DeleteVolume operations against a driver endpoint. For more information please read Provisioning and Deleting .","breadcrumbs":"Development » External Provisioner","id":"55","title":"External Provisioner"},"56":{"body":"external-snapshotter is a Sidecar container that watches Kubernetes VolumeSnapshot objects and triggers CSI CreateSnapshot and DeleteSnapshot operations against a driver endpoint. For more information please read Snapshot Design Proposal .","breadcrumbs":"Development » External Snapshotter","id":"56","title":"External Snapshotter"},"57":{"body":"driver-registrar is a sidecar container that registers the CSI driver with kubelet, and adds the drivers custom NodeId to a label on the Kubernetes Node API Object. It does this by communicating with the Identity service on the CSI driver and also calling the CSI GetNodeId operation. The driver registrar must have the Kubernetes name for the node set through the environment variable KUBE_NODE_NAME as follows: - name: csi-driver-registrar imagePullPolicy: Always image: quay.io/k8scsi/driver-registrar:v0.2.0 args: - \"--v=5\" - \"--csi-address=$(ADDRESS)\" env: - name: ADDRESS value: /csi/csi.sock - name: KUBE_NODE_NAME valueFrom: fieldRef: fieldPath: spec.nodeName volumeMounts: - name: socket-dir mountPath: /csi","breadcrumbs":"Development » Driver Registrar","id":"57","title":"Driver Registrar"},"58":{"body":"kubelet The Kubernetes kubelet runs on every node and is responsible for making the CSI calls NodePublish and NodeUnpublish . These calls mount and unmount the storage volume from the storage system, making it available to the Pod to consume. As shown in the external-attacher , most CSI drivers choose to implement both their attach/detach and mount/unmount calls in the NodePublish and NodeUnpublish calls. They do this because the kubelet makes the request on the node which is to consume the volume.","breadcrumbs":"Development » Kubelet","id":"58","title":"Kubelet"},"59":{"body":"The mount point used by the CSI driver must be set to Bidirectional . See the example below: volumeMounts: - name: socket-dir mountPath: /csi - name: mountpoint-dir mountPath: /var/lib/kubelet/pods mountPropagation: \"Bidirectional\" volumes: - name: socket-dir hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate - name: mountpoint-dir hostPath: path: /var/lib/kubelet/pods type: Directory","breadcrumbs":"Development » Mount point","id":"59","title":"Mount point"},"6":{"body":"This document has been updated for the latest version of Kubernetes v1.12. This document outlines the features that are available for CSI. To get step by step instructions on how to run an example CSI driver, you can read the Example section.","breadcrumbs":"Using a CSI Driver » Setup","id":"6","title":"Setup"},"60":{"body":"Side car containers need the appropriate permissions to be able to access and manipulate Kubernetes objects. Here are the RBAC rules needed: kind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-hostpath-role\nrules: - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"create\", \"delete\", \"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"persistentvolumeclaims\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"storageclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"volumeattachments\"] verbs: [\"get\", \"list\", \"watch\", \"update\"]","breadcrumbs":"Development » RBAC Rules","id":"60","title":"RBAC Rules"},"61":{"body":"Deploying a CSI driver onto Kubernetes is highlighted in detail in Recommended Mechanism for Deploying CSI Drivers on Kubernetes .","breadcrumbs":"Development » Deploying","id":"61","title":"Deploying"},"62":{"body":"Simple deployment example using a single pod for all components: see the hostpath example . Full deployment example using a DaemonSet for the node plugin and StatefulSet for the controller plugin: check the NFS driver deployment files .","breadcrumbs":"Development » Examples","id":"62","title":"Examples"},"63":{"body":"For more information, please read CSI Volume Plugins in Kubernetes Design Doc .","breadcrumbs":"Development » More information","id":"63","title":"More information"},"64":{"body":"This document describes to developers how they can test their CSI clients or drivers.","breadcrumbs":"Development » Testing","id":"64","title":"Testing"},"65":{"body":"If you are writing a CSI client, like a CO or a side car container, then you can use some of the following methods to test your application. csi-test unit test mock driver : The csi-test repo provides an automatically generated Golang mock code to be used for unit tests. mock-driver : This driver can be used as an external service to test your gRPC calls. hostPath driver : This driver can be used on a single node to tests for mounting and unmounting of storage.","breadcrumbs":"Development » Testing » Testing CSI Clients","id":"65","title":"Testing CSI Clients"},"66":{"body":"The csi-test unit test mock driver enables Golang clients to test all aspects of their code. This is done by using the mock driver generated using GoMock , which let's the caller verify parameters and test for returned values. Here is a small example: // Setup mock m := gomock.NewController(&mock_utils.SafeGoroutineTester{}) defer m.Finish() driver := mock_driver.NewMockIdentityServer(m) // Setup input in := &csi.GetPluginInfoRequest{ Version: &csi.Version{ Major: 0, Minor: 1, Patch: 0, }, } // Setup mock outout out := &csi.GetPluginInfoResponse{ Name: \"mock\", VendorVersion: \"0.1.1\", Manifest: map[string]string{ \"hello\": \"world\", }, } // Setup expectation // !IMPORTANT!: Must set context expected value to gomock.Any() to match any value driver.EXPECT().GetPluginInfo(gomock.Any(), in).Return(out, nil).Times(1) // Create a new RPC server := mock_driver.NewMockCSIDriver(&mock_driver.MockCSIDriverServers{ Identity: driver, }) conn, err := server.Nexus() if err != nil { t.Errorf(\"Error: %s\", err.Error()) } defer server.Close() // Make call c := csi.NewIdentityClient(conn) r, err := c.GetPluginInfo(context.Background(), in) if err != nil { t.Errorf(\"Error: %s\", err.Error()) } name := r.GetName() if name != \"mock\" { t.Errorf(\"Unknown name: %s\\n\", name) }","breadcrumbs":"Development » Testing » CSI-Test Unit Test Mock Driver","id":"66","title":"CSI-Test Unit Test Mock Driver"},"67":{"body":"For more examples and information see: external-attacher side car container Golang GoMock","breadcrumbs":"Development » Testing » More Information","id":"67","title":"More Information"},"68":{"body":"The hostPath driver is probably the simplest CSI driver to use for testing on a single node. This is the driver that is for CSI e2e tests in Kubernetes. See the Example page for deployment and usage instructions.","breadcrumbs":"Development » Testing » HostPath Driver","id":"68","title":"HostPath Driver"},"69":{"body":"There are multiple ways to test your driver, some still in development. This page will describe each of the multiple methods to test your driver.","breadcrumbs":"Development » Testing » Testing CSI Drivers","id":"69","title":"Testing CSI Drivers"},"7":{"body":"Some of the features discussed here may be at different stages (alpha, beta, or GA). Ensure that the feature you want to try is enabled for the Kubernetes release you are using. To avoid version mismatch, you can enable all of the features discussed here for both kubelet and kube-apiserver with: --feature-gates=VolumeSnapshotDataSource=true,KubeletPluginsWatcher=true,CSINodeInfo=true,CSIDriverRegistry=true","breadcrumbs":"Using a CSI Driver » Enabling features","id":"7","title":"Enabling features"},"70":{"body":"There are multiple ways to test your driver. One way is to exercise every call by writing your own client for your unit tests as done in the Portworx driver . Another way to test your driver is to use the sanity package from csi-test . This simple package contains a single call which will test your driver according to the CSI specification. Here is an example of how it can be used: func TestMyDriver(t *testing.T) { // Setup the full driver and its environment ... setup driver ... // Now call the test suite sanity.Test(t, driverEndpointAddress)\n}","breadcrumbs":"Development » Testing » Unit Testing","id":"70","title":"Unit Testing"},"71":{"body":"For functional testing you can again provide your own model, or some of the following tools:","breadcrumbs":"Development » Testing » Functional Testing","id":"71","title":"Functional Testing"},"72":{"body":"csi-sanity is a program from csi-test which tests your driver based on the sanity package. Here is a sample way to use it: $ csi-sanity --ginkgo.v --csi.endpoint= For more information please see csi-sanity","breadcrumbs":"Development » Testing » csi-sanity","id":"72","title":"csi-sanity"},"73":{"body":"","breadcrumbs":"Troubleshooting","id":"73","title":"Troubleshooting"},"74":{"body":"kubectl describe pod your-nodeplugin-pod shows: failed to start container \"your-driver\": Error response from daemon:\nlinux mounts: Path /var/lib/kubelet/pods is mounted on / but it is not a shared mount Your Docker host is not configured to allow shared mounts. Take a look at this page for instructions to enable them.","breadcrumbs":"Node plugin pod does not start with RunContainerError status","id":"74","title":"Node plugin pod does not start with RunContainerError status"},"75":{"body":"If you have a Kubernetes 1.9 cluster, not being able to list VolumeAttachment and the following error are due to the lack of the storage.k8s.io/v1alpha1=true runtime configuration: $ kubectl logs csi-pod external-attacher\n...\nI0306 16:34:50.976069 1 reflector.go:240] Listing and watching *v1alpha1.VolumeAttachment from github.com/kubernetes-csi/external-attacher/vendor/k8s.io/client-go/informers/factory.go:86 E0306 16:34:50.992034 1 reflector.go:205] github.com/kubernetes-csi/external-attacher/vendor/k8s.io/client-go/informers/factory.go:86: Failed to list *v1alpha1.VolumeAttachment: the server could not find the requested resource\n... Please see the Kubernetes 1.9 page.","breadcrumbs":"External attacher can't find VolumeAttachments","id":"75","title":"External attacher can't find VolumeAttachments"},"76":{"body":"The external components images are under active development. It can happen that they become incompatible with each other. If the issues above above have been ruled out, contact the sig-storage team and/or run the e2e test : go run hack/e2e.go -- --provider=local --test --test_args=\"--ginkgo.focus=Feature:CSI\"","breadcrumbs":"Problems with the external components","id":"76","title":"Problems with the external components"},"77":{"body":"CSI Specification CSI Volume Plugins in Kubernetes Design Doc","breadcrumbs":"References","id":"77","title":"References"},"78":{"body":"In this section, you will find information about CSI support in older Kubernetes versions.","breadcrumbs":"Archive","id":"78","title":"Archive"},"79":{"body":"Since CSI support is alpha in Kubernetes 1.9, the following flags must be set explictly: API Server binary: --allow-privileged=true\n--feature-gates=CSIPersistentVolume=true,MountPropagation=true\n--runtime-config=storage.k8s.io/v1alpha1=true Controller-manager binary --feature-gates=CSIPersistentVolume=true Kubelet --allow-privileged=true\n--feature-gates=CSIPersistentVolume=true,MountPropagation=true","breadcrumbs":"Archive » CSI with Kubernetes 1.9","id":"79","title":"CSI with Kubernetes 1.9"},"8":{"body":"To use CSI drivers, your Kubernetes cluster must allow privileged pods (i.e. --allow-privileged flag must be set to true for both the API server and the kubelet). This is the default in some environments (e.g. GCE, GKE, kubeadm ). Ensure your API server are started with the privileged flag: $ ./kube-apiserver ... --allow-privileged=true ... $ ./kubelet ... --allow-privileged=true ...","breadcrumbs":"Using a CSI Driver » Enable privileged Pods","id":"8","title":"Enable privileged Pods"},"80":{"body":"If you are a developer and are using the script cluster/kube-up.sh from the Kubernetes repo, then you can set values using the following environment variables: export KUBE_RUNTIME_CONFIG=\"storage.k8s.io/v1alpha1=true\"\nexport KUBE_FEATURE_GATES=\"MountPropagation=true,CSIPersistentVolume=true\" When using the script hack/local-up-cluster.sh , set the same variables without the KUBE_ prefix: export RUNTIME_CONFIG=\"storage.k8s.io/v1alpha1=true\"\nexport FEATURE_GATES=\"MountPropagation=true,CSIPersistentVolume=true\"","breadcrumbs":"Archive » Developers","id":"80","title":"Developers"},"81":{"body":"Once the system is up, to confirm if the runtime config has taken effect, the following command should return that there are no resources and not return an error: $ kubectl get volumeattachments To confirm that the feature gate has taken effect, submit the following fake PersistentVolume specification. If it is accepted, then we can confirm that the feature gate has been set correctly, and you may go ahead and delete it: apiVersion: v1\nkind: PersistentVolume\nmetadata: name: fakepv\nspec: capacity: storage: 1Gi accessModes: - ReadWriteMany csi: driver: fake volumeHandle: \"1\" readOnly: false","breadcrumbs":"Archive » Confirming the setup","id":"81","title":"Confirming the setup"},"82":{"body":"TBD","breadcrumbs":"Archive » CSI with Kubernetes 1.10","id":"82","title":"CSI with Kubernetes 1.10"},"9":{"body":"Another feature that CSI depends on is mount propagation. It allows the sharing of volumes mounted by one container with other containers in the same pod, or even to other pods on the same node. For mount propagation to work, the Docker daemon for the cluster must allow shared mounts. See the mount propagation docs to find out how to enable this feature for your cluster. This page explains how to check if shared mounts are enabled and how to configure Docker for shared mounts.","breadcrumbs":"Using a CSI Driver » Enabling mount propagation","id":"9","title":"Enabling mount propagation"}},"length":83,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{".":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"c":{"2":{"9":{"6":{"7":{"7":{"6":{"9":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"40":{"tf":3.3166247903554},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"8":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"t":{"1":{"3":{":":{"5":{"9":{":":{"1":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"t":{"2":{"1":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"7":{"1":{"c":{"c":{"1":{"4":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"9":{"6":{"6":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"5":{"9":{":":{"1":{"9":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"36":{"tf":2.23606797749979},"37":{"tf":2.6457513110645907},"38":{"tf":3.1622776601683795},"66":{"tf":1.4142135623730951}}},"1":{".":{"1":{"0":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"75":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"/":{"1":{"df":5,"docs":{"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":2.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"7":{"4":{"1":{"8":{"2":{"4":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0}}},"1":{"df":1,"docs":{"40":{"tf":1.0}},"e":{"8":{"df":5,"docs":{"13":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":3.3166247903554},"41":{"tf":2.0}}},"df":0,"docs":{}}},"2":{"3":{"4":{"5":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"40":{"tf":1.0}}},"4":{"df":1,"docs":{"40":{"tf":1.0}}},"5":{"3":{"8":{"5":{"7":{"6":{"2":{"0":{"5":{"4":{"7":{"1":{"5":{"7":{"7":{"5":{"2":{"5":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{":":{"5":{"0":{".":{"9":{"7":{"6":{"0":{"6":{"9":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"0":{"3":{"4":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"7":{"2":{".":{"1":{"7":{".":{"0":{".":{"5":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":8,"docs":{"13":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.7320508075688772},"66":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"81":{"tf":1.0}}}}},"2":{"/":{"2":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"8":{"df":4,"docs":{"13":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"8":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"4":{"df":1,"docs":{"40":{"tf":1.0}}},"6":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}},"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":1.0}}}},"3":{"0":{"0":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"41":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"3":{"3":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"4":{"8":{"df":1,"docs":{"37":{"tf":1.0}}},"df":1,"docs":{"44":{"tf":1.0}},"s":{"df":1,"docs":{"35":{"tf":1.0}}}},"5":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}},"s":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}},"6":{"6":{"df":1,"docs":{"38":{"tf":1.0}}},"7":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"9":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":2,"docs":{"34":{"tf":1.0},"41":{"tf":1.0}}}},"7":{"7":{"3":{"2":{"4":{"6":{"8":{"4":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"23":{"tf":1.0}}},"6":{"2":{"d":{"7":{"2":{"4":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"1":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"40":{"tf":3.1622776601683795},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"5":{"4":{"a":{"a":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"7":{"c":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"4":{"df":0,"docs":{},"e":{"9":{"7":{"df":0,"docs":{},"f":{"3":{"a":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"1":{"c":{"6":{"d":{"0":{"8":{"1":{"b":{"8":{"df":0,"docs":{},"e":{"9":{"6":{"c":{"5":{"8":{"df":0,"docs":{},"e":{"d":{"0":{"0":{"c":{"9":{"b":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"1":{"7":{"4":{"5":{"df":0,"docs":{},"e":{"8":{"9":{"b":{"2":{"5":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"4":{"5":{"0":{"5":{"4":{"3":{"7":{"df":0,"docs":{},"f":{"0":{"1":{"5":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"18":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"26":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"d":{"d":{"df":2,"docs":{"21":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":1,"docs":{"21":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":8,"docs":{"13":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":2.0},"29":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"38":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"30":{"tf":3.3166247903554},"31":{"tf":2.23606797749979},"32":{"tf":2.6457513110645907},"33":{"tf":3.1622776601683795},"41":{"tf":1.0},"60":{"tf":2.23606797749979}}}}}}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":18,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0}}}}}}},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"34":{"tf":2.0},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"38":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"43":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"v":{"1":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"3":{"tf":1.0},"31":{"tf":3.1622776601683795},"35":{"tf":3.605551275463989},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"58":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"72":{"tf":1.0}}}}},"b":{"1":{"6":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":2,"docs":{"27":{"tf":1.0},"75":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"5":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}}}},"t":{"a":{"df":4,"docs":{"16":{"tf":1.0},"2":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"47":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"10":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"27":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":2.0},"50":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"7":{"1":{"4":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"40":{"tf":3.0}}},"7":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"5":{"b":{"c":{"4":{"7":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":14,"docs":{"11":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"57":{"tf":1.0},"58":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"c":{"df":4,"docs":{"26":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":3,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.0}}}}},"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}},"f":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"25":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"27":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":10,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"60":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":1,"docs":{"65":{"tf":1.0}},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"50":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"81":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"81":{"tf":2.0}}}}}},"n":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"16":{"tf":1.0},"17":{"tf":2.0},"23":{"tf":3.7416573867739413},"27":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"10":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"62":{"tf":1.0},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"r":{"d":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"29":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"29":{"tf":2.23606797749979},"30":{"tf":2.8284271247461903},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":3.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":3.3166247903554},"40":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":3.1622776601683795},"50":{"tf":2.0},"60":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"50":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"30":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"b":{"a":{"c":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":2.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"32":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":65,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"11":{"tf":2.449489742783178},"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"16":{"tf":2.23606797749979},"17":{"tf":3.4641016151377544},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":3.872983346207417},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":3.0},"3":{"tf":1.7320508075688772},"30":{"tf":2.0},"31":{"tf":2.0},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":3.605551275463989},"35":{"tf":3.7416573867739413},"36":{"tf":3.3166247903554},"37":{"tf":4.123105625617661},"38":{"tf":5.196152422706632},"39":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":3.4641016151377544},"41":{"tf":2.449489742783178},"42":{"tf":1.0},"43":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"45":{"tf":2.6457513110645907},"46":{"tf":1.0},"48":{"tf":2.23606797749979},"5":{"tf":2.6457513110645907},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":5,"docs":{"14":{"tf":2.0},"15":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":1.0},"57":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}}}}},"t":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":10,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"40":{"tf":2.449489742783178},"41":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":10,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"20":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"1":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"51":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"7":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":8,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"36":{"tf":1.0},"59":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"o":{"c":{"df":3,"docs":{"63":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"/":{"/":{"df":0,"docs":{},"f":{"d":{"2":{"9":{"5":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"1":{"5":{"5":{"b":{"d":{"df":0,"docs":{},"f":{"0":{"8":{"d":{"1":{"d":{"a":{"3":{"4":{"1":{"c":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"a":{"a":{"0":{"d":{"1":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"e":{"a":{"a":{"a":{"d":{"6":{"9":{"5":{"0":{"a":{"9":{"4":{"6":{"3":{"5":{"5":{"7":{"8":{"9":{"6":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"df":1,"docs":{"54":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"54":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":47,"docs":{"1":{"tf":1.0},"11":{"tf":2.449489742783178},"13":{"tf":1.7320508075688772},"14":{"tf":2.8284271247461903},"16":{"tf":3.0},"17":{"tf":3.4641016151377544},"20":{"tf":2.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"27":{"tf":2.8284271247461903},"28":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"45":{"tf":2.449489742783178},"48":{"tf":2.0},"5":{"tf":2.449489742783178},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.6457513110645907},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"68":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"5":{"tf":1.0}}},"’":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"27":{"tf":1.0},"8":{"tf":1.0}}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"68":{"tf":1.0},"76":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.0},"29":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.7320508075688772},"74":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"$":{"(":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"30":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"v":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"38":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"66":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":10,"docs":{"13":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":19,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":2.0}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":2.6457513110645907},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}}}}},"f":{"5":{"5":{"d":{"b":{"6":{"3":{"2":{"df":1,"docs":{"40":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"7":{"9":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"6":{"1":{"4":{"1":{"1":{"df":0,"docs":{},"f":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"50":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"81":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"26":{"tf":1.0},"38":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.6457513110645907}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":16,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"29":{"tf":2.0},"33":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":2.0},"47":{"tf":2.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"1":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"9":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"43":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"29":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":21,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":2.449489742783178},"29":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"70":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}},"g":{"a":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}},"s":{"=":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"18":{"tf":1.0},"47":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"40":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"8":{"6":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"p":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"38":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":22,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":3.0},"20":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":3.7416573867739413},"35":{"tf":3.7416573867739413},"36":{"tf":2.8284271247461903},"37":{"tf":3.872983346207417},"38":{"tf":3.605551275463989},"39":{"tf":1.7320508075688772},"40":{"tf":3.3166247903554},"41":{"tf":2.23606797749979},"48":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"36":{"tf":2.23606797749979},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":1,"docs":{"8":{"tf":1.0}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":2.23606797749979},"57":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"n":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"78":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"16":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"23":{"tf":3.4641016151377544},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"11":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"38":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"21":{"tf":1.0},"76":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"'":{"df":0,"docs":{},"{":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"[":{"*":{"]":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"27":{"tf":2.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"30":{"tf":2.23606797749979},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":3.0},"41":{"tf":1.4142135623730951},"60":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"80":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":21,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":2.0},"40":{"tf":2.8284271247461903},"41":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.0},"74":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}},"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":2.0},"18":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"7":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":43,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"13":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"57":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"6":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"33":{"tf":3.0},"5":{"tf":1.0},"60":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"50":{"tf":1.0},"75":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"25":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"66":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"54":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"17":{"tf":2.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"18":{"tf":1.0},"66":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"66":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"43":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"17":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"22":{"tf":1.4142135623730951},"43":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.6457513110645907}}}},"d":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"17":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"5":{"tf":1.0}},"l":{"df":2,"docs":{"25":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.0}}}}}}}}}},"df":12,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"23":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"74":{"tf":2.0},"9":{"tf":2.8284271247461903}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"29":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"24":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":2.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":2.449489742783178},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.4641016151377544},"3":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":2.8284271247461903},"35":{"tf":2.8284271247461903},"36":{"tf":3.7416573867739413},"37":{"tf":2.8284271247461903},"38":{"tf":3.1622776601683795},"39":{"tf":2.0},"40":{"tf":3.872983346207417},"41":{"tf":2.0},"57":{"tf":2.23606797749979},"59":{"tf":2.0},"60":{"tf":1.0},"66":{"tf":2.23606797749979},"81":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":9,"docs":{"13":{"tf":1.0},"27":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"20":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"23":{"tf":1.0}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":2.0},"41":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"f":{"df":2,"docs":{"22":{"tf":1.0},"62":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"14":{"tf":2.23606797749979},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}},"i":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"14":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":3.0},"36":{"tf":1.0},"74":{"tf":1.0}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"13":{"tf":1.7320508075688772},"38":{"tf":2.6457513110645907},"39":{"tf":1.7320508075688772},"40":{"tf":3.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"21":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688772},"27":{"tf":2.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":1,"docs":{"39":{"tf":1.0}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":4,"docs":{"16":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0},"81":{"tf":1.0}}},"df":3,"docs":{"54":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"51":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":7,"docs":{"11":{"tf":1.0},"17":{"tf":2.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"66":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"27":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":3.872983346207417},"66":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"30":{"tf":1.0},"33":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":3.0},"18":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"59":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"d":{"df":2,"docs":{"27":{"tf":3.0},"45":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"26":{"tf":2.0},"27":{"tf":3.3166247903554},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"27":{"tf":3.0},"30":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":16,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"52":{"tf":1.0}},"g":{"df":1,"docs":{"23":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"32":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}}}},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":15,"docs":{"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":2.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":2.23606797749979},"38":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":2,"docs":{"23":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"16":{"tf":1.0},"19":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"8":{"tf":2.0}},"e":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"41":{"tf":1.0},"76":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":7,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":2.6457513110645907},"28":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"27":{"tf":2.8284271247461903},"3":{"tf":1.0},"30":{"tf":3.1622776601683795},"34":{"tf":3.605551275463989},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{":":{"2":{"a":{"0":{"3":{"a":{"6":{"0":{"5":{"9":{"df":0,"docs":{},"f":{"2":{"1":{"df":0,"docs":{},"e":{"1":{"5":{"0":{"a":{"df":0,"docs":{},"e":{"8":{"4":{"b":{"0":{"9":{"7":{"3":{"8":{"6":{"3":{"6":{"0":{"9":{"4":{"9":{"4":{"a":{"a":{"d":{"7":{"0":{"df":0,"docs":{},"f":{"0":{"a":{"8":{"0":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"6":{"4":{"b":{"d":{"d":{"d":{"8":{"d":{"9":{"2":{"4":{"6":{"5":{"8":{"1":{"2":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"38":{"tf":2.0}}}}},"v":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"[":{"'":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":2.6457513110645907},"49":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903}}},"df":3,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"o":{"df":1,"docs":{"38":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}},"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"df":5,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.0}},"e":{"a":{"d":{"df":6,"docs":{"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"y":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"48":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"38":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"2":{"0":{"5":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":3,"docs":{"13":{"tf":1.7320508075688772},"17":{"tf":1.0},"57":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"v":{"0":{".":{"2":{".":{"0":{"df":2,"docs":{"17":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":2.8284271247461903},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":2.0}}}},"df":3,"docs":{"16":{"tf":2.449489742783178},"17":{"tf":2.6457513110645907},"36":{"tf":2.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"16":{"tf":1.0},"27":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"21":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"27":{"tf":2.0},"38":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":2.0},"27":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":17,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"33":{"tf":3.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"75":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"27":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979}},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}},"o":{"df":1,"docs":{"38":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"60":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772}}}}},"p":{"c":{"df":2,"docs":{"45":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"76":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":2.0},"38":{"tf":2.6457513110645907},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"38":{"tf":1.0}},"o":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":2.0}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"27":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"22":{"tf":2.23606797749979},"43":{"tf":1.0},"45":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"22":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"38":{"tf":2.449489742783178},"41":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"66":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":2.6457513110645907},"30":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"78":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"n":{"d":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":7,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"i":{"c":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"df":8,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":2.23606797749979},"29":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":11,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.0},"66":{"tf":2.0},"70":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"14":{"tf":1.0},"28":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"58":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":2.23606797749979},"3":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"40":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"30":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":12,"docs":{"18":{"tf":1.7320508075688772},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":4.123105625617661},"41":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"56":{"tf":1.0}},"t":{"df":7,"docs":{"33":{"tf":3.3166247903554},"37":{"tf":3.7416573867739413},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.4142135623730951},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":3,"docs":{"17":{"tf":2.23606797749979},"18":{"tf":1.0},"27":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}}},"s":{"d":{"df":1,"docs":{"27":{"tf":3.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"38":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"48":{"tf":1.0},"62":{"tf":1.0}}}}}}}}},"u":{"df":13,"docs":{"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"14":{"tf":1.4142135623730951},"23":{"tf":5.196152422706632},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.1622776601683795},"28":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.7320508075688772},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"27":{"tf":3.4641016151377544},"30":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"60":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"27":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0}}}},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.0}},"n":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}}},"b":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"27":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":16,"docs":{"22":{"tf":1.0},"24":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"38":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"1":{"5":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"0":{"5":{"7":{"4":{"8":{"5":{"a":{"b":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}},"p":{"df":1,"docs":{"5":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":2,"docs":{"50":{"tf":1.0},"7":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"27":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"41":{"tf":1.0},"73":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"8":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"17":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":2.0},"59":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"44":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"11":{"tf":1.0}}}},"t":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"x":{":":{"/":{"/":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":2.0}}}},"df":0,"docs":{}},"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"38":{"tf":1.0},"5":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":32,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"v":{"0":{".":{"0":{".":{"1":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"3":{".":{"0":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":2.0}}},"4":{".":{"1":{"df":1,"docs":{"3":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"0":{"df":2,"docs":{"2":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"2":{"tf":1.0}}},"2":{"df":4,"docs":{"18":{"tf":1.0},"29":{"tf":2.0},"47":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":17,"docs":{"11":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"81":{"tf":1.0}}},"=":{"5":{"df":4,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":11,"docs":{"11":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.7320508075688772},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"36":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":3,"docs":{"36":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":1.7320508075688772},"57":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"b":{"df":5,"docs":{"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"33":{"tf":3.0},"60":{"tf":2.23606797749979}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":3.1622776601683795},"6":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"f":{"df":1,"docs":{"22":{"tf":1.0}}},"i":{"a":{"df":2,"docs":{"16":{"tf":1.0},"27":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":25,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":3.4641016151377544},"39":{"tf":1.4142135623730951},"40":{"tf":2.6457513110645907},"41":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"54":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"33":{"tf":1.0},"40":{"tf":2.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"30":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"29":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"30":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"50":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"30":{"tf":2.6457513110645907},"31":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":2.8284271247461903},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.23606797749979},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"24":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"72":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"9":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"39":{"tf":1.7320508075688772},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"54":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}},"breadcrumbs":{"root":{"0":{".":{"1":{".":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"c":{"2":{"9":{"6":{"7":{"7":{"6":{"9":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"40":{"tf":3.3166247903554},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"8":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"t":{"1":{"3":{":":{"5":{"9":{":":{"1":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"t":{"2":{"1":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"7":{"1":{"c":{"c":{"1":{"4":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"9":{"6":{"6":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"5":{"9":{":":{"1":{"9":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"36":{"tf":2.23606797749979},"37":{"tf":2.6457513110645907},"38":{"tf":3.1622776601683795},"66":{"tf":1.4142135623730951}}},"1":{".":{"1":{"0":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"75":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"/":{"1":{"df":5,"docs":{"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":2.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"7":{"4":{"1":{"8":{"2":{"4":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0}}},"1":{"df":1,"docs":{"40":{"tf":1.0}},"e":{"8":{"df":5,"docs":{"13":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":3.3166247903554},"41":{"tf":2.0}}},"df":0,"docs":{}}},"2":{"3":{"4":{"5":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"40":{"tf":1.0}}},"4":{"df":1,"docs":{"40":{"tf":1.0}}},"5":{"3":{"8":{"5":{"7":{"6":{"2":{"0":{"5":{"4":{"7":{"1":{"5":{"7":{"7":{"5":{"2":{"5":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{":":{"5":{"0":{".":{"9":{"7":{"6":{"0":{"6":{"9":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"0":{"3":{"4":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"7":{"2":{".":{"1":{"7":{".":{"0":{".":{"5":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":8,"docs":{"13":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.7320508075688772},"66":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"81":{"tf":1.0}}}}},"2":{"/":{"2":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"8":{"df":4,"docs":{"13":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"8":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"4":{"df":1,"docs":{"40":{"tf":1.0}}},"6":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}},"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":1.0}}}},"3":{"0":{"0":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"41":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"3":{"3":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"4":{"8":{"df":1,"docs":{"37":{"tf":1.0}}},"df":1,"docs":{"44":{"tf":1.0}},"s":{"df":1,"docs":{"35":{"tf":1.0}}}},"5":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}},"s":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}},"6":{"6":{"df":1,"docs":{"38":{"tf":1.0}}},"7":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"9":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":2,"docs":{"34":{"tf":1.0},"41":{"tf":1.0}}}},"7":{"7":{"3":{"2":{"4":{"6":{"8":{"4":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"23":{"tf":1.0}}},"6":{"2":{"d":{"7":{"2":{"4":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"1":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"40":{"tf":3.1622776601683795},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"5":{"4":{"a":{"a":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"7":{"c":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"4":{"df":0,"docs":{},"e":{"9":{"7":{"df":0,"docs":{},"f":{"3":{"a":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"1":{"c":{"6":{"d":{"0":{"8":{"1":{"b":{"8":{"df":0,"docs":{},"e":{"9":{"6":{"c":{"5":{"8":{"df":0,"docs":{},"e":{"d":{"0":{"0":{"c":{"9":{"b":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"1":{"7":{"4":{"5":{"df":0,"docs":{},"e":{"8":{"9":{"b":{"2":{"5":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"4":{"5":{"0":{"5":{"4":{"3":{"7":{"df":0,"docs":{},"f":{"0":{"1":{"5":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"18":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"26":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"d":{"d":{"df":2,"docs":{"21":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":1,"docs":{"21":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":8,"docs":{"13":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":10,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":2.0},"29":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"38":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"30":{"tf":3.3166247903554},"31":{"tf":2.23606797749979},"32":{"tf":2.6457513110645907},"33":{"tf":3.1622776601683795},"41":{"tf":1.0},"60":{"tf":2.23606797749979}}}}}}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":18,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0}}}}}}},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"34":{"tf":2.0},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"38":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"43":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"v":{"1":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"3":{"tf":1.0},"31":{"tf":3.3166247903554},"35":{"tf":3.7416573867739413},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"58":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.7320508075688772}},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"72":{"tf":1.0}}}}},"b":{"1":{"6":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":2,"docs":{"27":{"tf":1.0},"75":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"5":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}}}},"t":{"a":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"47":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"10":{"tf":2.0},"23":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"27":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":2.0},"50":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"7":{"1":{"4":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"40":{"tf":3.0}}},"7":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"5":{"b":{"c":{"4":{"7":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":14,"docs":{"11":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"57":{"tf":1.0},"58":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"c":{"df":4,"docs":{"26":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":3,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.0}}}}},"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}},"f":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"25":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"27":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":10,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"60":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":1,"docs":{"65":{"tf":1.0}},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"50":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"76":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"81":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":2.23606797749979},"18":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979}}}}}},"n":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"16":{"tf":1.0},"17":{"tf":2.0},"23":{"tf":3.7416573867739413},"27":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"10":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"62":{"tf":1.0},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"r":{"d":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"29":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"29":{"tf":2.23606797749979},"30":{"tf":3.0},"31":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"33":{"tf":3.1622776601683795},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":3.3166247903554},"40":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":3.1622776601683795},"50":{"tf":2.0},"60":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"50":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"30":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"b":{"a":{"c":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":2.23606797749979},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"32":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":75,"docs":{"1":{"tf":2.0},"10":{"tf":1.4142135623730951},"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"13":{"tf":2.23606797749979},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":2.6457513110645907},"17":{"tf":3.605551275463989},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"23":{"tf":4.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"27":{"tf":3.1622776601683795},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":2.449489742783178},"31":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"33":{"tf":2.6457513110645907},"34":{"tf":3.872983346207417},"35":{"tf":4.0},"36":{"tf":3.605551275463989},"37":{"tf":4.358898943540674},"38":{"tf":5.291502622129181},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":3.605551275463989},"41":{"tf":2.6457513110645907},"42":{"tf":1.0},"43":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"45":{"tf":2.8284271247461903},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.6457513110645907},"49":{"tf":1.0},"5":{"tf":2.8284271247461903},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.6457513110645907},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":5,"docs":{"14":{"tf":2.23606797749979},"15":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"57":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"36":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}}}}},"t":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":10,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"40":{"tf":2.449489742783178},"41":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":2.0},"5":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":10,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"20":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":34,"docs":{"1":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"7":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":8,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"36":{"tf":1.0},"59":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"o":{"c":{"df":3,"docs":{"63":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"/":{"/":{"df":0,"docs":{},"f":{"d":{"2":{"9":{"5":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"1":{"5":{"5":{"b":{"d":{"df":0,"docs":{},"f":{"0":{"8":{"d":{"1":{"d":{"a":{"3":{"4":{"1":{"c":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"a":{"a":{"0":{"d":{"1":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"e":{"a":{"a":{"a":{"d":{"6":{"9":{"5":{"0":{"a":{"9":{"4":{"6":{"3":{"5":{"5":{"7":{"8":{"9":{"6":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"df":1,"docs":{"54":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"54":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":68,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"13":{"tf":2.23606797749979},"14":{"tf":3.0},"15":{"tf":1.0},"16":{"tf":3.3166247903554},"17":{"tf":3.605551275463989},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":2.23606797749979},"21":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"23":{"tf":2.6457513110645907},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"27":{"tf":3.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.8284271247461903},"44":{"tf":1.0},"45":{"tf":2.6457513110645907},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"5":{"tf":2.6457513110645907},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.8284271247461903},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"68":{"tf":2.23606797749979},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"5":{"tf":1.0}}},"’":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"25":{"tf":1.0},"27":{"tf":2.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"27":{"tf":1.0},"8":{"tf":1.0}}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"68":{"tf":1.0},"76":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"18":{"tf":1.0},"29":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.7320508075688772},"52":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":2.0},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":2.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"$":{"(":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"30":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"v":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"38":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"66":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":10,"docs":{"13":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":19,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":2.0}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772}}}}}}}},"f":{"5":{"5":{"d":{"b":{"6":{"3":{"2":{"df":1,"docs":{"40":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"7":{"9":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"6":{"1":{"4":{"1":{"1":{"df":0,"docs":{},"f":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"50":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"81":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"26":{"tf":1.0},"38":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.6457513110645907}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":16,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"29":{"tf":2.0},"33":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":2.23606797749979},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":2.449489742783178},"79":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"1":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"75":{"tf":1.7320508075688772},"78":{"tf":1.0},"9":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"43":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"29":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":21,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":2.449489742783178},"29":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"70":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}},"g":{"a":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951}},"s":{"=":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"18":{"tf":1.0},"47":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"40":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"8":{"6":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"p":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"38":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":22,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":3.0},"20":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":3.7416573867739413},"35":{"tf":3.7416573867739413},"36":{"tf":3.0},"37":{"tf":3.872983346207417},"38":{"tf":3.605551275463989},"39":{"tf":1.7320508075688772},"40":{"tf":3.3166247903554},"41":{"tf":2.23606797749979},"48":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"36":{"tf":2.23606797749979},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":1,"docs":{"8":{"tf":1.0}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":2.23606797749979},"57":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"n":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"72":{"tf":1.0},"78":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"16":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"23":{"tf":3.4641016151377544},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"11":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"38":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"21":{"tf":1.0},"76":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"'":{"df":0,"docs":{},"{":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"[":{"*":{"]":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"27":{"tf":2.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"30":{"tf":2.23606797749979},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":3.0},"41":{"tf":1.4142135623730951},"60":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"80":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":21,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":2.0},"40":{"tf":2.8284271247461903},"41":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.0},"74":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}},"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.23606797749979},"7":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":43,"docs":{"1":{"tf":2.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"13":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"57":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"6":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"33":{"tf":3.0},"5":{"tf":1.0},"60":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"50":{"tf":1.0},"75":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"25":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"66":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"54":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"17":{"tf":2.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"18":{"tf":1.0},"66":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"66":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"43":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"17":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"22":{"tf":1.4142135623730951},"43":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903}}}},"d":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"17":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"5":{"tf":1.0}},"l":{"df":2,"docs":{"25":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"72":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.0}}}}}}}}}},"df":12,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"23":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"74":{"tf":2.0},"9":{"tf":3.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"29":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"24":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":2.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":2.449489742783178},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.4641016151377544},"3":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":2.8284271247461903},"35":{"tf":2.8284271247461903},"36":{"tf":3.7416573867739413},"37":{"tf":2.8284271247461903},"38":{"tf":3.1622776601683795},"39":{"tf":2.0},"40":{"tf":3.872983346207417},"41":{"tf":2.0},"57":{"tf":2.23606797749979},"59":{"tf":2.0},"60":{"tf":1.0},"66":{"tf":2.23606797749979},"81":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":9,"docs":{"13":{"tf":1.0},"27":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"20":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"23":{"tf":1.0}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":2.0},"41":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"f":{"df":2,"docs":{"22":{"tf":1.0},"62":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"14":{"tf":2.23606797749979},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"14":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":3.0},"36":{"tf":1.0},"74":{"tf":1.0}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"13":{"tf":1.7320508075688772},"38":{"tf":2.6457513110645907},"39":{"tf":1.7320508075688772},"40":{"tf":3.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"21":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688772},"27":{"tf":2.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":1,"docs":{"39":{"tf":1.0}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":4,"docs":{"16":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0},"81":{"tf":1.0}}},"df":3,"docs":{"54":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"51":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":7,"docs":{"11":{"tf":1.0},"17":{"tf":2.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"66":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"27":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":3.872983346207417},"66":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"30":{"tf":1.0},"33":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":3.0},"18":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"59":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"d":{"df":2,"docs":{"27":{"tf":3.0},"45":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"26":{"tf":2.0},"27":{"tf":3.3166247903554},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"27":{"tf":3.0},"30":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":16,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"52":{"tf":1.0}},"g":{"df":1,"docs":{"23":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}}},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":15,"docs":{"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":2.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"59":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":2.23606797749979},"38":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":2,"docs":{"23":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.0},"26":{"tf":2.0},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"16":{"tf":1.0},"19":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"8":{"tf":2.23606797749979}},"e":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"41":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":7,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":2.8284271247461903},"28":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"27":{"tf":2.8284271247461903},"3":{"tf":1.0},"30":{"tf":3.3166247903554},"34":{"tf":3.7416573867739413},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{":":{"2":{"a":{"0":{"3":{"a":{"6":{"0":{"5":{"9":{"df":0,"docs":{},"f":{"2":{"1":{"df":0,"docs":{},"e":{"1":{"5":{"0":{"a":{"df":0,"docs":{},"e":{"8":{"4":{"b":{"0":{"9":{"7":{"3":{"8":{"6":{"3":{"6":{"0":{"9":{"4":{"9":{"4":{"a":{"a":{"d":{"7":{"0":{"df":0,"docs":{},"f":{"0":{"a":{"8":{"0":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"6":{"4":{"b":{"d":{"d":{"d":{"8":{"d":{"9":{"2":{"4":{"6":{"5":{"8":{"1":{"2":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"38":{"tf":2.0}}}}},"v":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"[":{"'":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":2.6457513110645907},"49":{"tf":1.4142135623730951},"50":{"tf":3.0}}},"df":3,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"o":{"df":1,"docs":{"38":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":2.0}}}},"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"df":5,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.0}},"e":{"a":{"d":{"df":6,"docs":{"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"y":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"48":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"38":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"2":{"0":{"5":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":3,"docs":{"13":{"tf":2.0},"17":{"tf":1.0},"57":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"v":{"0":{".":{"2":{".":{"0":{"df":2,"docs":{"17":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":3.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"53":{"tf":1.0},"57":{"tf":2.23606797749979}}}},"df":3,"docs":{"16":{"tf":2.449489742783178},"17":{"tf":2.6457513110645907},"36":{"tf":2.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"16":{"tf":1.0},"27":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"21":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"27":{"tf":2.0},"38":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":2.0},"27":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"33":{"tf":3.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"44":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"75":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"27":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.4142135623730951},"41":{"tf":2.449489742783178}},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}},"o":{"df":1,"docs":{"38":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"60":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":2.0}}}}},"p":{"c":{"df":2,"docs":{"45":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":2.0},"60":{"tf":2.0},"76":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":2.0},"38":{"tf":2.6457513110645907},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"38":{"tf":1.0}},"o":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":2.0}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"27":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"22":{"tf":2.449489742783178},"43":{"tf":1.0},"45":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"22":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.449489742783178}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"38":{"tf":2.449489742783178},"41":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"66":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":2.6457513110645907},"30":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"78":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"n":{"d":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":7,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"i":{"c":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"df":8,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":2.23606797749979},"29":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":11,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"66":{"tf":2.0},"70":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"14":{"tf":1.0},"28":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"58":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"40":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"30":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":12,"docs":{"18":{"tf":1.7320508075688772},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":4.242640687119285},"41":{"tf":2.0},"45":{"tf":2.23606797749979},"46":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"56":{"tf":1.0}},"t":{"df":7,"docs":{"33":{"tf":3.4641016151377544},"37":{"tf":3.872983346207417},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.4142135623730951},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":3,"docs":{"17":{"tf":2.23606797749979},"18":{"tf":1.0},"27":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}}},"s":{"d":{"df":1,"docs":{"27":{"tf":3.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"38":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"48":{"tf":1.0},"62":{"tf":1.0}}}}}}}}},"u":{"df":13,"docs":{"2":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"14":{"tf":1.4142135623730951},"23":{"tf":5.196152422706632},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.1622776601683795},"28":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.7320508075688772},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"27":{"tf":3.4641016151377544},"30":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"60":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"27":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":2.0},"14":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0}}}},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.0}},"n":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}}},"b":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"27":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"22":{"tf":1.0},"24":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":3.1622776601683795},"66":{"tf":3.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"70":{"tf":3.0},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"38":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"1":{"5":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"0":{"5":{"7":{"4":{"8":{"5":{"a":{"b":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}},"p":{"df":1,"docs":{"5":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":2,"docs":{"50":{"tf":1.0},"7":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"27":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"41":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"8":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"17":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":2.0},"59":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"44":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"11":{"tf":1.0}}}},"t":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"x":{":":{"/":{"/":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":2.0}}}},"df":0,"docs":{}},"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":49,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":2.0},"17":{"tf":2.23606797749979},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.23606797749979},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"v":{"0":{".":{"0":{".":{"1":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"3":{".":{"0":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":2.0}}},"4":{".":{"1":{"df":1,"docs":{"3":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"0":{"df":2,"docs":{"2":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"2":{"tf":1.0}}},"2":{"df":4,"docs":{"18":{"tf":1.0},"29":{"tf":2.0},"47":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":17,"docs":{"11":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"81":{"tf":1.0}}},"=":{"5":{"df":4,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":11,"docs":{"11":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.7320508075688772},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"36":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":3,"docs":{"36":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":1.7320508075688772},"57":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"b":{"df":5,"docs":{"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"33":{"tf":3.0},"60":{"tf":2.23606797749979}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":3.1622776601683795},"6":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"f":{"df":1,"docs":{"22":{"tf":1.0}}},"i":{"a":{"df":2,"docs":{"16":{"tf":1.0},"27":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":25,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":3.4641016151377544},"39":{"tf":1.4142135623730951},"40":{"tf":2.6457513110645907},"41":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"54":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.7320508075688772},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"33":{"tf":1.0},"40":{"tf":2.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"30":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"29":{"tf":1.0},"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"30":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"50":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"30":{"tf":2.6457513110645907},"31":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":2.8284271247461903},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.23606797749979},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"24":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"72":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"9":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"39":{"tf":1.7320508075688772},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"54":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}},"title":{"root":{"1":{".":{"1":{"0":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"19":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"31":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"81":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"df":19,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":9,"docs":{"20":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"63":{"tf":1.0},"67":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"63":{"tf":1.0},"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"9":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0}}}}}}},"o":{"d":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"30":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.0}}}}}}}}}},"v":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}},"b":{"a":{"c":{"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"39":{"tf":1.0},"6":{"tf":1.0},"81":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0}},"t":{"df":4,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}}}}}},"u":{"df":3,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"24":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"25":{"tf":1.0},"38":{"tf":1.0}}}},"df":1,"docs":{"5":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}; \ No newline at end of file +window.search = {"doc_urls":["Home.html#introduction","Home.html#kubernetes-csi-documentation","Home.html#project-status","Home.html#sidecar-container-status","Home.html#installation","UsingCSIDriver.html#using-csi-drivers","Setup.html#setup","Setup.html#enabling-features","Setup.html#enable-privileged-pods","Setup.html#enabling-mount-propagation","Setup.html#enable-raw-block-volume-support-alpha","Setup.html#csidriver-custom-resource-alpha","Setup.html#enabling-csidriver","Setup.html#listing-registered-csi-drivers","Setup.html#csinodeinfo-custom-resource-alpha","Setup.html#enabling-csinodeinfo","Setup.html#csi-driver-discovery-beta","Setup.html#registrar-sidecar-configuration","Setup.html#the-kubelet-root-directory","Setup.html#topology-alpha","Setup.html#archives","Deployment.html#deployment","Drivers.html#drivers","Drivers.html#sample-drivers","Drivers.html#production-drivers","Drivers.html#testing","Usage.html#usage","Usage.html#pre-provisioned-volumes","Usage.html#dynamic-provisioning","Example.html#example","Example.html#deployment","Example.html#create-rbac-rules-for-csi-provisioner","Example.html#create-rbac-rules-for-csi-attacher","Example.html#create-rbac-rules-for-node-plugin","Example.html#create-rbac-rules-for-csi-snapshotter","Example.html#deploy-csi-provisioner-in-statefulset-pod","Example.html#deploy-csi-attacher-in-statefulset-pod","Example.html#deploy-driver-registrar-and-hostpath-csi-plugin-in-daemonset-pod","Example.html#deploy-csi-snapshotter-in-statefulset-pod","Example.html#usage","Example.html#confirming-the-setup","Example.html#snapshot-support","Example.html#restore-volume-from-snapshot-support","Development.html#development","CSI-Driver.html#developing-a-csi-driver","CSI-Driver.html#other-resources","Implement-Snapshot-Feature.html#implement-snapshot-feature","Implement-Snapshot-Feature.html#snapshot-apis","Implement-Snapshot-Feature.html#enable-volumesnapshotdatasource-feature-gate","Implement-Snapshot-Feature.html#deploy-external-snapshotter-with-csi-driver","Implement-Snapshot-Feature.html#test-snapshot-feature","Implement-Snapshot-Feature.html#pvc-not-bound","CSI-Kubernetes.html#deploying-in-kubernetes","CSI-Kubernetes.html#overview","CSI-Kubernetes.html#sidecar-containers","CSI-Kubernetes.html#external-attacher","CSI-Kubernetes.html#external-provisioner","CSI-Kubernetes.html#external-snapshotter","CSI-Kubernetes.html#driver-registrar","CSI-Kubernetes.html#kubelet","CSI-Kubernetes.html#mount-point","CSI-Kubernetes.html#rbac-rules","CSI-Kubernetes.html#deploying","CSI-Kubernetes.html#examples","CSI-Kubernetes.html#more-information","Testing.html#testing","Testing-Clients.html#testing-csi-clients","Testing-Clients.html#csi-test-unit-test-mock-driver","Testing-Clients.html#more-information","Testing-Clients.html#hostpath-driver","Testing-Drivers.html#testing-csi-drivers","Testing-Drivers.html#unit-testing","Testing-Drivers.html#functional-testing","Testing-Drivers.html#csi-sanity","Troubleshooting.html#troubleshooting","Troubleshooting.html#node-plugin-pod-does-not-start-with--runcontainererror--status","Troubleshooting.html#external-attacher-cant-find--volumeattachments","Troubleshooting.html#problems-with-the-external-components","References.html#references","Archive.html#archive","Kubernetes-1.9.html#csi-with-kubernetes-19","Kubernetes-1.9.html#developers","Kubernetes-1.9.html#confirming-the-setup","Kubernetes-1.10.html#csi-with-kubernetes-110"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":1,"title":1},"1":{"body":15,"breadcrumbs":3,"title":3},"10":{"body":32,"breadcrumbs":9,"title":6},"11":{"body":129,"breadcrumbs":7,"title":4},"12":{"body":28,"breadcrumbs":5,"title":2},"13":{"body":73,"breadcrumbs":7,"title":4},"14":{"body":87,"breadcrumbs":7,"title":4},"15":{"body":28,"breadcrumbs":5,"title":2},"16":{"body":83,"breadcrumbs":7,"title":4},"17":{"body":273,"breadcrumbs":6,"title":3},"18":{"body":48,"breadcrumbs":6,"title":3},"19":{"body":42,"breadcrumbs":5,"title":2},"2":{"body":13,"breadcrumbs":2,"title":2},"20":{"body":8,"breadcrumbs":4,"title":1},"21":{"body":24,"breadcrumbs":4,"title":1},"22":{"body":17,"breadcrumbs":4,"title":1},"23":{"body":40,"breadcrumbs":5,"title":2},"24":{"body":170,"breadcrumbs":5,"title":2},"25":{"body":10,"breadcrumbs":4,"title":1},"26":{"body":24,"breadcrumbs":4,"title":1},"27":{"body":68,"breadcrumbs":6,"title":3},"28":{"body":350,"breadcrumbs":5,"title":2},"29":{"body":14,"breadcrumbs":4,"title":1},"3":{"body":22,"breadcrumbs":3,"title":3},"30":{"body":56,"breadcrumbs":4,"title":1},"31":{"body":131,"breadcrumbs":8,"title":5},"32":{"body":90,"breadcrumbs":8,"title":5},"33":{"body":99,"breadcrumbs":8,"title":5},"34":{"body":142,"breadcrumbs":8,"title":5},"35":{"body":125,"breadcrumbs":8,"title":5},"36":{"body":130,"breadcrumbs":8,"title":5},"37":{"body":167,"breadcrumbs":11,"title":8},"38":{"body":157,"breadcrumbs":8,"title":5},"39":{"body":431,"breadcrumbs":4,"title":1},"4":{"body":9,"breadcrumbs":1,"title":1},"40":{"body":100,"breadcrumbs":5,"title":2},"41":{"body":337,"breadcrumbs":5,"title":2},"42":{"body":135,"breadcrumbs":7,"title":4},"43":{"body":8,"breadcrumbs":1,"title":1},"44":{"body":35,"breadcrumbs":4,"title":3},"45":{"body":24,"breadcrumbs":2,"title":1},"46":{"body":53,"breadcrumbs":7,"title":3},"47":{"body":21,"breadcrumbs":6,"title":2},"48":{"body":19,"breadcrumbs":8,"title":4},"49":{"body":58,"breadcrumbs":9,"title":5},"5":{"body":44,"breadcrumbs":3,"title":3},"50":{"body":39,"breadcrumbs":7,"title":3},"51":{"body":46,"breadcrumbs":6,"title":2},"52":{"body":10,"breadcrumbs":3,"title":2},"53":{"body":26,"breadcrumbs":2,"title":1},"54":{"body":18,"breadcrumbs":3,"title":2},"55":{"body":73,"breadcrumbs":3,"title":2},"56":{"body":22,"breadcrumbs":3,"title":2},"57":{"body":23,"breadcrumbs":3,"title":2},"58":{"body":67,"breadcrumbs":3,"title":2},"59":{"body":42,"breadcrumbs":2,"title":1},"6":{"body":21,"breadcrumbs":4,"title":1},"60":{"body":41,"breadcrumbs":3,"title":2},"61":{"body":62,"breadcrumbs":3,"title":2},"62":{"body":13,"breadcrumbs":2,"title":1},"63":{"body":25,"breadcrumbs":2,"title":1},"64":{"body":10,"breadcrumbs":3,"title":2},"65":{"body":7,"breadcrumbs":2,"title":1},"66":{"body":49,"breadcrumbs":5,"title":3},"67":{"body":111,"breadcrumbs":8,"title":6},"68":{"body":11,"breadcrumbs":4,"title":2},"69":{"body":21,"breadcrumbs":4,"title":2},"7":{"body":29,"breadcrumbs":5,"title":2},"70":{"body":13,"breadcrumbs":5,"title":3},"71":{"body":52,"breadcrumbs":4,"title":2},"72":{"body":7,"breadcrumbs":4,"title":2},"73":{"body":27,"breadcrumbs":4,"title":2},"74":{"body":0,"breadcrumbs":1,"title":1},"75":{"body":31,"breadcrumbs":6,"title":6},"76":{"body":50,"breadcrumbs":5,"title":5},"77":{"body":30,"breadcrumbs":3,"title":3},"78":{"body":8,"breadcrumbs":1,"title":1},"79":{"body":8,"breadcrumbs":1,"title":1},"8":{"body":37,"breadcrumbs":6,"title":3},"80":{"body":28,"breadcrumbs":4,"title":3},"81":{"body":32,"breadcrumbs":2,"title":1},"82":{"body":55,"breadcrumbs":3,"title":2},"83":{"body":1,"breadcrumbs":4,"title":3},"9":{"body":47,"breadcrumbs":6,"title":3}},"docs":{"0":{"body":"","breadcrumbs":"Introduction","id":"0","title":"Introduction"},"1":{"body":"Welcome to the CSI for Kubernetes documentation repository. Here you will find information on how to use, develop, and deploy CSI plugins, or drivers, with Kubernetes.","breadcrumbs":"Kubernetes CSI Documentation","id":"1","title":"Kubernetes CSI Documentation"},"10":{"body":"Kubernetes now has raw block volume Support as an alpha implementation. If you want to use the CSI raw block volume support , you must enable the feature (for your Kubernetes binaries including server, kubelet, controller manager, etc) with the feature-gates flag as follow: $ kube --feature-gates=BlockVolume=true,CSIBlockVolume=true ...","breadcrumbs":"Using a CSI Driver » Enable raw block volume support (alpha)","id":"10","title":"Enable raw block volume support (alpha)"},"11":{"body":"Starting with version 1.12, the CSIDriver custom resource definition (or CRD) has been introduced as a way to represent the CSI drivers running in a cluster. An admin can update the attributes of this object to modify the configuration of its associated driver at runtime. You can see the full definition of this CRD here . The alpha release of CSIDriver exposes three main configuration settings: apiVersion: v1\nitems:\n- apiVersion: csi.storage.k8s.io/v1alpha1 kind: CSIDriver metadata: name: csi-hostpath spec: attachRequired: true podInfoOnMountVersion: \"v1\" Where: metadata:name - the identifying name of the CSI driver. That name must be unique in the cluster as it is the name that is used to identify the CSI cluster. attachRequired - indicates that the CSI volume driver requires a volume attach operation. This will cause Kubernetes to call make a CSI.ControllerPublishVolume() call and wait for completion before proceeding to mount. podInfoOnMountVersion - this value indicates that the associated CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount. Leave value empty if you do not want pod info to be transmitted. Or, provide a value of v1 which will cause the Kubelet to send the followings pod information during NodePublishVolume() calls to the driver as VolumeAttributes : csi.storage.k8s.io/pod.name: pod.Name\ncsi.storage.k8s.io/pod.namespace: pod.Namespace\ncsi.storage.k8s.io/pod.uid: string(pod.UID)","breadcrumbs":"Using a CSI Driver » CSIDriver custom resource (alpha)","id":"11","title":"CSIDriver custom resource (alpha)"},"12":{"body":"If you want to use the CSIDriver CRD and get a preview of how configuration will work at runtime, do the followings: Ensure the feature gate is enabled with --feature-gates=CSIDriverRegistry=true Install the CSIDriver CRD on the Kubernetes cluster with the following command: $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml --validate=false","breadcrumbs":"Using a CSI Driver » Enabling CSIDriver","id":"12","title":"Enabling CSIDriver"},"13":{"body":"Using the CSIDriver CRD, it is now possible to query Kubernetes to get a list of registered drivers running in the cluster as shown below: $> kubectl get csidrivers.csi.storage.k8s.io\nNAME AGE\ncsi-hostpath 2m Or get a more detail view of your registered driver with: $> kubectl describe csidrivers.csi.storage.k8s.io\nName: csi-hostpath\nNamespace:\nLabels: \nAnnotations: \nAPI Version: csi.storage.k8s.io/v1alpha1\nKind: CSIDriver\nMetadata: Creation Timestamp: 2018-10-04T21:15:30Z Generation: 1 Resource Version: 390 Self Link: /apis/csi.storage.k8s.io/v1alpha1/csidrivers/csi-hostpath UID: 9f854aa6-c81a-11e8-bdce-000c29e88ff1\nSpec: Attach Required: true Pod Info On Mount Version:\nEvents: ","breadcrumbs":"Using a CSI Driver » Listing registered CSI drivers","id":"13","title":"Listing registered CSI drivers"},"14":{"body":"Object CSINodeInfo is a resource designed to carry binding information between a CSI driver and a cluster node where its volume storage will land. In the first release, object CSINodeInfo is used to establish the link between a node, its driver, and the topology keys used for scheduling volume storage. You can see the full definition of this CRD here . The following snippet shows a sample CSIDriverInfo which is usually created by Kubernetes: apiVersion: v1\nitems:\n- apiVersion: csi.storage.k8s.io/v1alpha1 kind: CSINodeInfo metadata: name: 127.0.0.1 csiDrivers: - driver: csi-hostpath nodeID: 127.0.0.1 topologyKeys: []\n... Where: csiDrivers - list of CSI drivers running on the node and their properties. driver - the CSI driver that this object refers to. nodeID - the assigned identifier for the node as determined by the driver. topologyKeys - A list of topology keys assigned to the node as supported by the driver.","breadcrumbs":"Using a CSI Driver » CSINodeInfo custom resource (alpha)","id":"14","title":"CSINodeInfo custom resource (alpha)"},"15":{"body":"If you want to use the CSINodeInfo CRD and get a preview of how configuration will work at runtime, do the followings: Ensure the feature gate is enabled with --feature-gates=CSINodeInfo=true Install the CSINodeInfo CRD on the Kubernetes cluster with the following command: $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml --validate=false","breadcrumbs":"Using a CSI Driver » Enabling CSINodeInfo","id":"15","title":"Enabling CSINodeInfo"},"16":{"body":"The CSI driver discovery uses the Kubelet Plugin Watcher feature which allows Kubelet to discover deployed CSI drivers automatically. The registrar sidecar container exposes an internal registration server via a Unix data socket path. The Kubelet monitors its registration directory to detect new registration requests. Once detected, the Kubelet contacts the registrar sidecar to query driver information. The retrieved CSI driver information (including the driver's own socket path) will be used for further interaction with the driver. This replaces the previous driver registration mechanism, where the driver-registrar sidecar, rather than kubelet, handles registration. Using this discovery feature, instead of the prior registration mechanism, will not have any effect on how drivers behave, however, this will be the way CSI works internally in coming releases.","breadcrumbs":"Using a CSI Driver » CSI driver discovery (beta)","id":"16","title":"CSI driver discovery (beta)"},"17":{"body":"The registrar sidecar container provides configuration functionalities to its associated driver. For instance, using the registrar container, an admin can specify how the driver should behave during volume attachment operations. Some CLI arguments provided to the registrar container will be used to create the CSIDriver and CSIDriverInfo custom resources discussed earlier. To configure your driver using the registrar sidecar, you can configure the container as shown in the snippet below: - name: driver-registrar args: - --v=5 - --csi-address=/csi/csi.sock - --mode=node-register - --driver-requires-attachment=true - --pod-info-mount-version=\"v1\" - --kubelet-registration-path=/var/lib/kubelet/plugins/csi-hostpath/csi.sock env: - name: KUBE_NODE_NAME valueFrom: fieldRef: apiVersion: v1 fieldPath: spec.nodeName image: quay.io/k8scsi/driver-registrar:v0.2.0 imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumeMounts: - name: registration-dir mountPath: /registration\n...\nvolumes: name: socket-dir - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: registration-dir - hostPath: path: /var/lib/kubelet/plugins type: Directory Where: --csi-address - specifies the Unix domain socket path, on the host, for the CSI driver. It allows the registrar sidecar to communicate with the driver for discovery information. Mount path /csi is mapped to HostPath entry socket-dir which is mapped to directory /var/lib/kubelet/plugins/csi-hostpath --mode - this flag specifies how the registar binary will function in either --driver-requires-attachment - indicates that this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that Kubernetes should call attach and wait for any attach operation to complete before proceeding to mounting. If value is not specified, default is false meaning attach will not be called. --pod-info-mount-version=\"v1\" - this indicates that the associated CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount. A version of value \"v1\" will cause the Kubelet send the followings pod information during NodePublishVolume() calls to the driver as VolumeAttributes: csi.storage.k8s.io/pod.name: pod.Name csi.storage.k8s.io/pod.namespace: pod.Namespace csi.storage.k8s.io/pod.uid: string(pod.UID) --kubelet-registration-path - specifies the fully-qualified path of the Unix domain socket for the CSI driver on the host. This path is constructed using the path from HostPath socket-dir and the additional suffix csi.sock . The registrar sidecar will provide this path to core CSI components for subsequent volume operations. VolumeMount /csi - is mapped to HostPath /var/lib/kubelet/plugins/csi-hostpath . It is the root location where the CSI driver's Unix Domain socket file is mounted on the host. VolumeMount /registration is mapped to HostPath /var/lib/kubelet/plugins . It is the root location where Kubelet watcher scans for new plugin registration.","breadcrumbs":"Using a CSI Driver » Registrar sidecar configuration","id":"17","title":"Registrar sidecar configuration"},"18":{"body":"In the configuration above, notice that all paths starts with /var/lib/kubelet/plugin That is because the discovery mechanism relies on the Kubelet's root directory (which is by default) /var/lib/kubelet . Ensure that this path value matches the value specified in the Kubelet's --root-dir argument. CSI Volume Snapshot support CSI volume snapshot support : To enable support for Kubernetes volume snapshotting, you must set the following feature gate on Kubernetes v1.12 (disabled by default for alpha): --feature-gates=VolumeSnapshotDataSource=true","breadcrumbs":"Using a CSI Driver » The Kubelet root directory","id":"18","title":"The Kubelet root directory"},"19":{"body":"In order to support topology-aware dynamic provisioning mechanisms available in Kubernetes, the external-provisioner must have the Topology feature enabled: --feature-gates=Topology=true In addition, in the Kubernetes cluster the CSINodeInfo alpha feature must be enabled (refer to the [CSINodeInfo custom resource]{csinodeinfo-custom-resource-alpha} section for more info): --feature-gates=CSINodeInfo=true as well as the KubeletPluginsWatcher beta feature (currently enabled by default).","breadcrumbs":"Using a CSI Driver » Topology (alpha)","id":"19","title":"Topology (alpha)"},"2":{"body":"Kubernetes CSI spec Status v1.9 v0.1 Alpha v1.10 v0.2 Beta v1.11 v0.3 Beta","breadcrumbs":"Project status","id":"2","title":"Project status"},"20":{"body":"Please visit the Archives for setup instructions on previous versions of Kubernetes.","breadcrumbs":"Using a CSI Driver » Archives","id":"20","title":"Archives"},"21":{"body":"To benefit from the new CSI support, you will need to deploy a CSI driver. Please visit the Drivers page to determine how to deploy your specific driver. A functional example based on the HostPath driver is presented in the Example section.","breadcrumbs":"Using a CSI Driver » Deployment","id":"21","title":"Deployment"},"22":{"body":"The following are a set of CSI driver which can be used with Kubernetes: NOTE: If you would like your driver to be added to this table, please create an issue in this repo with the information you would like to add here.","breadcrumbs":"Using a CSI Driver » Drivers","id":"22","title":"Drivers"},"23":{"body":"Name Status More Information Flexvolume Sample HostPath v0.2.0 Only use for a single node tests. See the Example page for Kubernetes-specific instructions. In-memory Sample Mock Driver v0.3.0 The sample mock driver used for csi-sanity NFS Sample VFS Driver Released A CSI plugin that provides a virtual file system.","breadcrumbs":"Using a CSI Driver » Sample Drivers","id":"23","title":"Sample Drivers"},"24":{"body":"Name Status More Information Cinder v0.2.0 A Container Storage Interface (CSI) Storage Plug-in for Cinder DigitalOcean Block Storage v0.0.1 (alpha) A Container Storage Interface (CSI) Driver for DigitalOcean Block Storage AWS Elastic Block Storage v0.0.1(alpha) A Container Storage Interface (CSI) Driver for AWS Elastic Block Storage (EBS) GCE Persistent Disk Alpha A Container Storage Interface (CSI) Storage Plugin for Google Compute Engine Persistent Disk OpenSDS Beta For more information, please visit releases and https://github.com/opensds/nbp/tree/master/csi Portworx 0.3.0 CSI implementation is available here which can be used as an example also. RBD v0.2.0 A Container Storage Interface (CSI) Storage RBD Plug-in for Ceph CephFS v0.2.0 A Container Storage Interface (CSI) Storage Plug-in for CephFS ScaleIO v0.1.0 A Container Storage Interface (CSI) Storage Plugin for DellEMC ScaleIO vSphere v0.1.0 A Container Storage Interface (CSI) Storage Plug-in for VMware vSphere NetApp v0.2.0 (alpha) A Container Storage Interface (CSI) Storage Plug-in for NetApp's Trident container storage orchestrator Ember CSI v0.2.0 (alpha) Multi-vendor CSI plugin supporting over 80 storage drivers to provide block and mount storage to Container Orchestration systems. Nutanix beta A Container Storage Interface (CSI) Storage Driver for Nutanix Quobyte v0.2.0 A Container Storage Interface (CSI) Plugin for Quobyte GlusterFS Beta A Container Storage Interface (CSI) Plugin for GlusterFS","breadcrumbs":"Using a CSI Driver » Production Drivers","id":"24","title":"Production Drivers"},"25":{"body":"There are multiple ways to test your driver. Please see Testing Drivers for more information.","breadcrumbs":"Using a CSI Driver » Testing","id":"25","title":"Testing"},"26":{"body":"There are two main models of how to use storage in Kubernetes with CSI drivers. These models include either the usage of pre-provisioned volumes or dynamic provisioned volumes. Please check the documentation of your specific driver for more information.","breadcrumbs":"Using a CSI Driver » Usage","id":"26","title":"Usage"},"27":{"body":"Pre-provisioned drivers work just as they did before, where the administrator would create a PersistentVolume specification which would describe the volume to be used. The PersistentVolume specification would need to be setup according to your driver, the difference here is that there is a new section called csi which needs to be setup accordingly. Please see Kubernetes Documentation on CSI Volumes . Here is an example of a PersistentVolume specification of a pre-provisioned volume managed by a CSI driver: apiVersion: v1\nkind: PersistentVolume\nmetadata: name: manually-created-pv\nspec: capacity: storage: 5Gi accessModes: - ReadWriteOnce persistentVolumeReclaimPolicy: Retain csi: driver: com.example.team/csi-driver volumeHandle: existingVolumeName readOnly: false","breadcrumbs":"Using a CSI Driver » Pre-provisioned volumes","id":"27","title":"Pre-provisioned volumes"},"28":{"body":"To setup the system for dynamic provisioning, the administrator needs to setup a StorageClass pointing to the CSI driver’s external-provisioner and specifying any parameters required by the driver. Here is an example of a StorageClass: kind: StorageClass\napiVersion: storage.k8s.io/v1\nmetadata: name: fast-storage\nprovisioner: com.example.team/csi-driver\nparameters: type: pd-ssd Where, provisioner : Must be set to the name of the CSI driver parameters : Must contain any parameters specific to the CSI driver. The user can then create a PersistentVolumeClaim utilizing this StorageClass as follows: apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata: name: request-for-storage\nspec: accessModes: - ReadWriteOnce resources: requests: storage: 5Gi storageClassName: fast-storage CSI Provisioner Parameters The CSI dynamic provisioner makes CreateVolumeRequest and DeleteVolumeRequest calls to CSI drivers. The controllerCreateSecrets and controllerDeleteSecrets fields in those requests can be populated with data from a Kubernetes Secret object by setting csiProvisionerSecretName and csiProvisionerSecretNamespace parameters in the StorageClass . For example: kind: StorageClass\napiVersion: storage.k8s.io/v1\nmetadata: name: fast-storage\nprovisioner: com.example.team/csi-driver\nparameters: type: pd-ssd csiProvisionerSecretName: fast-storage-provision-key csiProvisionerSecretNamespace: pd-ssd-credentials The csiProvisionerSecretName and csiProvisionerSecretNamespace parameters may specify literal values, or a template containing the following variables: ${pv.name} - replaced with the name of the PersistentVolume object being provisioned Once the CSI volume is created, a corresponding Kubernetes PersistentVolume object is created. The controllerPublishSecretRef , nodeStageSecretRef , and nodePublishSecretRef fields in the PersistentVolume object can be populated via the following storage class parameters: controllerPublishSecretRef in the PersistentVolume is populated by setting these StorageClass parameters: csiControllerPublishSecretName csiControllerPublishSecretNamespace nodeStageSecretRef in the PersistentVolume is populated by setting these StorageClass parameters: csiNodeStageSecretName csiNodeStageSecretNamespace nodePublishSecretRef in the PersistentVolume is populated by setting these StorageClass parameters: csiNodePublishSecretName csiNodePublishSecretNamespace The csiControllerPublishSecretName , csiNodeStageSecretName , and csiNodePublishSecretName parameters may specify a literal secret name, or a template containing the following variables: ${pv.name} - replaced with the name of the PersistentVolume ${pvc.name} - replaced with the name of the PersistentVolumeClaim ${pvc.namespace} - replaced with the namespace of the PersistentVolumeClaim ${pvc.annotations['']} (e.g. ${pvc.annotations['example.com/key']} ) - replaced with the value of the specified annotation in the PersistentVolumeClaim The csiControllerPublishSecretNamespace , csiNodeStageSecretNamespace , and csiNodePublishSecretNamespace parameters may specify a literal namespace name, or a template containing the following variables: ${pv.name} - replaced with the name of the PersistentVolume ${pvc.namespace} - replaced with the namespace of the PersistentVolumeClaim As an example, consider this StorageClass: kind: StorageClass\napiVersion: storage.k8s.io/v1\nmetadata: name: fast-storage\nprovisioner: com.example.team/csi-driver\nparameters: type: pd-ssd csiProvisionerSecretName: fast-storage-provision-key csiProvisionerSecretNamespace: pd-ssd-credentials csiControllerPublishSecretName: ${pv.name}-publish csiControllerPublishSecretNamespace: pd-ssd-credentials csiNodeStageSecretName: ${pv.name}-stage csiNodeStageSecretNamespace: pd-ssd-credentials csiNodePublishSecretName: ${pvc.annotations['com.example.team/key']} csiNodePublishSecretNamespace: ${pvc.namespace} This StorageClass instructs the CSI provisioner to do the following: send the data in the fast-storage-provision-key secret in the pd-ssd-credentials namespace as part of the create request to the CSI driver create a PersistentVolume with: a per-volume controller publish and node stage secret, both in the pd-ssd-credentials (those secrets would need to be created separately in response to the PersistentVolume creation before the PersistentVolume could be attached/mounted) a node publish secret in the same namespace as the PersistentVolumeClaim that triggered the provisioning, with a name specified as an annotation on the PersistentVolumeClaim. This could be used to give the creator of the PersistentVolumeClaim the ability to specify a secret containing a decryption key they have control over.","breadcrumbs":"Using a CSI Driver » Dynamic Provisioning","id":"28","title":"Dynamic Provisioning"},"29":{"body":"The HostPath can be used to provision local storage in a single node test. This section shows how to deploy and use that driver in Kubernetes.","breadcrumbs":"Using a CSI Driver » Example","id":"29","title":"Example"},"3":{"body":"Container Name CSI spec Latest Release Tag csi-provisioner v0.3 v0.4.1 csi-attacher v0.3 v0.4.1 driver-registrar v0.3 v0.4.1 livenessprobe v0.3 v0.4.1","breadcrumbs":"Sidecar container status","id":"3","title":"Sidecar container status"},"30":{"body":"This is tested with Kubernetes v1.12. Set the following feature gate flags to true: --feature-dates=CSIPersistentVolume=true,MountPropagation=true,VolumeSnapshotDataSource=true,KubeletPluginsWatcher=true,CSINodeInfo=true,CSIDriverRegistry=true CSIPersistentVolume is enabled by default in v1.10. MountPropagation is enabled by default in v1.10. VolumeSnapshotDataSource is a new alpha feature in v1.12. KubeletPluginsWatcher is enabled by default in v1.12. CSINodeInfo and CSIDriverRegistry are new alpha features in v1.12. CRDs needs to be created manually for CSIDriverRegistry and CSINodeInfo . $ kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml --validate=false\ncustomresourcedefinition.apiextensions.k8s.io/csidrivers.csi.storage.k8s.io created $ kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml --validate=false\ncustomresourcedefinition.apiextensions.k8s.io/csinodeinfos.csi.storage.k8s.io created","breadcrumbs":"Using a CSI Driver » Deployment","id":"30","title":"Deployment"},"31":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/rbac/csi-provisioner-rbac.yaml\nserviceaccount/csi-provisioner created\nclusterrole.rbac.authorization.k8s.io/external-provisioner-runner created\nclusterrolebinding.rbac.authorization.k8s.io/csi-provisioner-role created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-provisioner ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: external-provisioner-runner\nrules: - apiGroups: [\"\"] resources: [\"secrets\"] verbs: [\"get\", \"list\"] - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\", \"create\", \"delete\"] - apiGroups: [\"\"] resources: [\"persistentvolumeclaims\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"storageclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"events\"] verbs: [\"list\", \"watch\", \"create\", \"update\", \"patch\"] - apiGroups: [\"\"] resources: [\"endpoints\"] verbs: [\"list\", \"watch\", \"create\", \"update\", \"get\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshots\"] verbs: [\"get\", \"list\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshotcontents\"] verbs: [\"get\", \"list\"] - apiGroups: [\"csi.storage.k8s.io\"] resources: [\"csinodeinfos\"] verbs: [\"get\", \"list\", \"watch\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-provisioner-role\nsubjects: - kind: ServiceAccount name: csi-provisioner namespace: default\nroleRef: kind: ClusterRole name: external-provisioner-runner apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for CSI provisioner","id":"31","title":"Create RBAC rules for CSI provisioner"},"32":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/rbac/csi-attacher-rbac.yaml\nserviceaccount/csi-attacher created\nclusterrole.rbac.authorization.k8s.io/external-attacher-runner created\nclusterrolebinding.rbac.authorization.k8s.io/csi-attacher-role created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-attacher ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: external-attacher-runner\nrules: - apiGroups: [\"\"] resources: [\"events\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"volumeattachments\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-attacher-role\nsubjects: - kind: ServiceAccount name: csi-attacher namespace: default\nroleRef: kind: ClusterRole name: external-attacher-runner apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for CSI attacher","id":"32","title":"Create RBAC rules for CSI attacher"},"33":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/rbac/csi-nodeplugin-rbac.yaml\nserviceaccount/csi-nodeplugin created\nclusterrole.rbac.authorization.k8s.io/csi-nodeplugin created\nclusterrolebinding.rbac.authorization.k8s.io/csi-nodeplugin created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-nodeplugin ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-nodeplugin\nrules: - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"update\"] - apiGroups: [\"\"] resources: [\"namespaces\"] verbs: [\"get\", \"list\"] - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"volumeattachments\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"csi.storage.k8s.io\"] resources: [\"csidrivers\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"csi.storage.k8s.io\"] resources: [\"csinodeinfos\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-nodeplugin\nsubjects: - kind: ServiceAccount name: csi-nodeplugin namespace: default\nroleRef: kind: ClusterRole name: csi-nodeplugin apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for node plugin","id":"33","title":"Create RBAC rules for node plugin"},"34":{"body":"The CSI snapshotter is an optional sidecar container. You only need to create these RBAC rules if you want to test the snapshot feature. $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-snapshotter-rbac.yaml\nserviceaccount/csi-snapshotter created\nclusterrole.rbac.authorization.k8s.io/external-snapshotter-runner created\nclusterrolebinding.rbac.authorization.k8s.io/csi-snapshotter-role created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-snapshotter ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: external-snapshotter-runner\nrules: - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"persistentvolumeclaims\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"storageclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"events\"] verbs: [\"list\", \"watch\", \"create\", \"update\", \"patch\"] - apiGroups: [\"\"] resources: [\"secrets\"] verbs: [\"get\", \"list\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshotclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshotcontents\"] verbs: [\"create\", \"get\", \"list\", \"watch\", \"update\", \"delete\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshots\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"apiextensions.k8s.io\"] resources: [\"customresourcedefinitions\"] verbs: [\"create\", \"list\", \"watch\", \"delete\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-snapshotter-role\nsubjects: - kind: ServiceAccount name: csi-snapshotter namespace: default\nroleRef: kind: ClusterRole name: external-snapshotter-runner apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for CSI snapshotter","id":"34","title":"Create RBAC rules for CSI snapshotter"},"35":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/hostpath/csi-hostpath-provisioner.yaml\nservice/csi-hostpath-provisioner created\nstatefulset.apps/csi-hostpath-provisioner created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-provisioner-0 1/1 Running 0 6s kind: Service\napiVersion: v1\nmetadata: name: csi-hostpath-provisioner labels: app: csi-hostpath-provisioner\nspec: selector: app: csi-hostpath-provisioner ports: - name: dummy port: 12345 ---\nkind: StatefulSet\napiVersion: apps/v1\nmetadata: name: csi-hostpath-provisioner\nspec: serviceName: \"csi-hostpath-provisioner\" replicas: 1 selector: matchLabels: app: csi-hostpath-provisioner template: metadata: labels: app: csi-hostpath-provisioner spec: serviceAccount: csi-provisioner containers: - name: csi-provisioner image: quay.io/k8scsi/csi-provisioner:v0.4.1 args: - \"--provisioner=csi-hostpath\" - \"--csi-address=$(ADDRESS)\" - \"--connection-timeout=15s\" env: - name: ADDRESS value: /csi/csi.sock imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir","breadcrumbs":"Using a CSI Driver » Deploy CSI provisioner in StatefulSet pod","id":"35","title":"Deploy CSI provisioner in StatefulSet pod"},"36":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/hostpath/csi-hostpath-attacher.yaml\nservice/csi-hostpath-attacher created\nstatefulset.apps/csi-hostpath-attacher created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 4s\ncsi-hostpath-provisioner-0 1/1 Running 0 2m1s kind: Service\napiVersion: v1\nmetadata: name: csi-hostpath-attacher labels: app: csi-hostpath-attacher\nspec: selector: app: csi-hostpath-attacher ports: - name: dummy port: 12345 ---\nkind: StatefulSet\napiVersion: apps/v1\nmetadata: name: csi-hostpath-attacher\nspec: serviceName: \"csi-hostpath-attacher\" replicas: 1 selector: matchLabels: app: csi-hostpath-attacher template: metadata: labels: app: csi-hostpath-attacher spec: serviceAccount: csi-attacher containers: - name: csi-attacher image: quay.io/k8scsi/csi-attacher:v0.4.1 args: - --v=5 - --csi-address=$(ADDRESS) env: - name: ADDRESS value: /csi/csi.sock imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir","breadcrumbs":"Using a CSI Driver » Deploy CSI attacher in StatefulSet pod","id":"36","title":"Deploy CSI attacher in StatefulSet pod"},"37":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/hostpath/csi-hostpathplugin.yaml\ndaemonset.apps/csi-hostpathplugin created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 53s\ncsi-hostpath-provisioner-0 1/1 Running 0 2m50s\ncsi-hostpathplugin-9rp7c 2/2 Running 0 5s kind: DaemonSet\napiVersion: apps/v1\nmetadata: name: csi-hostpathplugin\nspec: selector: matchLabels: app: csi-hostpathplugin template: metadata: labels: app: csi-hostpathplugin spec: serviceAccount: csi-nodeplugin hostNetwork: true containers: - name: driver-registrar image: quay.io/k8scsi/driver-registrar:v0.4.1 args: - --v=5 - --csi-address=/csi/csi.sock - --kubelet-registration-path=/var/lib/kubelet/plugins/csi-hostpath/csi.sock env: - name: KUBE_NODE_NAME valueFrom: fieldRef: apiVersion: v1 fieldPath: spec.nodeName imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir - mountPath: /registration name: registration-dir - name: hostpath image: quay.io/k8scsi/hostpathplugin:v0.4.1 args: - \"--v=5\" - \"--endpoint=$(CSI_ENDPOINT)\" - \"--nodeid=$(KUBE_NODE_NAME)\" env: - name: CSI_ENDPOINT value: unix:///csi/csi.sock - name: KUBE_NODE_NAME valueFrom: fieldRef: apiVersion: v1 fieldPath: spec.nodeName imagePullPolicy: Always securityContext: privileged: true volumeMounts: - mountPath: /csi name: socket-dir - mountPath: /var/lib/kubelet/pods mountPropagation: Bidirectional name: mountpoint-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir - hostPath: path: /var/lib/kubelet/pods type: DirectoryOrCreate name: mountpoint-dir - hostPath: path: /var/lib/kubelet/plugins type: Directory name: registration-dir","breadcrumbs":"Using a CSI Driver » Deploy driver-registrar and hostpath CSI plugin in DaemonSet pod","id":"37","title":"Deploy driver-registrar and hostpath CSI plugin in DaemonSet pod"},"38":{"body":"The CSI snapshotter is an optional sidecar container. You only need to deploy it if you want to test the snapshot feature. $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-hostpath-snapshotter.yaml\nservice/csi-hostpath-snapshotter created\nstatefulset.apps/csi-hostpath-snapshotter created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 96s\ncsi-hostpath-provisioner-0 1/1 Running 0 3m33s\ncsi-hostpath-snapshotter-0 1/1 Running 0 5s\ncsi-hostpathplugin-9rp7c 2/2 Running 0 48s kind: Service\napiVersion: v1\nmetadata: name: csi-hostpath-snapshotter labels: app: csi-hostpath-snapshotter\nspec: selector: app: csi-hostpath-snapshotter ports: - name: dummy port: 12345 ---\nkind: StatefulSet\napiVersion: apps/v1\nmetadata: name: csi-hostpath-snapshotter\nspec: serviceName: \"csi-hostpath-snapshotter\" replicas: 1 selector: matchLabels: app: csi-hostpath-snapshotter template: metadata: labels: app: csi-hostpath-snapshotter spec: serviceAccount: csi-snapshotter containers: - name: csi-snapshotter image: quay.io/k8scsi/csi-snapshotter:v0.4.1 args: - \"--csi-address=$(ADDRESS)\" - \"--connection-timeout=15s\" env: - name: ADDRESS value: /csi/csi.sock imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir","breadcrumbs":"Using a CSI Driver » Deploy CSI snapshotter in StatefulSet pod","id":"38","title":"Deploy CSI snapshotter in StatefulSet pod"},"39":{"body":"Dynamic provisioning is enabled by creating a csi-hostpath-sc storage class. $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/usage/csi-storageclass.yaml\nstorageclass.storage.k8s.io/csi-hostpath-sc created apiVersion: storage.k8s.io/v1\nkind: StorageClass\nmetadata: name: csi-hostpath-sc\nprovisioner: csi-hostpath\nreclaimPolicy: Delete\nvolumeBindingMode: Immediate We can use this storage class to create and claim a new volume: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/usage/csi-pvc.yaml\npersistentvolumeclaim/csi-pvc created\n$ kubectl get pvc\nNAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE\ncsi-pvc Bound pvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO csi-hostpath-sc 3s $ kubectl get pv\nNAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE\npvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO Delete Bound default/csi-pvc csi-hostpath-sc 3s apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata: name: csi-pvc\nspec: accessModes: - ReadWriteOnce resources: requests: storage: 1Gi storageClassName: csi-hostpath-sc # defined in csi-setup.yaml The HostPath driver is configured to create new volumes under /tmp inside the hostpath container in the CSI hostpath plugin DaemonSet pod and thus persist as long as the DaemonSet pod itself. We can use such volumes in another pod like this: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/usage/csi-app.yaml\npod/my-csi-app created\n$ kubectl get pods\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 17m\ncsi-hostpath-provisioner-0 1/1 Running 0 19m\ncsi-hostpath-snapshotter-0 1/1 Running 0 16m\ncsi-hostpathplugin-9rp7c 2/2 Running 0 16m\nmy-csi-app 1/1 Running 0 5s $ kubectl describe pods/my-csi-app\nName: my-csi-app\nNamespace: default\nPriority: 0\nPriorityClassName: \nNode: 127.0.0.1/127.0.0.1\nStart Time: Wed, 03 Oct 2018 06:59:19 -0700\nLabels: \nAnnotations: \nStatus: Running\nIP: 172.17.0.5\nContainers: my-frontend: Container ID: docker://fd2950af39a155bdf08d1da341cfb23aa0d1af3eaaad6950a946355789606e8c Image: busybox Image ID: docker-pullable://busybox@sha256:2a03a6059f21e150ae84b0973863609494aad70f0a80eaeb64bddd8d92465812 Port: Host Port: Command: sleep 1000000 State: Running Started: Wed, 03 Oct 2018 06:59:22 -0700 Ready: True Restart Count: 0 Environment: Mounts: /data from my-csi-volume (rw) /var/run/secrets/kubernetes.io/serviceaccount from default-token-xms2g (ro)\nConditions: Type Status Initialized True Ready True ContainersReady True PodScheduled True\nVolumes: my-csi-volume: Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace) ClaimName: csi-pvc ReadOnly: false default-token-xms2g: Type: Secret (a volume populated by a Secret) SecretName: default-token-xms2g Optional: false\nQoS Class: BestEffort\nNode-Selectors: \nTolerations: node.kubernetes.io/not-ready:NoExecute for 300s node.kubernetes.io/unreachable:NoExecute for 300s\nEvents: Type Reason Age From Message ---- ------ ---- ---- ------- Normal Scheduled 69s default-scheduler Successfully assigned default/my-csi-app to 127.0.0.1 Normal SuccessfulAttachVolume 69s attachdetach-controller AttachVolume.Attach succeeded for volume \"pvc-0571cc14-c714-11e8-8911-000c2967769a\" Normal Pulling 67s kubelet, 127.0.0.1 pulling image \"busybox\" Normal Pulled 67s kubelet, 127.0.0.1 Successfully pulled image \"busybox\" Normal Created 67s kubelet, 127.0.0.1 Created container Normal Started 66s kubelet, 127.0.0.1 Started container kind: Pod\napiVersion: v1\nmetadata: name: my-csi-app\nspec: containers: - name: my-frontend image: busybox volumeMounts: - mountPath: \"/data\" name: my-csi-volume command: [ \"sleep\", \"1000000\" ] volumes: - name: my-csi-volume persistentVolumeClaim: claimName: csi-pvc # defined in csi-pvs.yaml","breadcrumbs":"Using a CSI Driver » Usage","id":"39","title":"Usage"},"4":{"body":"Please see the Setup page for instructions on how to setup Kubernetes support with CSI.","breadcrumbs":"Installation","id":"4","title":"Installation"},"40":{"body":"Writing inside the app container should be visible in /tmp of the hostpath container: $ kubectl exec -it my-csi-app /bin/sh\n/ # touch /data/hello-world\n/ # exit $ kubectl exec -it $(kubectl get pods --selector app=csi-hostpathplugin -o jsonpath='{.items[*].metadata.name}') -c hostpath /bin/sh\n/ # find / -name hello-world\n/tmp/057485ab-c714-11e8-bb16-000c2967769a/hello-world\n/ # exit There should be a VolumeAttachment while the app has the volume mounted: $ kubectl get VolumeAttachment\nName: csi-a4e97f3af2161c6d081b8e96c58ed00c9bf1e1745e89b2545e24505437f015df\nNamespace:\nLabels: \nAnnotations: \nAPI Version: storage.k8s.io/v1beta1\nKind: VolumeAttachment\nMetadata: Creation Timestamp: 2018-10-03T13:59:19Z Resource Version: 1730 Self Link: /apis/storage.k8s.io/v1beta1/volumeattachments/csi-a4e97f3af2161c6d081b8e96c58ed00c9bf1e1745e89b2545e24505437f015df UID: 862d7241-c714-11e8-8911-000c2967769a\nSpec: Attacher: csi-hostpath Node Name: 127.0.0.1 Source: Persistent Volume Name: pvc-0571cc14-c714-11e8-8911-000c2967769a\nStatus: Attached: true\nEvents: ","breadcrumbs":"Using a CSI Driver » Confirming the setup","id":"40","title":"Confirming the setup"},"41":{"body":"Enable dynamic provisioning of volume snapshot by creating a volume snapshot class as follows: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-snapshotclass.yaml\nvolumesnapshotclass.snapshot.storage.k8s.io/csi-hostpath-snapclass created\n$ kubectl get volumesnapshotclass\nNAME AGE\ncsi-hostpath-snapclass 11s\n$ kubectl describe volumesnapshotclass\nName: csi-hostpath-snapclass\nNamespace:\nLabels: \nAnnotations: \nAPI Version: snapshot.storage.k8s.io/v1alpha1\nKind: VolumeSnapshotClass\nMetadata: Creation Timestamp: 2018-10-03T14:15:30Z Generation: 1 Resource Version: 2418 Self Link: /apis/snapshot.storage.k8s.io/v1alpha1/volumesnapshotclasses/csi-hostpath-snapclass UID: c8f5bc47-c716-11e8-8911-000c2967769a\nSnapshotter: csi-hostpath\nEvents: apiVersion: snapshot.storage.k8s.io/v1alpha1\nkind: VolumeSnapshotClass\nmetadata: name: csi-hostpath-snapclass\nsnapshotter: csi-hostpath Use the volume snapshot class to dynamically create a volume snapshot: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-snapshot.yaml\nvolumesnapshot.snapshot.storage.k8s.io/new-snapshot-demo created $ kubectl get volumesnapshot\nNAME AGE\nnew-snapshot-demo 12s $ kubectl get volumesnapshotcontent\nNAME AGE\nsnapcontent-f55db632-c716-11e8-8911-000c2967769a 14s $ kubectl describe volumesnapshot\nName: new-snapshot-demo\nNamespace: default\nLabels: \nAnnotations: \nAPI Version: snapshot.storage.k8s.io/v1alpha1\nKind: VolumeSnapshot\nMetadata: Creation Timestamp: 2018-10-03T14:16:45Z Generation: 1 Resource Version: 2476 Self Link: /apis/snapshot.storage.k8s.io/v1alpha1/namespaces/default/volumesnapshots/new-snapshot-demo UID: f55db632-c716-11e8-8911-000c2967769a\nSpec: Snapshot Class Name: csi-hostpath-snapclass Snapshot Content Name: snapcontent-f55db632-c716-11e8-8911-000c2967769a Source: Kind: PersistentVolumeClaim Name: csi-pvc\nStatus: Creation Time: 2018-10-03T14:16:45Z Ready: true Restore Size: 1Gi\nEvents: $ kubectl describe volumesnapshotcontent\nName: snapcontent-f55db632-c716-11e8-8911-000c2967769a\nNamespace:\nLabels: \nAnnotations: \nAPI Version: snapshot.storage.k8s.io/v1alpha1\nKind: VolumeSnapshotContent\nMetadata: Creation Timestamp: 2018-10-03T14:16:45Z Generation: 1 Resource Version: 2474 Self Link: /apis/snapshot.storage.k8s.io/v1alpha1/volumesnapshotcontents/snapcontent-f55db632-c716-11e8-8911-000c2967769a UID: f561411f-c716-11e8-8911-000c2967769a\nSpec: Csi Volume Snapshot Source: Creation Time: 1538576205471577525 Driver: csi-hostpath Restore Size: 1073741824 Snapshot Handle: f55ff979-c716-11e8-bb16-000c2967769a Persistent Volume Ref: API Version: v1 Kind: PersistentVolume Name: pvc-0571cc14-c714-11e8-8911-000c2967769a Resource Version: 1573 UID: 0575b966-c714-11e8-8911-000c2967769a Snapshot Class Name: csi-hostpath-snapclass Volume Snapshot Ref: API Version: snapshot.storage.k8s.io/v1alpha1 Kind: VolumeSnapshot Name: new-snapshot-demo Namespace: default Resource Version: 2472 UID: f55db632-c716-11e8-8911-000c2967769a\nEvents: apiVersion: snapshot.storage.k8s.io/v1alpha1\nkind: VolumeSnapshot\nmetadata: name: new-snapshot-demo\nspec: snapshotClassName: csi-hostpath-snapclass source: name: csi-pvc kind: PersistentVolumeClaim","breadcrumbs":"Using a CSI Driver » Snapshot support","id":"41","title":"Snapshot support"},"42":{"body":"Follow the following example to create a volume from a volume snapshot: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-restore.yaml\npersistentvolumeclaim/hpvc-restore created\n$ kubectl get pvc\nNAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE\ncsi-pvc Bound pvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO csi-hostpath-sc 24m\nhpvc-restore Bound pvc-77324684-c717-11e8-8911-000c2967769a 1Gi RWO csi-hostpath-sc 6s\n$ kubectl get pv\nNAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE\npvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO Delete Bound default/csi-pvc csi-hostpath-sc 25m\npvc-77324684-c717-11e8-8911-000c2967769a 1Gi RWO Delete Bound default/hpvc-restore csi-hostpath-sc 33s apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata: name: hpvc-restore\nspec: storageClassName: csi-hostpath-sc dataSource: name: new-snapshot-demo kind: VolumeSnapshot apiGroup: snapshot.storage.k8s.io accessModes: - ReadWriteOnce resources: requests: storage: 1Gi If you encounter any problems, please check the [Troubleshooting page](Troubleshooting.html).","breadcrumbs":"Using a CSI Driver » Restore volume from snapshot support","id":"42","title":"Restore volume from snapshot support"},"43":{"body":"This section describes to developers how to create and deploy a CSI driver for Kubernetes.","breadcrumbs":"Development","id":"43","title":"Development"},"44":{"body":"To write a CSI Driver, a developer must create an application which implements the three Identity , Controller , and Node services as described in the CSI specification . The Drivers page contains a set of drivers which may be used as an example of how to write a CSI driver. If this is your first driver, you can start with the in-memory sample Mock Driver used for csi-sanity","breadcrumbs":"Development » Developing a CSI driver","id":"44","title":"Developing a CSI driver"},"45":{"body":"Here are some other resources useful for writing CSI drivers: How to write a Container Storage Interface (CSI) plugin - by Fatih Arslan Understanding Container Storage Interface (CSI) - by Anoop Maniankara (4 min read)","breadcrumbs":"Development » Other Resources","id":"45","title":"Other Resources"},"46":{"body":"To implement the snapshot feature, a CSI driver needs to support controller capabilities CREATE_DELETE_SNAPSHOT and LIST_SNAPSHOTS, and implement controller RPCs CreateSnapshot, DeleteSnapshot, and ListSnapshots. For details, see the CSI spec here . Here are some example CSI plugins that have implemented the snapshot feature: GCE PD CSI driver OpenSDS CSI driver Ceph RBD CSI driver You can find more sample and production CSI drivers here . Please note that drivers may or may not have implemented the snapshot feature.","breadcrumbs":"Development » Developing a CSI driver » Implement Snapshot Feature","id":"46","title":"Implement Snapshot Feature"},"47":{"body":"The volume snapshot APIs are implemented as CRDs here . Once you deploy the CSI sidecar containers which includes the external snapshotter in your cluster, the external-snapshotter will pre-install the Snapshot CRDs.","breadcrumbs":"Development » Developing a CSI driver » Snapshot APIs","id":"47","title":"Snapshot APIs"},"48":{"body":"Since volume snapshot is an alpha feature in Kubernetes v1.12, you need to enable a new alpha feature gate called VolumeSnapshotDataSource in API server binary. --feature-gates=VolumeSnapshotDataSource=true","breadcrumbs":"Development » Developing a CSI driver » Enable VolumeSnapshotDataSource Feature Gate","id":"48","title":"Enable VolumeSnapshotDataSource Feature Gate"},"49":{"body":"The snapshot controller is implemented as a sidecar helper container called External-Snapshotter . External-Snapshotter watches VolumeSnapshot and VolumeSnapshotContent API objects and triggers CreateSnapshot and DeleteSnapshot operations. It is recommended that sidecar containers External-Snapshotter and External-Provisioner be deployed together with CSI driver in a StatefulSet. See this example yaml file which deploys External-Snapshotter and External-Provisioner with the Hostpath CSI driver. Run the following command to start the sidecar containers and the CSI driver: kubectl create -f setup-csi-snapshotter.yaml","breadcrumbs":"Development » Developing a CSI driver » Deploy External-Snapshotter with CSI Driver","id":"49","title":"Deploy External-Snapshotter with CSI Driver"},"5":{"body":"Before you can start using CSI, you must understand how to properly setup and configure deploy CSI drivers on top of Kubernetes. This section provides information on Setup - Information on how to setup the CSI feature Deployment - Instructions on deploying a driver Drivers - A growning list of available CSI driverse you can use Usage - Findout the usage mode of CSI drivers Example - Using Hostpath as an example CSI driver","breadcrumbs":"Using CSI Drivers","id":"5","title":"Using CSI Drivers"},"50":{"body":"Use the following example yaml files to test the snapshot feature. Create a StorageClass : kubectl create -f storageclass.yaml Create a PVC : kubectl create -f pvc.yaml Create a VolumeSnapshotClass : kubectl create -f snapshotclass.yaml Create a VolumeSnapshot : kubectl create -f snapshot.yaml Create a PVC from a VolumeSnapshot : kuberctl create -f restore.yaml","breadcrumbs":"Development » Developing a CSI driver » Test Snapshot Feature","id":"50","title":"Test Snapshot Feature"},"51":{"body":"If a PVC is not bound, the attempt to create a volume snapshot from that PVC will fail. No retries will be attempted. An event will be logged to indicate that the PVC is not bound. Note that this could happen if the PVC spec and the VolumeSnapshot spec are in the same yaml file. In this case, when the VolumeSnapshot object is created, the PVC object is created but volume creation is not complete and therefore PVC is not bound yet. You need to wait until the PVC is bound and try to create the snapshot again.","breadcrumbs":"Development » Developing a CSI driver » PVC not Bound","id":"51","title":"PVC not Bound"},"52":{"body":"This page describes to CSI driver developers how to deploy their driver onto a Kubernetes cluster.","breadcrumbs":"Development » Deploying in Kubernetes","id":"52","title":"Deploying in Kubernetes"},"53":{"body":"There are three components plus the kubelet that enable CSI drivers to provide storage to Kubernetes. These components are sidecar containers which are responsible for communication with both Kubernetes and the CSI driver, making the appropriate CSI calls for their respectful Kubernetes events.","breadcrumbs":"Development » Overview","id":"53","title":"Overview"},"54":{"body":"sidecar-container Sidecar containers manage Kubernetes events and make the appropriate calls to the CSI driver. These are the external attacher , external provisioner , and the driver registrar .","breadcrumbs":"Development » Sidecar Containers","id":"54","title":"Sidecar Containers"},"55":{"body":"external-attacher is a sidecar container that watches Kubernetes VolumeAttachment objects and triggers CSI ControllerPublish and ControllerUnpublish operations against a driver endpoint. As of this writing, the external attacher does not support leader election and therefore there can be only one running per CSI driver. For more information please read Attaching and Detaching . Note, even though this is called the external attacher , its function is to call the CSI API calls ControllerPublish and ControllerUnpublish . These calls most likely will occur in a node which is not the one that will mount the volume. For this reason, many CSI drivers do not support these calls, instead doing the attach/detach and mount/unmount both in the CSI NodePublish and NodeUnpublish calls done by the kubelet at the node which is supposed to mount.","breadcrumbs":"Development » External Attacher","id":"55","title":"External Attacher"},"56":{"body":"external-provisioner is a Sidecar container that watches Kubernetes PersistentVolumeClaim objects and triggers CSI CreateVolume and DeleteVolume operations against a driver endpoint. For more information please read Provisioning and Deleting .","breadcrumbs":"Development » External Provisioner","id":"56","title":"External Provisioner"},"57":{"body":"external-snapshotter is a Sidecar container that watches Kubernetes VolumeSnapshot objects and triggers CSI CreateSnapshot and DeleteSnapshot operations against a driver endpoint. For more information please read Snapshot Design Proposal .","breadcrumbs":"Development » External Snapshotter","id":"57","title":"External Snapshotter"},"58":{"body":"driver-registrar is a sidecar container that registers the CSI driver with kubelet, and adds the drivers custom NodeId to a label on the Kubernetes Node API Object. It does this by communicating with the Identity service on the CSI driver and also calling the CSI GetNodeId operation. The driver registrar must have the Kubernetes name for the node set through the environment variable KUBE_NODE_NAME as follows: - name: csi-driver-registrar imagePullPolicy: Always image: quay.io/k8scsi/driver-registrar:v0.2.0 args: - \"--v=5\" - \"--csi-address=$(ADDRESS)\" env: - name: ADDRESS value: /csi/csi.sock - name: KUBE_NODE_NAME valueFrom: fieldRef: fieldPath: spec.nodeName volumeMounts: - name: socket-dir mountPath: /csi","breadcrumbs":"Development » Driver Registrar","id":"58","title":"Driver Registrar"},"59":{"body":"kubelet The Kubernetes kubelet runs on every node and is responsible for making the CSI calls NodePublish and NodeUnpublish . These calls mount and unmount the storage volume from the storage system, making it available to the Pod to consume. As shown in the external-attacher , most CSI drivers choose to implement both their attach/detach and mount/unmount calls in the NodePublish and NodeUnpublish calls. They do this because the kubelet makes the request on the node which is to consume the volume.","breadcrumbs":"Development » Kubelet","id":"59","title":"Kubelet"},"6":{"body":"This document has been updated for the latest version of Kubernetes v1.12. This document outlines the features that are available for CSI. To get step by step instructions on how to run an example CSI driver, you can read the Example section.","breadcrumbs":"Using a CSI Driver » Setup","id":"6","title":"Setup"},"60":{"body":"The mount point used by the CSI driver must be set to Bidirectional . See the example below: volumeMounts: - name: socket-dir mountPath: /csi - name: mountpoint-dir mountPath: /var/lib/kubelet/pods mountPropagation: \"Bidirectional\" volumes: - name: socket-dir hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate - name: mountpoint-dir hostPath: path: /var/lib/kubelet/pods type: Directory","breadcrumbs":"Development » Mount point","id":"60","title":"Mount point"},"61":{"body":"Side car containers need the appropriate permissions to be able to access and manipulate Kubernetes objects. Here are the RBAC rules needed: kind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-hostpath-role\nrules: - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"create\", \"delete\", \"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"persistentvolumeclaims\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"storageclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"volumeattachments\"] verbs: [\"get\", \"list\", \"watch\", \"update\"]","breadcrumbs":"Development » RBAC Rules","id":"61","title":"RBAC Rules"},"62":{"body":"Deploying a CSI driver onto Kubernetes is highlighted in detail in Recommended Mechanism for Deploying CSI Drivers on Kubernetes .","breadcrumbs":"Development » Deploying","id":"62","title":"Deploying"},"63":{"body":"Simple deployment example using a single pod for all components: see the hostpath example . Full deployment example using a DaemonSet for the node plugin and StatefulSet for the controller plugin: check the NFS driver deployment files .","breadcrumbs":"Development » Examples","id":"63","title":"Examples"},"64":{"body":"For more information, please read CSI Volume Plugins in Kubernetes Design Doc .","breadcrumbs":"Development » More information","id":"64","title":"More information"},"65":{"body":"This document describes to developers how they can test their CSI clients or drivers.","breadcrumbs":"Development » Testing","id":"65","title":"Testing"},"66":{"body":"If you are writing a CSI client, like a CO or a side car container, then you can use some of the following methods to test your application. csi-test unit test mock driver : The csi-test repo provides an automatically generated Golang mock code to be used for unit tests. mock-driver : This driver can be used as an external service to test your gRPC calls. hostPath driver : This driver can be used on a single node to tests for mounting and unmounting of storage.","breadcrumbs":"Development » Testing » Testing CSI Clients","id":"66","title":"Testing CSI Clients"},"67":{"body":"The csi-test unit test mock driver enables Golang clients to test all aspects of their code. This is done by using the mock driver generated using GoMock , which let's the caller verify parameters and test for returned values. Here is a small example: // Setup mock m := gomock.NewController(&mock_utils.SafeGoroutineTester{}) defer m.Finish() driver := mock_driver.NewMockIdentityServer(m) // Setup input in := &csi.GetPluginInfoRequest{ Version: &csi.Version{ Major: 0, Minor: 1, Patch: 0, }, } // Setup mock outout out := &csi.GetPluginInfoResponse{ Name: \"mock\", VendorVersion: \"0.1.1\", Manifest: map[string]string{ \"hello\": \"world\", }, } // Setup expectation // !IMPORTANT!: Must set context expected value to gomock.Any() to match any value driver.EXPECT().GetPluginInfo(gomock.Any(), in).Return(out, nil).Times(1) // Create a new RPC server := mock_driver.NewMockCSIDriver(&mock_driver.MockCSIDriverServers{ Identity: driver, }) conn, err := server.Nexus() if err != nil { t.Errorf(\"Error: %s\", err.Error()) } defer server.Close() // Make call c := csi.NewIdentityClient(conn) r, err := c.GetPluginInfo(context.Background(), in) if err != nil { t.Errorf(\"Error: %s\", err.Error()) } name := r.GetName() if name != \"mock\" { t.Errorf(\"Unknown name: %s\\n\", name) }","breadcrumbs":"Development » Testing » CSI-Test Unit Test Mock Driver","id":"67","title":"CSI-Test Unit Test Mock Driver"},"68":{"body":"For more examples and information see: external-attacher side car container Golang GoMock","breadcrumbs":"Development » Testing » More Information","id":"68","title":"More Information"},"69":{"body":"The hostPath driver is probably the simplest CSI driver to use for testing on a single node. This is the driver that is for CSI e2e tests in Kubernetes. See the Example page for deployment and usage instructions.","breadcrumbs":"Development » Testing » HostPath Driver","id":"69","title":"HostPath Driver"},"7":{"body":"Some of the features discussed here may be at different stages (alpha, beta, or GA). Ensure that the feature you want to try is enabled for the Kubernetes release you are using. To avoid version mismatch, you can enable all of the features discussed here for both kubelet and kube-apiserver with: --feature-gates=VolumeSnapshotDataSource=true,KubeletPluginsWatcher=true,CSINodeInfo=true,CSIDriverRegistry=true","breadcrumbs":"Using a CSI Driver » Enabling features","id":"7","title":"Enabling features"},"70":{"body":"There are multiple ways to test your driver, some still in development. This page will describe each of the multiple methods to test your driver.","breadcrumbs":"Development » Testing » Testing CSI Drivers","id":"70","title":"Testing CSI Drivers"},"71":{"body":"There are multiple ways to test your driver. One way is to exercise every call by writing your own client for your unit tests as done in the Portworx driver . Another way to test your driver is to use the sanity package from csi-test . This simple package contains a single call which will test your driver according to the CSI specification. Here is an example of how it can be used: func TestMyDriver(t *testing.T) { // Setup the full driver and its environment ... setup driver ... // Now call the test suite sanity.Test(t, driverEndpointAddress)\n}","breadcrumbs":"Development » Testing » Unit Testing","id":"71","title":"Unit Testing"},"72":{"body":"For functional testing you can again provide your own model, or some of the following tools:","breadcrumbs":"Development » Testing » Functional Testing","id":"72","title":"Functional Testing"},"73":{"body":"csi-sanity is a program from csi-test which tests your driver based on the sanity package. Here is a sample way to use it: $ csi-sanity --ginkgo.v --csi.endpoint= For more information please see csi-sanity","breadcrumbs":"Development » Testing » csi-sanity","id":"73","title":"csi-sanity"},"74":{"body":"","breadcrumbs":"Troubleshooting","id":"74","title":"Troubleshooting"},"75":{"body":"kubectl describe pod your-nodeplugin-pod shows: failed to start container \"your-driver\": Error response from daemon:\nlinux mounts: Path /var/lib/kubelet/pods is mounted on / but it is not a shared mount Your Docker host is not configured to allow shared mounts. Take a look at this page for instructions to enable them.","breadcrumbs":"Node plugin pod does not start with RunContainerError status","id":"75","title":"Node plugin pod does not start with RunContainerError status"},"76":{"body":"If you have a Kubernetes 1.9 cluster, not being able to list VolumeAttachment and the following error are due to the lack of the storage.k8s.io/v1alpha1=true runtime configuration: $ kubectl logs csi-pod external-attacher\n...\nI0306 16:34:50.976069 1 reflector.go:240] Listing and watching *v1alpha1.VolumeAttachment from github.com/kubernetes-csi/external-attacher/vendor/k8s.io/client-go/informers/factory.go:86 E0306 16:34:50.992034 1 reflector.go:205] github.com/kubernetes-csi/external-attacher/vendor/k8s.io/client-go/informers/factory.go:86: Failed to list *v1alpha1.VolumeAttachment: the server could not find the requested resource\n... Please see the Kubernetes 1.9 page.","breadcrumbs":"External attacher can't find VolumeAttachments","id":"76","title":"External attacher can't find VolumeAttachments"},"77":{"body":"The external components images are under active development. It can happen that they become incompatible with each other. If the issues above above have been ruled out, contact the sig-storage team and/or run the e2e test : go run hack/e2e.go -- --provider=local --test --test_args=\"--ginkgo.focus=Feature:CSI\"","breadcrumbs":"Problems with the external components","id":"77","title":"Problems with the external components"},"78":{"body":"CSI Specification CSI Volume Plugins in Kubernetes Design Doc","breadcrumbs":"References","id":"78","title":"References"},"79":{"body":"In this section, you will find information about CSI support in older Kubernetes versions.","breadcrumbs":"Archive","id":"79","title":"Archive"},"8":{"body":"To use CSI drivers, your Kubernetes cluster must allow privileged pods (i.e. --allow-privileged flag must be set to true for both the API server and the kubelet). This is the default in some environments (e.g. GCE, GKE, kubeadm ). Ensure your API server are started with the privileged flag: $ ./kube-apiserver ... --allow-privileged=true ... $ ./kubelet ... --allow-privileged=true ...","breadcrumbs":"Using a CSI Driver » Enable privileged Pods","id":"8","title":"Enable privileged Pods"},"80":{"body":"Since CSI support is alpha in Kubernetes 1.9, the following flags must be set explictly: API Server binary: --allow-privileged=true\n--feature-gates=CSIPersistentVolume=true,MountPropagation=true\n--runtime-config=storage.k8s.io/v1alpha1=true Controller-manager binary --feature-gates=CSIPersistentVolume=true Kubelet --allow-privileged=true\n--feature-gates=CSIPersistentVolume=true,MountPropagation=true","breadcrumbs":"Archive » CSI with Kubernetes 1.9","id":"80","title":"CSI with Kubernetes 1.9"},"81":{"body":"If you are a developer and are using the script cluster/kube-up.sh from the Kubernetes repo, then you can set values using the following environment variables: export KUBE_RUNTIME_CONFIG=\"storage.k8s.io/v1alpha1=true\"\nexport KUBE_FEATURE_GATES=\"MountPropagation=true,CSIPersistentVolume=true\" When using the script hack/local-up-cluster.sh , set the same variables without the KUBE_ prefix: export RUNTIME_CONFIG=\"storage.k8s.io/v1alpha1=true\"\nexport FEATURE_GATES=\"MountPropagation=true,CSIPersistentVolume=true\"","breadcrumbs":"Archive » Developers","id":"81","title":"Developers"},"82":{"body":"Once the system is up, to confirm if the runtime config has taken effect, the following command should return that there are no resources and not return an error: $ kubectl get volumeattachments To confirm that the feature gate has taken effect, submit the following fake PersistentVolume specification. If it is accepted, then we can confirm that the feature gate has been set correctly, and you may go ahead and delete it: apiVersion: v1\nkind: PersistentVolume\nmetadata: name: fakepv\nspec: capacity: storage: 1Gi accessModes: - ReadWriteMany csi: driver: fake volumeHandle: \"1\" readOnly: false","breadcrumbs":"Archive » Confirming the setup","id":"82","title":"Confirming the setup"},"83":{"body":"TBD","breadcrumbs":"Archive » CSI with Kubernetes 1.10","id":"83","title":"CSI with Kubernetes 1.10"},"9":{"body":"Another feature that CSI depends on is mount propagation. It allows the sharing of volumes mounted by one container with other containers in the same pod, or even to other pods on the same node. For mount propagation to work, the Docker daemon for the cluster must allow shared mounts. See the mount propagation docs to find out how to enable this feature for your cluster. This page explains how to check if shared mounts are enabled and how to configure Docker for shared mounts.","breadcrumbs":"Using a CSI Driver » Enabling mount propagation","id":"9","title":"Enabling mount propagation"}},"length":84,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{".":{"1":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"c":{"2":{"9":{"6":{"7":{"7":{"6":{"9":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.4142135623730952},"41":{"tf":3.3166247903554},"42":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"8":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"39":{"tf":1.4142135623730952}},"t":{"1":{"3":{":":{"5":{"9":{":":{"1":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"41":{"tf":1.7320508075688773}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"t":{"2":{"1":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"7":{"1":{"c":{"c":{"1":{"4":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"9":{"6":{"6":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"5":{"9":{":":{"1":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":2.0},"37":{"tf":2.23606797749979},"38":{"tf":2.6457513110645909},"39":{"tf":3.1622776601683797},"67":{"tf":1.4142135623730952}}},"1":{".":{"1":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"76":{"tf":1.4142135623730952},"80":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"/":{"1":{"df":5,"docs":{"35":{"tf":1.0},"36":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":2.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"7":{"4":{"1":{"8":{"2":{"4":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.0}}},"1":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"8":{"df":5,"docs":{"13":{"tf":1.0},"39":{"tf":1.7320508075688773},"40":{"tf":1.7320508075688773},"41":{"tf":3.3166247903554},"42":{"tf":2.0}}},"df":0,"docs":{}}},"2":{"3":{"4":{"5":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.4142135623730952},"39":{"tf":2.23606797749979},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}},"4":{"df":1,"docs":{"41":{"tf":1.0}}},"5":{"3":{"8":{"5":{"7":{"6":{"2":{"0":{"5":{"4":{"7":{"1":{"5":{"7":{"7":{"5":{"2":{"5":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{":":{"5":{"0":{".":{"9":{"7":{"6":{"0":{"6":{"9":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"0":{"3":{"4":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"7":{"2":{".":{"1":{"7":{".":{"0":{".":{"5":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":8,"docs":{"13":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.7320508075688773},"67":{"tf":1.0},"76":{"tf":1.4142135623730952},"82":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"82":{"tf":1.0}}}}},"2":{"/":{"2":{"df":3,"docs":{"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"8":{"df":4,"docs":{"13":{"tf":1.0},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"8":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"41":{"tf":1.0}}},"4":{"df":1,"docs":{"41":{"tf":1.0}}},"6":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}},"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":1.0}}}},"3":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"3":{"3":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"4":{"8":{"df":1,"docs":{"38":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":1.0}},"s":{"df":1,"docs":{"36":{"tf":1.0}}}},"5":{"3":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"s":{"df":3,"docs":{"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}}},"6":{"6":{"df":1,"docs":{"39":{"tf":1.0}}},"7":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}},"9":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{},"s":{"df":2,"docs":{"35":{"tf":1.0},"42":{"tf":1.0}}}},"7":{"7":{"3":{"2":{"4":{"6":{"8":{"4":{"df":1,"docs":{"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"6":{"2":{"d":{"7":{"2":{"4":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"1":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.4142135623730952},"41":{"tf":3.1622776601683797},"42":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"5":{"4":{"a":{"a":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"7":{"c":{"df":3,"docs":{"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"4":{"df":0,"docs":{},"e":{"9":{"7":{"df":0,"docs":{},"f":{"3":{"a":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"1":{"c":{"6":{"d":{"0":{"8":{"1":{"b":{"8":{"df":0,"docs":{},"e":{"9":{"6":{"c":{"5":{"8":{"df":0,"docs":{},"e":{"d":{"0":{"0":{"c":{"9":{"b":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"1":{"7":{"4":{"5":{"df":0,"docs":{},"e":{"8":{"9":{"b":{"2":{"5":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"4":{"5":{"0":{"5":{"4":{"3":{"7":{"df":0,"docs":{},"f":{"0":{"1":{"5":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"18":{"tf":1.0},"77":{"tf":1.4142135623730952}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"61":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"27":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"d":{"d":{"df":2,"docs":{"22":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730952},"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":1,"docs":{"22":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"72":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":8,"docs":{"13":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.0},"41":{"tf":1.7320508075688773},"42":{"tf":1.4142135623730952}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.4142135623730952},"9":{"tf":1.4142135623730952}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":11,"docs":{"10":{"tf":1.4142135623730952},"11":{"tf":1.4142135623730952},"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.7320508075688773},"2":{"tf":1.0},"24":{"tf":2.0},"30":{"tf":1.4142135623730952},"48":{"tf":1.4142135623730952},"7":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"39":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"47":{"tf":1.4142135623730952},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"31":{"tf":3.3166247903554},"32":{"tf":2.23606797749979},"33":{"tf":2.6457513110645909},"34":{"tf":3.1622776601683797},"42":{"tf":1.0},"61":{"tf":2.23606797749979}}}}}}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":18,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.4142135623730952},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":1.7320508075688773},"34":{"tf":1.7320508075688773},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.7320508075688773},"38":{"tf":1.4142135623730952},"39":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}}}}}},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"35":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.4142135623730952},"38":{"tf":2.0},"39":{"tf":2.449489742783178},"40":{"tf":1.7320508075688773}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"44":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"v":{"1":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.4142135623730952},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.4142135623730952},"39":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"3":{"tf":1.0},"32":{"tf":3.1622776601683797},"36":{"tf":3.605551275463989},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730952},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"59":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730952}},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730952}}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730952}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.4142135623730952}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"73":{"tf":1.0}}}}},"b":{"1":{"6":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":2,"docs":{"28":{"tf":1.0},"76":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"60":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}}},"t":{"a":{"df":5,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730952},"24":{"tf":1.7320508075688773},"7":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730952}}}}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"60":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"48":{"tf":1.0},"80":{"tf":1.4142135623730952}}}}},"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"10":{"tf":1.7320508075688773},"24":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"28":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":2.0},"51":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"39":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"7":{"1":{"4":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952}}},"6":{"df":1,"docs":{"41":{"tf":3.0}}},"7":{"df":1,"docs":{"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"5":{"b":{"c":{"4":{"7":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":14,"docs":{"11":{"tf":1.7320508075688773},"17":{"tf":1.7320508075688773},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"c":{"df":4,"docs":{"27":{"tf":1.0},"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":3,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.0}}}}},"df":2,"docs":{"40":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"26":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"28":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"65":{"tf":1.0},"66":{"tf":1.4142135623730952},"67":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":11,"docs":{"11":{"tf":1.7320508075688773},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730952}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"61":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":1,"docs":{"66":{"tf":1.0}},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.4142135623730952},"49":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"53":{"tf":1.4142135623730952},"63":{"tf":1.0},"77":{"tf":1.4142135623730952}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.4142135623730952},"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"82":{"tf":2.0}}}}}},"n":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730952}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"16":{"tf":1.0},"17":{"tf":2.0},"24":{"tf":3.7416573867739415},"28":{"tf":2.23606797749979},"3":{"tf":1.4142135623730952},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":2.449489742783178},"40":{"tf":1.4142135623730952},"44":{"tf":1.0},"45":{"tf":1.4142135623730952},"47":{"tf":1.0},"49":{"tf":1.7320508075688773},"53":{"tf":1.0},"54":{"tf":1.7320508075688773},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"10":{"tf":1.0},"28":{"tf":1.4142135623730952},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730952},"49":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.4142135623730952}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.4142135623730952}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"r":{"d":{"df":7,"docs":{"11":{"tf":1.4142135623730952},"12":{"tf":1.4142135623730952},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730952},"30":{"tf":1.0},"47":{"tf":1.4142135623730952}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":2.449489742783178},"30":{"tf":2.23606797749979},"31":{"tf":2.8284271247461905},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":3.0},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":3.3166247903554},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688773},"43":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":3.1622776601683797},"51":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"b":{"a":{"c":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":2.0},"12":{"tf":1.7320508075688773},"13":{"tf":1.4142135623730952},"14":{"tf":1.4142135623730952},"17":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.4142135623730952}}}}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":65,"docs":{"1":{"tf":1.7320508075688773},"10":{"tf":1.0},"11":{"tf":2.449489742783178},"13":{"tf":1.7320508075688773},"14":{"tf":2.0},"16":{"tf":2.23606797749979},"17":{"tf":3.4641016151377546},"18":{"tf":1.4142135623730952},"2":{"tf":1.0},"21":{"tf":1.4142135623730952},"22":{"tf":1.0},"23":{"tf":1.4142135623730952},"24":{"tf":3.872983346207417},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":3.0},"3":{"tf":1.7320508075688773},"31":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"35":{"tf":3.605551275463989},"36":{"tf":3.7416573867739415},"37":{"tf":3.3166247903554},"38":{"tf":4.123105625617661},"39":{"tf":5.196152422706632},"4":{"tf":1.0},"40":{"tf":1.7320508075688773},"41":{"tf":3.4641016151377546},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.7320508075688773},"46":{"tf":2.6457513110645909},"47":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":2.6457513110645909},"52":{"tf":1.0},"53":{"tf":1.7320508075688773},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730952},"6":{"tf":1.4142135623730952},"60":{"tf":1.4142135623730952},"61":{"tf":1.0},"62":{"tf":1.4142135623730952},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730952},"69":{"tf":1.4142135623730952},"70":{"tf":1.0},"71":{"tf":1.4142135623730952},"73":{"tf":2.449489742783178},"76":{"tf":1.0},"78":{"tf":1.4142135623730952},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730952},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":6,"docs":{"14":{"tf":2.0},"15":{"tf":1.7320508075688773},"19":{"tf":1.4142135623730952},"30":{"tf":1.4142135623730952},"31":{"tf":1.0},"33":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730952},"58":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"75":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"37":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"63":{"tf":1.0}}}}}}}}},"t":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"28":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":11,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730952},"19":{"tf":1.0},"30":{"tf":1.7320508075688773},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":2.23606797749979},"41":{"tf":1.4142135623730952},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.4142135623730952}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"31":{"tf":1.0},"34":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"56":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"41":{"tf":2.449489742783178},"42":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.7320508075688773},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"43":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688773},"5":{"tf":1.7320508075688773},"52":{"tf":1.4142135623730952},"62":{"tf":1.7320508075688773},"63":{"tf":1.7320508075688773},"69":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":10,"docs":{"13":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.7320508075688773},"43":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730952}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"1":{"tf":1.0},"43":{"tf":1.4142135623730952},"44":{"tf":1.4142135623730952},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730952}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"7":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":8,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":2.6457513110645909},"38":{"tf":1.4142135623730952},"58":{"tf":1.0},"60":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730952},"18":{"tf":1.4142135623730952},"37":{"tf":1.0},"60":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":1.7320508075688773},"17":{"tf":1.0},"18":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"o":{"c":{"df":3,"docs":{"64":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"/":{"/":{"df":0,"docs":{},"f":{"d":{"2":{"9":{"5":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"1":{"5":{"5":{"b":{"d":{"df":0,"docs":{},"f":{"0":{"8":{"d":{"1":{"d":{"a":{"3":{"4":{"1":{"c":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"a":{"a":{"0":{"d":{"1":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"e":{"a":{"a":{"a":{"d":{"6":{"9":{"5":{"0":{"a":{"9":{"4":{"6":{"3":{"5":{"5":{"7":{"8":{"9":{"6":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"39":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730952}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.4142135623730952},"26":{"tf":1.0},"27":{"tf":1.0},"6":{"tf":1.4142135623730952},"65":{"tf":1.0}}}}}}}},"df":1,"docs":{"55":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"55":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":47,"docs":{"1":{"tf":1.0},"11":{"tf":2.449489742783178},"13":{"tf":1.7320508075688773},"14":{"tf":2.8284271247461905},"16":{"tf":3.0},"17":{"tf":3.4641016151377546},"21":{"tf":2.0},"22":{"tf":1.7320508075688773},"23":{"tf":2.0},"24":{"tf":2.23606797749979},"25":{"tf":1.4142135623730952},"26":{"tf":1.4142135623730952},"27":{"tf":2.23606797749979},"28":{"tf":2.8284271247461905},"29":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.4142135623730952},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.6457513110645909},"45":{"tf":1.0},"46":{"tf":2.449489742783178},"49":{"tf":2.0},"5":{"tf":2.449489742783178},"52":{"tf":1.4142135623730952},"53":{"tf":1.4142135623730952},"54":{"tf":1.4142135623730952},"55":{"tf":1.7320508075688773},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.6457513110645909},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730952},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"69":{"tf":2.0},"70":{"tf":1.7320508075688773},"71":{"tf":2.449489742783178},"73":{"tf":1.4142135623730952},"75":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"5":{"tf":1.0}}},"’":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.7320508075688773}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688773},"39":{"tf":1.0},"41":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"69":{"tf":1.0},"77":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"70":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"82":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"10":{"tf":1.4142135623730952},"12":{"tf":1.4142135623730952},"15":{"tf":1.4142135623730952},"18":{"tf":1.0},"19":{"tf":1.7320508075688773},"30":{"tf":1.7320508075688773},"39":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.4142135623730952},"53":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688773},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688773}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"$":{"(":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"31":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"v":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"39":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}}}}}},"df":1,"docs":{"67":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":10,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":19,"docs":{"21":{"tf":1.4142135623730952},"23":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688773},"29":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730952},"50":{"tf":1.0},"6":{"tf":1.4142135623730952},"60":{"tf":1.0},"63":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"t":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":2.0}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":16,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"47":{"tf":1.4142135623730952},"49":{"tf":2.6457513110645909},"54":{"tf":1.4142135623730952},"55":{"tf":2.0},"56":{"tf":1.4142135623730952},"57":{"tf":1.4142135623730952},"59":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730952},"77":{"tf":1.4142135623730952}}}}}}}},"f":{"5":{"5":{"d":{"b":{"6":{"3":{"2":{"df":1,"docs":{"41":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"7":{"9":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"6":{"1":{"4":{"1":{"1":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"51":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.4142135623730952}},"p":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.4142135623730952},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":2.6457513110645909}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":16,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"30":{"tf":1.4142135623730952},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"10":{"tf":1.7320508075688773},"12":{"tf":1.4142135623730952},"15":{"tf":1.4142135623730952},"16":{"tf":1.4142135623730952},"18":{"tf":1.4142135623730952},"19":{"tf":2.23606797749979},"30":{"tf":2.0},"34":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":2.0},"48":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730952},"6":{"tf":1.0},"7":{"tf":2.23606797749979},"80":{"tf":1.7320508075688773},"82":{"tf":1.4142135623730952},"9":{"tf":1.4142135623730952}},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"28":{"tf":1.4142135623730952}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"76":{"tf":1.4142135623730952},"79":{"tf":1.0},"9":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"44":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":21,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730952},"14":{"tf":1.0},"15":{"tf":1.4142135623730952},"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":2.449489742783178},"30":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730952},"49":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730952}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"71":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.4142135623730952},"21":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730952}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}},"g":{"a":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.4142135623730952},"82":{"tf":1.4142135623730952}},"s":{"=":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"15":{"tf":1.0},"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"18":{"tf":1.0},"48":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"24":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"41":{"tf":1.7320508075688773},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}}}}},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"8":{"6":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"67":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"p":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"40":{"tf":1.0},"67":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688773},"47":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.4142135623730952},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688773},"39":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":22,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688773},"14":{"tf":1.0},"17":{"tf":3.0},"21":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":3.7416573867739415},"36":{"tf":3.7416573867739415},"37":{"tf":2.8284271247461905},"38":{"tf":3.872983346207417},"39":{"tf":3.605551275463989},"40":{"tf":1.7320508075688773},"41":{"tf":3.3166247903554},"42":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.7320508075688773},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730952}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"30":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":1,"docs":{"8":{"tf":1.0}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"39":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"58":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"24":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.4142135623730952},"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730952},"19":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730952},"14":{"tf":1.0},"16":{"tf":1.4142135623730952},"17":{"tf":1.7320508075688773},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730952},"25":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.4142135623730952},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.4142135623730952},"68":{"tf":1.4142135623730952},"73":{"tf":1.0},"79":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"16":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"24":{"tf":3.4641016151377546},"45":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"16":{"tf":1.4142135623730952}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"11":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"39":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"'":{"df":0,"docs":{},"{":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"[":{"*":{"]":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"14":{"tf":1.4142135623730952},"28":{"tf":2.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":3.0},"42":{"tf":1.4142135623730952},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"81":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":21,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730952},"15":{"tf":1.0},"30":{"tf":1.4142135623730952},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"38":{"tf":1.4142135623730952},"39":{"tf":2.6457513110645909},"40":{"tf":2.0},"41":{"tf":2.8284271247461905},"42":{"tf":1.7320508075688773},"49":{"tf":1.0},"50":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}}},"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"18":{"tf":1.4142135623730952}}},"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":2.0},"18":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"19":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":44,"docs":{"1":{"tf":1.7320508075688773},"10":{"tf":1.4142135623730952},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730952},"19":{"tf":1.4142135623730952},"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730952},"29":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730952},"53":{"tf":1.7320508075688773},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730952},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730952},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.4142135623730952},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730952},"81":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"13":{"tf":1.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"58":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"6":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"75":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"13":{"tf":1.4142135623730952},"14":{"tf":1.4142135623730952},"31":{"tf":3.1622776601683797},"32":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":3.0},"5":{"tf":1.0},"61":{"tf":2.23606797749979},"76":{"tf":1.7320508075688773}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.0},"76":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"26":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688773},"67":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"55":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"17":{"tf":2.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"18":{"tf":1.0},"67":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"16":{"tf":1.4142135623730952},"18":{"tf":1.0},"19":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":1.7320508075688773},"34":{"tf":1.7320508075688773},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"17":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.4142135623730952},"44":{"tf":1.0},"66":{"tf":1.7320508075688773},"67":{"tf":2.6457513110645909}}}},"d":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"17":{"tf":1.0},"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"5":{"tf":1.0}},"l":{"df":2,"docs":{"26":{"tf":1.4142135623730952},"72":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730952},"25":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.4142135623730952},"68":{"tf":1.4142135623730952},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"df":12,"docs":{"11":{"tf":1.4142135623730952},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"24":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.4142135623730952},"59":{"tf":1.0},"60":{"tf":1.4142135623730952},"66":{"tf":1.0},"75":{"tf":2.0},"9":{"tf":2.8284271247461905}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.4142135623730952},"60":{"tf":1.4142135623730952}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"30":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"25":{"tf":1.0},"70":{"tf":1.4142135623730952},"71":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":2.0},"13":{"tf":1.4142135623730952},"14":{"tf":1.0},"17":{"tf":2.449489742783178},"23":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.4641016151377546},"3":{"tf":1.0},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"35":{"tf":2.8284271247461905},"36":{"tf":2.8284271247461905},"37":{"tf":3.7416573867739415},"38":{"tf":2.8284271247461905},"39":{"tf":3.1622776601683797},"40":{"tf":2.0},"41":{"tf":3.872983346207417},"42":{"tf":2.0},"58":{"tf":2.23606797749979},"60":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":2.23606797749979},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":9,"docs":{"13":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730952},"34":{"tf":1.0},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"21":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"41":{"tf":2.0},"42":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}}},"f":{"df":2,"docs":{"23":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.4142135623730952}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"14":{"tf":2.23606797749979},"23":{"tf":1.0},"28":{"tf":1.4142135623730952},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.4142135623730952},"58":{"tf":1.4142135623730952},"59":{"tf":1.4142135623730952},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}},"i":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"14":{"tf":1.4142135623730952},"58":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":3.0},"37":{"tf":1.0},"75":{"tf":1.0}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.4142135623730952}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.4142135623730952}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"13":{"tf":1.7320508075688773},"39":{"tf":2.6457513110645909},"40":{"tf":1.7320508075688773},"41":{"tf":3.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"71":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688773},"28":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730952},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"df":1,"docs":{"40":{"tf":1.0}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":4,"docs":{"16":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0}}},"df":3,"docs":{"55":{"tf":1.4142135623730952},"71":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":2,"docs":{"24":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":7,"docs":{"11":{"tf":1.0},"17":{"tf":2.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"67":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"71":{"tf":1.4142135623730952},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":3.872983346207417},"67":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"16":{"tf":1.4142135623730952},"17":{"tf":3.0},"18":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688773},"38":{"tf":1.0},"60":{"tf":1.4142135623730952},"75":{"tf":1.0}}}}},"d":{"df":2,"docs":{"28":{"tf":3.0},"46":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.0},"55":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"24":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"27":{"tf":2.0},"28":{"tf":3.3166247903554},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.4142135623730952}},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"28":{"tf":3.0},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":2.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":16,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"53":{"tf":1.0}},"g":{"df":1,"docs":{"24":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.23606797749979},"33":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"63":{"tf":1.4142135623730952},"64":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}}}},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":15,"docs":{"11":{"tf":1.7320508075688773},"13":{"tf":1.0},"17":{"tf":2.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"38":{"tf":1.4142135623730952},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.7320508075688773},"76":{"tf":1.0},"8":{"tf":1.4142135623730952},"9":{"tf":1.4142135623730952}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.4142135623730952}}}}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"60":{"tf":1.4142135623730952}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":2.23606797749979},"39":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"38":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":2,"docs":{"24":{"tf":1.0},"71":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688773},"47":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"16":{"tf":1.0},"20":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":2.0}},"e":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"8":{"tf":1.4142135623730952},"80":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"42":{"tf":1.0},"77":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.7320508075688773},"23":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":8,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730952},"27":{"tf":1.7320508075688773},"28":{"tf":2.6457513110645909},"29":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"19":{"tf":1.0},"28":{"tf":2.8284271247461905},"3":{"tf":1.0},"31":{"tf":3.1622776601683797},"35":{"tf":3.605551275463989},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730952},"49":{"tf":1.4142135623730952},"54":{"tf":1.0},"56":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{":":{"2":{"a":{"0":{"3":{"a":{"6":{"0":{"5":{"9":{"df":0,"docs":{},"f":{"2":{"1":{"df":0,"docs":{},"e":{"1":{"5":{"0":{"a":{"df":0,"docs":{},"e":{"8":{"4":{"b":{"0":{"9":{"7":{"3":{"8":{"6":{"3":{"6":{"0":{"9":{"4":{"9":{"4":{"a":{"a":{"d":{"7":{"0":{"df":0,"docs":{},"f":{"0":{"a":{"8":{"0":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"6":{"4":{"b":{"d":{"d":{"d":{"8":{"d":{"9":{"2":{"4":{"6":{"5":{"8":{"1":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":2.0}}}}},"v":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"[":{"'":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"39":{"tf":3.1622776601683797},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"42":{"tf":2.6457513110645909},"50":{"tf":1.4142135623730952},"51":{"tf":2.8284271247461905}}},"df":3,"docs":{"27":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}}},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.7320508075688773}}}},"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"df":5,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730952},"61":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"24":{"tf":1.4142135623730952},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}},"e":{"a":{"d":{"df":6,"docs":{"45":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":6,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"39":{"tf":1.0},"82":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"y":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":1.0},"55":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"49":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"19":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"2":{"0":{"5":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":3,"docs":{"13":{"tf":1.7320508075688773},"17":{"tf":1.0},"58":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"v":{"0":{".":{"2":{".":{"0":{"df":2,"docs":{"17":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"16":{"tf":1.7320508075688773},"17":{"tf":2.8284271247461905},"3":{"tf":1.0},"37":{"tf":1.4142135623730952},"54":{"tf":1.0},"58":{"tf":2.0}}}},"df":3,"docs":{"16":{"tf":2.449489742783178},"17":{"tf":2.6457513110645909},"37":{"tf":2.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":2.6457513110645909}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"22":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"28":{"tf":2.0},"39":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.4142135623730952},"13":{"tf":1.0},"17":{"tf":2.0},"28":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"11":{"tf":1.4142135623730952},"13":{"tf":1.0},"14":{"tf":1.4142135623730952},"17":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":3.1622776601683797},"32":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":3.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.4142135623730952},"61":{"tf":2.23606797749979},"76":{"tf":1.0},"82":{"tf":1.0}},"e":{"]":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"28":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.4142135623730952},"42":{"tf":2.23606797749979}},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"82":{"tf":1.4142135623730952}}}}}}},"o":{"df":1,"docs":{"39":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"61":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.4142135623730952},"18":{"tf":1.7320508075688773}}}}},"p":{"c":{"df":2,"docs":{"46":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.7320508075688773},"61":{"tf":1.7320508075688773},"77":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730952},"37":{"tf":1.7320508075688773},"38":{"tf":2.0},"39":{"tf":2.6457513110645909},"49":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"77":{"tf":1.4142135623730952}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"34":{"tf":1.7320508075688773}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"39":{"tf":1.0}},"o":{"df":2,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":2.0}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"28":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.4142135623730952}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"23":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"23":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"39":{"tf":2.449489742783178},"42":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"39":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.4142135623730952}}}}}}},"df":1,"docs":{"67":{"tf":1.4142135623730952}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"28":{"tf":2.6457513110645909},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730952}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"79":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}}},"n":{"d":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":7,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}}}},"i":{"c":{"df":6,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":8,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":2.23606797749979},"30":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730952},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":11,"docs":{"20":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"4":{"tf":1.4142135623730952},"40":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.7320508075688773},"6":{"tf":1.0},"67":{"tf":2.0},"71":{"tf":1.4142135623730952},"82":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.4142135623730952},"9":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"14":{"tf":1.0},"29":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"16":{"tf":1.7320508075688773},"17":{"tf":2.23606797749979},"3":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688773},"53":{"tf":1.0},"54":{"tf":1.7320508075688773},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"29":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"41":{"tf":1.4142135623730952}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":2.8284271247461905}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.7320508075688773}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"41":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"31":{"tf":1.4142135623730952},"34":{"tf":1.7320508075688773},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":12,"docs":{"18":{"tf":1.7320508075688773},"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":4.123105625617661},"42":{"tf":1.7320508075688773},"46":{"tf":2.0},"47":{"tf":1.7320508075688773},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730952},"51":{"tf":1.4142135623730952},"57":{"tf":1.0}},"t":{"df":7,"docs":{"34":{"tf":3.3166247903554},"38":{"tf":3.7416573867739415},"39":{"tf":1.0},"41":{"tf":1.4142135623730952},"47":{"tf":1.4142135623730952},"49":{"tf":2.23606797749979},"57":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730952},"17":{"tf":2.6457513110645909},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.7320508075688773},"38":{"tf":1.4142135623730952},"58":{"tf":1.0},"60":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"42":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730952},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688773},"28":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":3,"docs":{"17":{"tf":2.23606797749979},"18":{"tf":1.0},"28":{"tf":2.6457513110645909}}}}}},"df":0,"docs":{}}},"s":{"d":{"df":1,"docs":{"28":{"tf":3.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.4142135623730952},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"39":{"tf":2.0},"44":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"75":{"tf":1.4142135623730952},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"38":{"tf":1.4142135623730952},"49":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"u":{"df":13,"docs":{"2":{"tf":1.4142135623730952},"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730952},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"6":{"tf":1.4142135623730952}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"14":{"tf":1.4142135623730952},"24":{"tf":5.196152422706632},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.1622776601683797},"29":{"tf":1.0},"39":{"tf":1.7320508075688773},"42":{"tf":1.0},"45":{"tf":1.4142135623730952},"53":{"tf":1.0},"59":{"tf":1.4142135623730952},"66":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"28":{"tf":1.7320508075688773},"39":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"28":{"tf":3.4641016151377546},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.7320508075688773},"42":{"tf":1.4142135623730952},"50":{"tf":1.0},"61":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"28":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}}}}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":1.7320508075688773},"14":{"tf":1.0},"18":{"tf":1.7320508075688773},"19":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.4142135623730952},"79":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}},"n":{"df":1,"docs":{"82":{"tf":1.4142135623730952}}}}}},"b":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"28":{"tf":1.7320508075688773},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"df":16,"docs":{"23":{"tf":1.0},"25":{"tf":1.7320508075688773},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.4142135623730952},"65":{"tf":1.4142135623730952},"66":{"tf":2.8284271247461905},"67":{"tf":2.449489742783178},"69":{"tf":1.4142135623730952},"70":{"tf":1.7320508075688773},"71":{"tf":2.6457513110645909},"72":{"tf":1.4142135623730952},"73":{"tf":1.4142135623730952},"77":{"tf":1.4142135623730952}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"51":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"39":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"39":{"tf":1.0},"41":{"tf":1.4142135623730952}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"1":{"5":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"0":{"5":{"7":{"4":{"8":{"5":{"a":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"p":{"df":1,"docs":{"5":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.4142135623730952},"19":{"tf":1.7320508075688773}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"14":{"tf":1.4142135623730952}}}}}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":2,"docs":{"51":{"tf":1.0},"7":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"28":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.4142135623730952},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"8":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"26":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"17":{"tf":1.4142135623730952},"28":{"tf":1.7320508075688773},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688773},"38":{"tf":1.0},"39":{"tf":2.0},"60":{"tf":1.4142135623730952}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"45":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"11":{"tf":1.0}}}},"t":{"df":3,"docs":{"66":{"tf":1.4142135623730952},"67":{"tf":1.4142135623730952},"71":{"tf":1.4142135623730952}}},"x":{":":{"/":{"/":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.7320508075688773}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"66":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":2.23606797749979},"34":{"tf":1.7320508075688773},"6":{"tf":1.0},"61":{"tf":2.0}}}},"df":0,"docs":{}},"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"26":{"tf":1.4142135623730952},"39":{"tf":1.0},"5":{"tf":1.4142135623730952},"69":{"tf":1.0}}}},"df":32,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730952},"15":{"tf":1.0},"16":{"tf":1.7320508075688773},"17":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730952},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"41":{"tf":1.0},"44":{"tf":1.4142135623730952},"45":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730952},"66":{"tf":2.0},"67":{"tf":1.4142135623730952},"69":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730952},"73":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"v":{"0":{".":{"0":{".":{"1":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"3":{".":{"0":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":2.0}}},"4":{".":{"1":{"df":1,"docs":{"3":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"0":{"df":2,"docs":{"2":{"tf":1.0},"30":{"tf":1.4142135623730952}}},"1":{"df":1,"docs":{"2":{"tf":1.0}}},"2":{"df":4,"docs":{"18":{"tf":1.0},"30":{"tf":2.0},"48":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":17,"docs":{"11":{"tf":1.7320508075688773},"14":{"tf":1.0},"17":{"tf":1.4142135623730952},"27":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"39":{"tf":1.4142135623730952},"41":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.0}}},"=":{"5":{"df":4,"docs":{"17":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"30":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":11,"docs":{"11":{"tf":1.7320508075688773},"17":{"tf":1.4142135623730952},"18":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.7320508075688773},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.4142135623730952},"18":{"tf":1.0},"37":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.7320508075688773},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":3,"docs":{"37":{"tf":1.4142135623730952},"60":{"tf":1.4142135623730952},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"28":{"tf":1.7320508075688773},"58":{"tf":1.0},"81":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"b":{"df":5,"docs":{"31":{"tf":3.1622776601683797},"32":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":3.0},"61":{"tf":2.23606797749979}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730952}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688773},"17":{"tf":1.0},"20":{"tf":1.0},"40":{"tf":1.4142135623730952},"41":{"tf":3.1622776601683797},"6":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"f":{"df":1,"docs":{"23":{"tf":1.0}}},"i":{"a":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":25,"docs":{"10":{"tf":1.7320508075688773},"11":{"tf":1.7320508075688773},"14":{"tf":1.4142135623730952},"17":{"tf":2.23606797749979},"18":{"tf":1.7320508075688773},"26":{"tf":1.4142135623730952},"27":{"tf":2.0},"28":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":3.4641016151377546},"40":{"tf":1.4142135623730952},"41":{"tf":2.6457513110645909},"42":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730952},"55":{"tf":1.0},"59":{"tf":1.4142135623730952},"60":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.7320508075688773},"55":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730952},"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"34":{"tf":1.0},"41":{"tf":2.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"31":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.7320508075688773},"49":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"30":{"tf":1.0},"48":{"tf":1.4142135623730952}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"31":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730952},"51":{"tf":1.4142135623730952},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"31":{"tf":2.6457513110645909},"32":{"tf":2.0},"33":{"tf":2.0},"34":{"tf":2.8284271247461905},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":2.23606797749979},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688773},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"40":{"tf":1.7320508075688773},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"40":{"tf":1.0},"44":{"tf":1.4142135623730952},"45":{"tf":1.4142135623730952},"55":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}}},"df":0,"docs":{}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"breadcrumbs":{"root":{"0":{".":{"1":{".":{"1":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"c":{"2":{"9":{"6":{"7":{"7":{"6":{"9":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.4142135623730952},"41":{"tf":3.3166247903554},"42":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"8":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"39":{"tf":1.4142135623730952}},"t":{"1":{"3":{":":{"5":{"9":{":":{"1":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"41":{"tf":1.7320508075688773}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"t":{"2":{"1":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"7":{"1":{"c":{"c":{"1":{"4":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"9":{"6":{"6":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"5":{"9":{":":{"1":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":2.0},"37":{"tf":2.23606797749979},"38":{"tf":2.6457513110645909},"39":{"tf":3.1622776601683797},"67":{"tf":1.4142135623730952}}},"1":{".":{"1":{"0":{"df":1,"docs":{"83":{"tf":1.4142135623730952}}},"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"76":{"tf":1.4142135623730952},"80":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"/":{"1":{"df":5,"docs":{"35":{"tf":1.0},"36":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":2.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"7":{"4":{"1":{"8":{"2":{"4":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.0}}},"1":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"8":{"df":5,"docs":{"13":{"tf":1.0},"39":{"tf":1.7320508075688773},"40":{"tf":1.7320508075688773},"41":{"tf":3.3166247903554},"42":{"tf":2.0}}},"df":0,"docs":{}}},"2":{"3":{"4":{"5":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.4142135623730952},"39":{"tf":2.23606797749979},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}},"4":{"df":1,"docs":{"41":{"tf":1.0}}},"5":{"3":{"8":{"5":{"7":{"6":{"2":{"0":{"5":{"4":{"7":{"1":{"5":{"7":{"7":{"5":{"2":{"5":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{":":{"5":{"0":{".":{"9":{"7":{"6":{"0":{"6":{"9":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"0":{"3":{"4":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"7":{"2":{".":{"1":{"7":{".":{"0":{".":{"5":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":8,"docs":{"13":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.7320508075688773},"67":{"tf":1.0},"76":{"tf":1.4142135623730952},"82":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"82":{"tf":1.0}}}}},"2":{"/":{"2":{"df":3,"docs":{"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"8":{"df":4,"docs":{"13":{"tf":1.0},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"8":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"41":{"tf":1.0}}},"4":{"df":1,"docs":{"41":{"tf":1.0}}},"6":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}},"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":1.0}}}},"3":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"3":{"3":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"4":{"8":{"df":1,"docs":{"38":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":1.0}},"s":{"df":1,"docs":{"36":{"tf":1.0}}}},"5":{"3":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"s":{"df":3,"docs":{"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}}},"6":{"6":{"df":1,"docs":{"39":{"tf":1.0}}},"7":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}},"9":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{},"s":{"df":2,"docs":{"35":{"tf":1.0},"42":{"tf":1.0}}}},"7":{"7":{"3":{"2":{"4":{"6":{"8":{"4":{"df":1,"docs":{"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"6":{"2":{"d":{"7":{"2":{"4":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"1":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.4142135623730952},"41":{"tf":3.1622776601683797},"42":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"5":{"4":{"a":{"a":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"7":{"c":{"df":3,"docs":{"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"4":{"df":0,"docs":{},"e":{"9":{"7":{"df":0,"docs":{},"f":{"3":{"a":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"1":{"c":{"6":{"d":{"0":{"8":{"1":{"b":{"8":{"df":0,"docs":{},"e":{"9":{"6":{"c":{"5":{"8":{"df":0,"docs":{},"e":{"d":{"0":{"0":{"c":{"9":{"b":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"1":{"7":{"4":{"5":{"df":0,"docs":{},"e":{"8":{"9":{"b":{"2":{"5":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"4":{"5":{"0":{"5":{"4":{"3":{"7":{"df":0,"docs":{},"f":{"0":{"1":{"5":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"18":{"tf":1.0},"77":{"tf":1.4142135623730952}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"61":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"27":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"d":{"d":{"df":2,"docs":{"22":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730952},"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":1,"docs":{"22":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"72":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":8,"docs":{"13":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.0},"41":{"tf":1.7320508075688773},"42":{"tf":1.4142135623730952}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.4142135623730952},"9":{"tf":1.4142135623730952}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":11,"docs":{"10":{"tf":1.7320508075688773},"11":{"tf":1.7320508075688773},"14":{"tf":1.4142135623730952},"18":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.0},"24":{"tf":2.0},"30":{"tf":1.4142135623730952},"48":{"tf":1.4142135623730952},"7":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"39":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"47":{"tf":1.7320508075688773},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"31":{"tf":3.3166247903554},"32":{"tf":2.23606797749979},"33":{"tf":2.6457513110645909},"34":{"tf":3.1622776601683797},"42":{"tf":1.0},"61":{"tf":2.23606797749979}}}}}}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":18,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.4142135623730952},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":1.7320508075688773},"34":{"tf":1.7320508075688773},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.7320508075688773},"38":{"tf":1.4142135623730952},"39":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}}}}}},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"35":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.4142135623730952},"38":{"tf":2.0},"39":{"tf":2.449489742783178},"40":{"tf":1.7320508075688773}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"44":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"v":{"1":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"20":{"tf":1.7320508075688773},"79":{"tf":1.4142135623730952},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.4142135623730952},"39":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"3":{"tf":1.0},"32":{"tf":3.3166247903554},"36":{"tf":3.7416573867739415},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730952},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"59":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.7320508075688773}},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730952}}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730952}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.4142135623730952}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"73":{"tf":1.0}}}}},"b":{"1":{"6":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":2,"docs":{"28":{"tf":1.0},"76":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"60":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}}},"t":{"a":{"df":5,"docs":{"16":{"tf":1.4142135623730952},"19":{"tf":1.0},"2":{"tf":1.4142135623730952},"24":{"tf":1.7320508075688773},"7":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730952}}}}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"60":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"48":{"tf":1.0},"80":{"tf":1.4142135623730952}}}}},"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"10":{"tf":2.0},"24":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"28":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":2.0},"51":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"39":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"7":{"1":{"4":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952}}},"6":{"df":1,"docs":{"41":{"tf":3.0}}},"7":{"df":1,"docs":{"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"5":{"b":{"c":{"4":{"7":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":14,"docs":{"11":{"tf":1.7320508075688773},"17":{"tf":1.7320508075688773},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"c":{"df":4,"docs":{"27":{"tf":1.0},"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":3,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.0}}}}},"df":2,"docs":{"40":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"26":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"28":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"65":{"tf":1.0},"66":{"tf":1.7320508075688773},"67":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":11,"docs":{"11":{"tf":1.7320508075688773},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730952}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"61":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":1,"docs":{"66":{"tf":1.0}},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.4142135623730952},"49":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"53":{"tf":1.4142135623730952},"63":{"tf":1.0},"77":{"tf":1.7320508075688773}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.4142135623730952},"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":2.23606797749979},"18":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.4142135623730952},"82":{"tf":2.23606797749979}}}}}},"n":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730952}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"16":{"tf":1.0},"17":{"tf":2.0},"24":{"tf":3.7416573867739415},"28":{"tf":2.23606797749979},"3":{"tf":1.7320508075688773},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":2.449489742783178},"40":{"tf":1.4142135623730952},"44":{"tf":1.0},"45":{"tf":1.4142135623730952},"47":{"tf":1.0},"49":{"tf":1.7320508075688773},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"10":{"tf":1.0},"28":{"tf":1.4142135623730952},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730952},"49":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.4142135623730952}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.4142135623730952}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"r":{"d":{"df":7,"docs":{"11":{"tf":1.4142135623730952},"12":{"tf":1.4142135623730952},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730952},"30":{"tf":1.0},"47":{"tf":1.4142135623730952}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":2.449489742783178},"30":{"tf":2.23606797749979},"31":{"tf":3.0},"32":{"tf":2.449489742783178},"33":{"tf":2.449489742783178},"34":{"tf":3.1622776601683797},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":3.3166247903554},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688773},"43":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":3.1622776601683797},"51":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"b":{"a":{"c":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":2.23606797749979},"12":{"tf":2.0},"13":{"tf":1.4142135623730952},"14":{"tf":1.4142135623730952},"17":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.4142135623730952}}}}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":76,"docs":{"1":{"tf":2.0},"10":{"tf":1.4142135623730952},"11":{"tf":2.6457513110645909},"12":{"tf":1.0},"13":{"tf":2.23606797749979},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":2.6457513110645909},"17":{"tf":3.605551275463989},"18":{"tf":1.7320508075688773},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688773},"22":{"tf":1.4142135623730952},"23":{"tf":1.7320508075688773},"24":{"tf":4.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730952},"27":{"tf":2.23606797749979},"28":{"tf":3.1622776601683797},"29":{"tf":1.0},"3":{"tf":1.7320508075688773},"30":{"tf":1.0},"31":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"33":{"tf":2.449489742783178},"34":{"tf":2.6457513110645909},"35":{"tf":3.872983346207417},"36":{"tf":4.0},"37":{"tf":3.605551275463989},"38":{"tf":4.358898943540674},"39":{"tf":5.291502622129181},"4":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":3.605551275463989},"42":{"tf":2.6457513110645909},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.7320508075688773},"46":{"tf":2.8284271247461905},"47":{"tf":1.4142135623730952},"48":{"tf":1.0},"49":{"tf":2.6457513110645909},"5":{"tf":2.8284271247461905},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688773},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730952},"6":{"tf":1.7320508075688773},"60":{"tf":1.4142135623730952},"61":{"tf":1.0},"62":{"tf":1.4142135623730952},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":1.7320508075688773},"69":{"tf":1.4142135623730952},"7":{"tf":1.0},"70":{"tf":1.4142135623730952},"71":{"tf":1.4142135623730952},"73":{"tf":2.6457513110645909},"76":{"tf":1.0},"78":{"tf":1.4142135623730952},"79":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.7320508075688773},"82":{"tf":1.0},"83":{"tf":1.4142135623730952},"9":{"tf":1.4142135623730952}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":6,"docs":{"14":{"tf":2.23606797749979},"15":{"tf":2.0},"19":{"tf":1.4142135623730952},"30":{"tf":1.4142135623730952},"31":{"tf":1.0},"33":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"11":{"tf":1.7320508075688773},"14":{"tf":1.4142135623730952},"17":{"tf":1.0},"19":{"tf":1.4142135623730952},"58":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"75":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"37":{"tf":1.7320508075688773},"39":{"tf":1.4142135623730952},"63":{"tf":1.0}}}}}}}}},"t":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"28":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":11,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730952},"19":{"tf":1.0},"30":{"tf":1.7320508075688773},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":2.23606797749979},"41":{"tf":1.4142135623730952},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.4142135623730952}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"31":{"tf":1.0},"34":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"56":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"41":{"tf":2.449489742783178},"42":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730952},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"43":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":2.0},"5":{"tf":1.7320508075688773},"52":{"tf":1.7320508075688773},"62":{"tf":2.0},"63":{"tf":1.7320508075688773},"69":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":10,"docs":{"13":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.7320508075688773},"43":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730952}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":34,"docs":{"1":{"tf":1.0},"43":{"tf":1.7320508075688773},"44":{"tf":2.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730952},"47":{"tf":1.4142135623730952},"48":{"tf":1.4142135623730952},"49":{"tf":1.4142135623730952},"50":{"tf":1.4142135623730952},"51":{"tf":1.4142135623730952},"52":{"tf":1.4142135623730952},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730952},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730952},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.7320508075688773}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"7":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":8,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":2.6457513110645909},"38":{"tf":1.4142135623730952},"58":{"tf":1.0},"60":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730952},"18":{"tf":1.7320508075688773},"37":{"tf":1.0},"60":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"o":{"c":{"df":3,"docs":{"64":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"/":{"/":{"df":0,"docs":{},"f":{"d":{"2":{"9":{"5":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"1":{"5":{"5":{"b":{"d":{"df":0,"docs":{},"f":{"0":{"8":{"d":{"1":{"d":{"a":{"3":{"4":{"1":{"c":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"a":{"a":{"0":{"d":{"1":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"e":{"a":{"a":{"a":{"d":{"6":{"9":{"5":{"0":{"a":{"9":{"4":{"6":{"3":{"5":{"5":{"7":{"8":{"9":{"6":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"39":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730952}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.7320508075688773},"26":{"tf":1.0},"27":{"tf":1.0},"6":{"tf":1.4142135623730952},"65":{"tf":1.0}}}}}}}},"df":1,"docs":{"55":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"55":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":69,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":2.6457513110645909},"12":{"tf":1.0},"13":{"tf":2.23606797749979},"14":{"tf":3.0},"15":{"tf":1.0},"16":{"tf":3.3166247903554},"17":{"tf":3.605551275463989},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"24":{"tf":2.6457513110645909},"25":{"tf":1.7320508075688773},"26":{"tf":1.7320508075688773},"27":{"tf":2.449489742783178},"28":{"tf":3.0},"29":{"tf":1.4142135623730952},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.8284271247461905},"45":{"tf":1.0},"46":{"tf":2.6457513110645909},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"5":{"tf":2.6457513110645909},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730952},"53":{"tf":1.4142135623730952},"54":{"tf":1.4142135623730952},"55":{"tf":1.7320508075688773},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.8284271247461905},"59":{"tf":1.0},"6":{"tf":1.4142135623730952},"60":{"tf":1.0},"62":{"tf":1.4142135623730952},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"69":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":2.449489742783178},"73":{"tf":1.4142135623730952},"75":{"tf":1.0},"8":{"tf":1.4142135623730952},"82":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"5":{"tf":1.0}}},"’":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.7320508075688773}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"69":{"tf":1.0},"77":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"70":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"82":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"10":{"tf":1.7320508075688773},"12":{"tf":1.7320508075688773},"15":{"tf":1.7320508075688773},"18":{"tf":1.0},"19":{"tf":1.7320508075688773},"30":{"tf":1.7320508075688773},"39":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.7320508075688773},"53":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":2.0},"75":{"tf":1.0},"8":{"tf":1.4142135623730952},"9":{"tf":2.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"$":{"(":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"31":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"v":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"39":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}}}}}},"df":1,"docs":{"67":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":10,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":19,"docs":{"21":{"tf":1.4142135623730952},"23":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688773},"29":{"tf":1.4142135623730952},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730952},"50":{"tf":1.0},"6":{"tf":1.4142135623730952},"60":{"tf":1.0},"63":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"t":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":2.0}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":16,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"47":{"tf":1.4142135623730952},"49":{"tf":2.8284271247461905},"54":{"tf":1.4142135623730952},"55":{"tf":2.23606797749979},"56":{"tf":1.7320508075688773},"57":{"tf":1.7320508075688773},"59":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.7320508075688773},"77":{"tf":1.7320508075688773}}}}}}}},"f":{"5":{"5":{"d":{"b":{"6":{"3":{"2":{"df":1,"docs":{"41":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"7":{"9":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"6":{"1":{"4":{"1":{"1":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"51":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.4142135623730952}},"p":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.4142135623730952},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":2.6457513110645909}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":16,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"30":{"tf":1.4142135623730952},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"10":{"tf":1.7320508075688773},"12":{"tf":1.4142135623730952},"15":{"tf":1.4142135623730952},"16":{"tf":1.4142135623730952},"18":{"tf":1.4142135623730952},"19":{"tf":2.23606797749979},"30":{"tf":2.0},"34":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":2.23606797749979},"48":{"tf":2.23606797749979},"5":{"tf":1.0},"50":{"tf":1.7320508075688773},"6":{"tf":1.0},"7":{"tf":2.449489742783178},"80":{"tf":1.7320508075688773},"82":{"tf":1.4142135623730952},"9":{"tf":1.4142135623730952}},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"28":{"tf":1.4142135623730952}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"76":{"tf":1.7320508075688773},"79":{"tf":1.0},"9":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"44":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":21,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730952},"14":{"tf":1.0},"15":{"tf":1.4142135623730952},"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":2.449489742783178},"30":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730952},"49":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730952}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"71":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.4142135623730952},"21":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.7320508075688773}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}},"g":{"a":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.7320508075688773},"82":{"tf":1.4142135623730952}},"s":{"=":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"15":{"tf":1.0},"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"18":{"tf":1.0},"48":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"24":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"41":{"tf":1.7320508075688773},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}}}}},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"8":{"6":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"67":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"p":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"40":{"tf":1.0},"67":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688773},"47":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.4142135623730952},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688773},"39":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":22,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688773},"14":{"tf":1.0},"17":{"tf":3.0},"21":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":3.7416573867739415},"36":{"tf":3.7416573867739415},"37":{"tf":3.0},"38":{"tf":3.872983346207417},"39":{"tf":3.605551275463989},"40":{"tf":1.7320508075688773},"41":{"tf":3.3166247903554},"42":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.7320508075688773},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.7320508075688773}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"30":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":1,"docs":{"8":{"tf":1.0}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"39":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"58":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"24":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.4142135623730952},"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730952},"19":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730952},"14":{"tf":1.0},"16":{"tf":1.4142135623730952},"17":{"tf":1.7320508075688773},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730952},"25":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.4142135623730952},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.7320508075688773},"68":{"tf":1.7320508075688773},"73":{"tf":1.0},"79":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"4":{"tf":1.4142135623730952},"47":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"16":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"24":{"tf":3.4641016151377546},"45":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"16":{"tf":1.4142135623730952}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"11":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"39":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"'":{"df":0,"docs":{},"{":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"[":{"*":{"]":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"14":{"tf":1.4142135623730952},"28":{"tf":2.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":3.0},"42":{"tf":1.4142135623730952},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"81":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":21,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730952},"15":{"tf":1.0},"30":{"tf":1.4142135623730952},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"38":{"tf":1.4142135623730952},"39":{"tf":2.6457513110645909},"40":{"tf":2.0},"41":{"tf":2.8284271247461905},"42":{"tf":1.7320508075688773},"49":{"tf":1.0},"50":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}}},"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"18":{"tf":1.4142135623730952}}},"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":2.0},"18":{"tf":1.4142135623730952},"37":{"tf":1.0},"39":{"tf":2.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.23606797749979},"7":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"19":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":44,"docs":{"1":{"tf":2.0},"10":{"tf":1.4142135623730952},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730952},"19":{"tf":1.4142135623730952},"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730952},"29":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.7320508075688773},"53":{"tf":1.7320508075688773},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730952},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730952},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.4142135623730952},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688773},"81":{"tf":1.0},"83":{"tf":1.4142135623730952}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"13":{"tf":1.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"58":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"6":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"75":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"13":{"tf":1.7320508075688773},"14":{"tf":1.4142135623730952},"31":{"tf":3.1622776601683797},"32":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":3.0},"5":{"tf":1.0},"61":{"tf":2.23606797749979},"76":{"tf":1.7320508075688773}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.0},"76":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"26":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688773},"67":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"55":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"17":{"tf":2.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"18":{"tf":1.0},"67":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"16":{"tf":1.4142135623730952},"18":{"tf":1.0},"19":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":1.7320508075688773},"34":{"tf":1.7320508075688773},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"17":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.4142135623730952},"44":{"tf":1.0},"66":{"tf":1.7320508075688773},"67":{"tf":2.8284271247461905}}}},"d":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"17":{"tf":1.0},"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"5":{"tf":1.0}},"l":{"df":2,"docs":{"26":{"tf":1.4142135623730952},"72":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730952},"25":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.7320508075688773},"68":{"tf":1.7320508075688773},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"df":12,"docs":{"11":{"tf":1.4142135623730952},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"24":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.4142135623730952},"59":{"tf":1.0},"60":{"tf":1.7320508075688773},"66":{"tf":1.0},"75":{"tf":2.0},"9":{"tf":3.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.4142135623730952},"60":{"tf":1.4142135623730952}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"30":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"25":{"tf":1.0},"70":{"tf":1.4142135623730952},"71":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":2.0},"13":{"tf":1.4142135623730952},"14":{"tf":1.0},"17":{"tf":2.449489742783178},"23":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.4641016151377546},"3":{"tf":1.0},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"35":{"tf":2.8284271247461905},"36":{"tf":2.8284271247461905},"37":{"tf":3.7416573867739415},"38":{"tf":2.8284271247461905},"39":{"tf":3.1622776601683797},"40":{"tf":2.0},"41":{"tf":3.872983346207417},"42":{"tf":2.0},"58":{"tf":2.23606797749979},"60":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":2.23606797749979},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":9,"docs":{"13":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730952},"34":{"tf":1.0},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"21":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"41":{"tf":2.0},"42":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}}},"f":{"df":2,"docs":{"23":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.4142135623730952}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"14":{"tf":2.23606797749979},"23":{"tf":1.0},"28":{"tf":1.4142135623730952},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688773},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.4142135623730952},"58":{"tf":1.4142135623730952},"59":{"tf":1.4142135623730952},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.4142135623730952},"9":{"tf":1.0}},"i":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"14":{"tf":1.4142135623730952},"58":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":3.0},"37":{"tf":1.0},"75":{"tf":1.0}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.4142135623730952}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.4142135623730952}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"13":{"tf":1.7320508075688773},"39":{"tf":2.6457513110645909},"40":{"tf":1.7320508075688773},"41":{"tf":3.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"71":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688773},"28":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730952},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"df":1,"docs":{"40":{"tf":1.0}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":4,"docs":{"16":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0}}},"df":3,"docs":{"55":{"tf":1.4142135623730952},"71":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":2,"docs":{"24":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":7,"docs":{"11":{"tf":1.0},"17":{"tf":2.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"67":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.4142135623730952}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"71":{"tf":1.4142135623730952},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":3.872983346207417},"67":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"16":{"tf":1.4142135623730952},"17":{"tf":3.0},"18":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688773},"38":{"tf":1.0},"60":{"tf":1.4142135623730952},"75":{"tf":1.0}}}}},"d":{"df":2,"docs":{"28":{"tf":3.0},"46":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.0},"55":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"24":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"27":{"tf":2.0},"28":{"tf":3.3166247903554},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.4142135623730952}},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"28":{"tf":3.0},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":2.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":16,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"53":{"tf":1.0}},"g":{"df":1,"docs":{"24":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.23606797749979},"33":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"63":{"tf":1.4142135623730952},"64":{"tf":1.0},"75":{"tf":1.4142135623730952},"78":{"tf":1.0}}}}}}},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":15,"docs":{"11":{"tf":1.7320508075688773},"13":{"tf":1.0},"17":{"tf":2.0},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.7320508075688773},"38":{"tf":1.7320508075688773},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688773},"9":{"tf":1.4142135623730952}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.4142135623730952}}}}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"60":{"tf":1.7320508075688773}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":2.23606797749979},"39":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"38":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":2,"docs":{"24":{"tf":1.0},"71":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":2.0},"47":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"16":{"tf":1.0},"20":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":2.23606797749979}},"e":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"8":{"tf":1.4142135623730952},"80":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"42":{"tf":1.0},"77":{"tf":1.4142135623730952}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.4142135623730952},"46":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.7320508075688773},"23":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":8,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730952},"27":{"tf":2.0},"28":{"tf":2.8284271247461905},"29":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"19":{"tf":1.0},"28":{"tf":2.8284271247461905},"3":{"tf":1.0},"31":{"tf":3.3166247903554},"35":{"tf":3.7416573867739415},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730952},"49":{"tf":1.4142135623730952},"54":{"tf":1.0},"56":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{":":{"2":{"a":{"0":{"3":{"a":{"6":{"0":{"5":{"9":{"df":0,"docs":{},"f":{"2":{"1":{"df":0,"docs":{},"e":{"1":{"5":{"0":{"a":{"df":0,"docs":{},"e":{"8":{"4":{"b":{"0":{"9":{"7":{"3":{"8":{"6":{"3":{"6":{"0":{"9":{"4":{"9":{"4":{"a":{"a":{"d":{"7":{"0":{"df":0,"docs":{},"f":{"0":{"a":{"8":{"0":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"6":{"4":{"b":{"d":{"d":{"d":{"8":{"d":{"9":{"2":{"4":{"6":{"5":{"8":{"1":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":2.0}}}}},"v":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"[":{"'":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"39":{"tf":3.1622776601683797},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"42":{"tf":2.6457513110645909},"50":{"tf":1.4142135623730952},"51":{"tf":3.0}}},"df":3,"docs":{"27":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}}},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":2.0}}}},"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"df":5,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.7320508075688773},"61":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"24":{"tf":1.4142135623730952},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}},"e":{"a":{"d":{"df":6,"docs":{"45":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":6,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"39":{"tf":1.0},"82":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"y":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":1.0},"55":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"49":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"19":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.4142135623730952}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"2":{"0":{"5":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":3,"docs":{"13":{"tf":2.0},"17":{"tf":1.0},"58":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"v":{"0":{".":{"2":{".":{"0":{"df":2,"docs":{"17":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"16":{"tf":1.7320508075688773},"17":{"tf":3.0},"3":{"tf":1.0},"37":{"tf":1.7320508075688773},"54":{"tf":1.0},"58":{"tf":2.23606797749979}}}},"df":3,"docs":{"16":{"tf":2.449489742783178},"17":{"tf":2.6457513110645909},"37":{"tf":2.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":2.6457513110645909}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"22":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"28":{"tf":2.0},"39":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.4142135623730952},"13":{"tf":1.0},"17":{"tf":2.0},"28":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"11":{"tf":1.7320508075688773},"13":{"tf":1.0},"14":{"tf":1.7320508075688773},"17":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":3.1622776601683797},"32":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":3.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.7320508075688773},"61":{"tf":2.23606797749979},"76":{"tf":1.0},"82":{"tf":1.0}},"e":{"]":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"28":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.4142135623730952},"42":{"tf":2.449489742783178}},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"82":{"tf":1.4142135623730952}}}}}}},"o":{"df":1,"docs":{"39":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"61":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.4142135623730952},"18":{"tf":2.0}}}}},"p":{"c":{"df":2,"docs":{"46":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":1.7320508075688773},"34":{"tf":2.0},"61":{"tf":2.0},"77":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.4142135623730952}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730952},"37":{"tf":1.7320508075688773},"38":{"tf":2.0},"39":{"tf":2.6457513110645909},"49":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"77":{"tf":1.4142135623730952}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"34":{"tf":1.7320508075688773}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"39":{"tf":1.0}},"o":{"df":2,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":2.0}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"28":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.4142135623730952}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"23":{"tf":2.449489742783178},"44":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"23":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.449489742783178}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"39":{"tf":2.449489742783178},"42":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"39":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.4142135623730952}}}}}}},"df":1,"docs":{"67":{"tf":1.4142135623730952}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"28":{"tf":2.6457513110645909},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730952}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"79":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}}},"n":{"d":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":7,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}}}},"i":{"c":{"df":6,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":8,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":2.23606797749979},"30":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730952},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":11,"docs":{"20":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"4":{"tf":1.4142135623730952},"40":{"tf":1.4142135623730952},"49":{"tf":1.0},"5":{"tf":1.7320508075688773},"6":{"tf":1.4142135623730952},"67":{"tf":2.0},"71":{"tf":1.4142135623730952},"82":{"tf":1.4142135623730952}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.4142135623730952},"9":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"14":{"tf":1.0},"29":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"16":{"tf":1.7320508075688773},"17":{"tf":2.449489742783178},"3":{"tf":1.4142135623730952},"34":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688773},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"29":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"41":{"tf":1.4142135623730952}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":2.8284271247461905}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.7320508075688773}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"41":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"31":{"tf":1.4142135623730952},"34":{"tf":1.7320508075688773},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":12,"docs":{"18":{"tf":1.7320508075688773},"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":4.242640687119285},"42":{"tf":2.0},"46":{"tf":2.23606797749979},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688773},"51":{"tf":1.4142135623730952},"57":{"tf":1.0}},"t":{"df":7,"docs":{"34":{"tf":3.4641016151377546},"38":{"tf":3.872983346207417},"39":{"tf":1.0},"41":{"tf":1.4142135623730952},"47":{"tf":1.4142135623730952},"49":{"tf":2.449489742783178},"57":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730952},"17":{"tf":2.6457513110645909},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.7320508075688773},"38":{"tf":1.4142135623730952},"58":{"tf":1.0},"60":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"42":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730952},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688773},"28":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":3,"docs":{"17":{"tf":2.23606797749979},"18":{"tf":1.0},"28":{"tf":2.6457513110645909}}}}}},"df":0,"docs":{}}},"s":{"d":{"df":1,"docs":{"28":{"tf":3.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.4142135623730952},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"39":{"tf":2.0},"44":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"75":{"tf":1.7320508075688773},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"38":{"tf":1.7320508075688773},"49":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"u":{"df":13,"docs":{"2":{"tf":1.7320508075688773},"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730952},"75":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"6":{"tf":1.4142135623730952}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"14":{"tf":1.4142135623730952},"24":{"tf":5.196152422706632},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.1622776601683797},"29":{"tf":1.0},"39":{"tf":1.7320508075688773},"42":{"tf":1.0},"45":{"tf":1.4142135623730952},"53":{"tf":1.0},"59":{"tf":1.4142135623730952},"66":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"28":{"tf":1.7320508075688773},"39":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"28":{"tf":3.4641016151377546},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.7320508075688773},"42":{"tf":1.4142135623730952},"50":{"tf":1.0},"61":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"28":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}}}}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":2.0},"14":{"tf":1.0},"18":{"tf":1.7320508075688773},"19":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"46":{"tf":1.0},"55":{"tf":1.4142135623730952},"79":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}},"n":{"df":1,"docs":{"82":{"tf":1.4142135623730952}}}}}},"b":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"28":{"tf":1.7320508075688773},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"23":{"tf":1.0},"25":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.7320508075688773},"65":{"tf":1.7320508075688773},"66":{"tf":3.1622776601683797},"67":{"tf":3.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688773},"70":{"tf":2.23606797749979},"71":{"tf":3.0},"72":{"tf":2.0},"73":{"tf":1.7320508075688773},"77":{"tf":1.4142135623730952}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"51":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"39":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"39":{"tf":1.0},"41":{"tf":1.4142135623730952}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"1":{"5":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"0":{"5":{"7":{"4":{"8":{"5":{"a":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"p":{"df":1,"docs":{"5":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.4142135623730952},"19":{"tf":2.0}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"14":{"tf":1.4142135623730952}}}}}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":2,"docs":{"51":{"tf":1.0},"7":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"28":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"74":{"tf":1.4142135623730952}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.4142135623730952},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"8":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"26":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"17":{"tf":1.4142135623730952},"28":{"tf":1.7320508075688773},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688773},"38":{"tf":1.0},"39":{"tf":2.0},"60":{"tf":1.4142135623730952}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"45":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"11":{"tf":1.0}}}},"t":{"df":3,"docs":{"66":{"tf":1.4142135623730952},"67":{"tf":1.7320508075688773},"71":{"tf":1.7320508075688773}}},"x":{":":{"/":{"/":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.7320508075688773}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"66":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":2.23606797749979},"34":{"tf":1.7320508075688773},"6":{"tf":1.0},"61":{"tf":2.0}}}},"df":0,"docs":{}},"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"26":{"tf":1.7320508075688773},"39":{"tf":1.4142135623730952},"5":{"tf":1.4142135623730952},"69":{"tf":1.0}}}},"df":50,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730952},"11":{"tf":1.4142135623730952},"12":{"tf":1.4142135623730952},"13":{"tf":1.4142135623730952},"14":{"tf":1.7320508075688773},"15":{"tf":1.4142135623730952},"16":{"tf":2.0},"17":{"tf":2.23606797749979},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730952},"23":{"tf":1.7320508075688773},"24":{"tf":1.4142135623730952},"25":{"tf":1.0},"26":{"tf":1.4142135623730952},"27":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"29":{"tf":1.7320508075688773},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"44":{"tf":1.4142135623730952},"45":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730952},"66":{"tf":2.0},"67":{"tf":1.4142135623730952},"69":{"tf":1.0},"7":{"tf":1.4142135623730952},"71":{"tf":1.4142135623730952},"73":{"tf":1.0},"8":{"tf":1.4142135623730952},"81":{"tf":1.7320508075688773},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"v":{"0":{".":{"0":{".":{"1":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"3":{".":{"0":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":2.0}}},"4":{".":{"1":{"df":1,"docs":{"3":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"0":{"df":2,"docs":{"2":{"tf":1.0},"30":{"tf":1.4142135623730952}}},"1":{"df":1,"docs":{"2":{"tf":1.0}}},"2":{"df":4,"docs":{"18":{"tf":1.0},"30":{"tf":2.0},"48":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":17,"docs":{"11":{"tf":1.7320508075688773},"14":{"tf":1.0},"17":{"tf":1.4142135623730952},"27":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"39":{"tf":1.4142135623730952},"41":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.0}}},"=":{"5":{"df":4,"docs":{"17":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"30":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":11,"docs":{"11":{"tf":1.7320508075688773},"17":{"tf":1.4142135623730952},"18":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.7320508075688773},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.4142135623730952},"18":{"tf":1.0},"37":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.7320508075688773},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":3,"docs":{"37":{"tf":1.4142135623730952},"60":{"tf":1.4142135623730952},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"28":{"tf":1.7320508075688773},"58":{"tf":1.0},"81":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"b":{"df":5,"docs":{"31":{"tf":3.1622776601683797},"32":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":3.0},"61":{"tf":2.23606797749979}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730952}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688773},"17":{"tf":1.0},"20":{"tf":1.0},"40":{"tf":1.4142135623730952},"41":{"tf":3.1622776601683797},"6":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"f":{"df":1,"docs":{"23":{"tf":1.0}}},"i":{"a":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":25,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688773},"14":{"tf":1.4142135623730952},"17":{"tf":2.23606797749979},"18":{"tf":1.7320508075688773},"26":{"tf":1.4142135623730952},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":3.4641016151377546},"40":{"tf":1.4142135623730952},"41":{"tf":2.6457513110645909},"42":{"tf":2.23606797749979},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730952},"55":{"tf":1.0},"59":{"tf":1.4142135623730952},"60":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.7320508075688773},"55":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.7320508075688773},"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"34":{"tf":1.0},"41":{"tf":2.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"31":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.7320508075688773},"49":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"30":{"tf":1.0},"48":{"tf":1.7320508075688773}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"31":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730952},"51":{"tf":1.4142135623730952},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"31":{"tf":2.6457513110645909},"32":{"tf":2.0},"33":{"tf":2.0},"34":{"tf":2.8284271247461905},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":2.23606797749979},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688773},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"40":{"tf":1.7320508075688773},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"40":{"tf":1.0},"44":{"tf":1.4142135623730952},"45":{"tf":1.4142135623730952},"55":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}}},"df":0,"docs":{}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"title":{"root":{"1":{".":{"1":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":4,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"32":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"82":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"df":19,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":9,"docs":{"21":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"64":{"tf":1.0},"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"64":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"9":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"33":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"d":{"df":6,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"31":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.0}}}}}}}}}},"v":{"c":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}},"b":{"a":{"c":{"df":5,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"40":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}},"t":{"df":4,"docs":{"34":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"u":{"df":3,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"25":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730952},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"71":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"26":{"tf":1.0},"39":{"tf":1.0}}}},"df":1,"docs":{"5":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}; \ No newline at end of file diff --git a/docs/searchindex.json b/docs/searchindex.json index 8391d0c2..d4c1e208 100644 --- a/docs/searchindex.json +++ b/docs/searchindex.json @@ -1 +1 @@ -{"doc_urls":["Home.html#introduction","Home.html#kubernetes-csi-documentation","Home.html#project-status","Home.html#sidecar-container-status","Home.html#installation","UsingCSIDriver.html#using-csi-drivers","Setup.html#setup","Setup.html#enabling-features","Setup.html#enable-privileged-pods","Setup.html#enabling-mount-propagation","Setup.html#enable-raw-block-volume-support-alpha","Setup.html#csidriver-custom-resource-alpha","Setup.html#enabling-csidriver","Setup.html#listing-registered-csi-drivers","Setup.html#csinodeinfo-custom-resource-alpha","Setup.html#enabling-csinodeinfo","Setup.html#csi-driver-discovery-beta","Setup.html#registrar-sidecar-configuration","Setup.html#the-kubelet-root-directory","Setup.html#archives","Deployment.html#deployment","Drivers.html#drivers","Drivers.html#sample-drivers","Drivers.html#production-drivers","Drivers.html#testing","Usage.html#usage","Usage.html#pre-provisioned-volumes","Usage.html#dynamic-provisioning","Example.html#example","Example.html#deployment","Example.html#create-rbac-rules-for-csi-provisioner","Example.html#create-rbac-rules-for-csi-attacher","Example.html#create-rbac-rules-for-node-plugin","Example.html#create-rbac-rules-for-csi-snapshotter","Example.html#deploy-csi-provisioner-in-statefulset-pod","Example.html#deploy-csi-attacher-in-statefulset-pod","Example.html#deploy-driver-registrar-and-hostpath-csi-plugin-in-daemonset-pod","Example.html#deploy-csi-snapshotter-in-statefulset-pod","Example.html#usage","Example.html#confirming-the-setup","Example.html#snapshot-support","Example.html#restore-volume-from-snapshot-support","Development.html#development","CSI-Driver.html#developing-a-csi-driver","CSI-Driver.html#other-resources","Implement-Snapshot-Feature.html#implement-snapshot-feature","Implement-Snapshot-Feature.html#snapshot-apis","Implement-Snapshot-Feature.html#enable-volumesnapshotdatasource-feature-gate","Implement-Snapshot-Feature.html#deploy-external-snapshotter-with-csi-driver","Implement-Snapshot-Feature.html#test-snapshot-feature","Implement-Snapshot-Feature.html#pvc-not-bound","CSI-Kubernetes.html#deploying-in-kubernetes","CSI-Kubernetes.html#overview","CSI-Kubernetes.html#sidecar-containers","CSI-Kubernetes.html#external-attacher","CSI-Kubernetes.html#external-provisioner","CSI-Kubernetes.html#external-snapshotter","CSI-Kubernetes.html#driver-registrar","CSI-Kubernetes.html#kubelet","CSI-Kubernetes.html#mount-point","CSI-Kubernetes.html#rbac-rules","CSI-Kubernetes.html#deploying","CSI-Kubernetes.html#examples","CSI-Kubernetes.html#more-information","Testing.html#testing","Testing-Clients.html#testing-csi-clients","Testing-Clients.html#csi-test-unit-test-mock-driver","Testing-Clients.html#more-information","Testing-Clients.html#hostpath-driver","Testing-Drivers.html#testing-csi-drivers","Testing-Drivers.html#unit-testing","Testing-Drivers.html#functional-testing","Testing-Drivers.html#csi-sanity","Troubleshooting.html#troubleshooting","Troubleshooting.html#node-plugin-pod-does-not-start-with--runcontainererror--status","Troubleshooting.html#external-attacher-cant-find--volumeattachments","Troubleshooting.html#problems-with-the-external-components","References.html#references","Archive.html#archive","Kubernetes-1.9.html#csi-with-kubernetes-19","Kubernetes-1.9.html#developers","Kubernetes-1.9.html#confirming-the-setup","Kubernetes-1.10.html#csi-with-kubernetes-110"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":1,"title":1},"1":{"body":15,"breadcrumbs":3,"title":3},"10":{"body":32,"breadcrumbs":9,"title":6},"11":{"body":129,"breadcrumbs":7,"title":4},"12":{"body":27,"breadcrumbs":5,"title":2},"13":{"body":73,"breadcrumbs":7,"title":4},"14":{"body":87,"breadcrumbs":7,"title":4},"15":{"body":27,"breadcrumbs":5,"title":2},"16":{"body":83,"breadcrumbs":7,"title":4},"17":{"body":273,"breadcrumbs":6,"title":3},"18":{"body":48,"breadcrumbs":6,"title":3},"19":{"body":8,"breadcrumbs":4,"title":1},"2":{"body":13,"breadcrumbs":2,"title":2},"20":{"body":24,"breadcrumbs":4,"title":1},"21":{"body":17,"breadcrumbs":4,"title":1},"22":{"body":40,"breadcrumbs":5,"title":2},"23":{"body":170,"breadcrumbs":5,"title":2},"24":{"body":10,"breadcrumbs":4,"title":1},"25":{"body":24,"breadcrumbs":4,"title":1},"26":{"body":68,"breadcrumbs":6,"title":3},"27":{"body":350,"breadcrumbs":5,"title":2},"28":{"body":14,"breadcrumbs":4,"title":1},"29":{"body":56,"breadcrumbs":4,"title":1},"3":{"body":22,"breadcrumbs":3,"title":3},"30":{"body":131,"breadcrumbs":8,"title":5},"31":{"body":90,"breadcrumbs":8,"title":5},"32":{"body":99,"breadcrumbs":8,"title":5},"33":{"body":142,"breadcrumbs":8,"title":5},"34":{"body":125,"breadcrumbs":8,"title":5},"35":{"body":130,"breadcrumbs":8,"title":5},"36":{"body":167,"breadcrumbs":11,"title":8},"37":{"body":157,"breadcrumbs":8,"title":5},"38":{"body":431,"breadcrumbs":4,"title":1},"39":{"body":100,"breadcrumbs":5,"title":2},"4":{"body":9,"breadcrumbs":1,"title":1},"40":{"body":337,"breadcrumbs":5,"title":2},"41":{"body":135,"breadcrumbs":7,"title":4},"42":{"body":8,"breadcrumbs":1,"title":1},"43":{"body":35,"breadcrumbs":4,"title":3},"44":{"body":24,"breadcrumbs":2,"title":1},"45":{"body":53,"breadcrumbs":7,"title":3},"46":{"body":21,"breadcrumbs":6,"title":2},"47":{"body":19,"breadcrumbs":8,"title":4},"48":{"body":58,"breadcrumbs":9,"title":5},"49":{"body":39,"breadcrumbs":7,"title":3},"5":{"body":44,"breadcrumbs":3,"title":3},"50":{"body":46,"breadcrumbs":6,"title":2},"51":{"body":10,"breadcrumbs":3,"title":2},"52":{"body":26,"breadcrumbs":2,"title":1},"53":{"body":18,"breadcrumbs":3,"title":2},"54":{"body":73,"breadcrumbs":3,"title":2},"55":{"body":22,"breadcrumbs":3,"title":2},"56":{"body":23,"breadcrumbs":3,"title":2},"57":{"body":67,"breadcrumbs":3,"title":2},"58":{"body":42,"breadcrumbs":2,"title":1},"59":{"body":41,"breadcrumbs":3,"title":2},"6":{"body":21,"breadcrumbs":4,"title":1},"60":{"body":62,"breadcrumbs":3,"title":2},"61":{"body":13,"breadcrumbs":2,"title":1},"62":{"body":25,"breadcrumbs":2,"title":1},"63":{"body":10,"breadcrumbs":3,"title":2},"64":{"body":7,"breadcrumbs":2,"title":1},"65":{"body":49,"breadcrumbs":5,"title":3},"66":{"body":111,"breadcrumbs":8,"title":6},"67":{"body":11,"breadcrumbs":4,"title":2},"68":{"body":21,"breadcrumbs":4,"title":2},"69":{"body":13,"breadcrumbs":5,"title":3},"7":{"body":29,"breadcrumbs":5,"title":2},"70":{"body":52,"breadcrumbs":4,"title":2},"71":{"body":7,"breadcrumbs":4,"title":2},"72":{"body":27,"breadcrumbs":4,"title":2},"73":{"body":0,"breadcrumbs":1,"title":1},"74":{"body":31,"breadcrumbs":6,"title":6},"75":{"body":50,"breadcrumbs":5,"title":5},"76":{"body":30,"breadcrumbs":3,"title":3},"77":{"body":8,"breadcrumbs":1,"title":1},"78":{"body":8,"breadcrumbs":1,"title":1},"79":{"body":28,"breadcrumbs":4,"title":3},"8":{"body":37,"breadcrumbs":6,"title":3},"80":{"body":32,"breadcrumbs":2,"title":1},"81":{"body":55,"breadcrumbs":3,"title":2},"82":{"body":1,"breadcrumbs":4,"title":3},"9":{"body":47,"breadcrumbs":6,"title":3}},"docs":{"0":{"body":"","breadcrumbs":"Introduction","id":"0","title":"Introduction"},"1":{"body":"Welcome to the CSI for Kubernetes documentation repository. Here you will find information on how to use, develop, and deploy CSI plugins, or drivers, with Kubernetes.","breadcrumbs":"Kubernetes CSI Documentation","id":"1","title":"Kubernetes CSI Documentation"},"10":{"body":"Kubernetes now has raw block volume Support as an alpha implementation. If you want to use the CSI raw block volume support , you must enable the feature (for your Kubernetes binaries including server, kubelet, controller manager, etc) with the feature-gates flag as follow: $ kube --feature-gates=BlockVolume=true,CSIBlockVolume=true ...","breadcrumbs":"Using a CSI Driver » Enable raw block volume support (alpha)","id":"10","title":"Enable raw block volume support (alpha)"},"11":{"body":"Starting with version 1.12, the CSIDriver custom resource definition (or CRD) has been introduced as a way to represent the CSI drivers running in a cluster. An admin can update the attributes of this object to modify the configuration of its associated driver at runtime. You can see the full definition of this CRD here . The alpha release of CSIDriver exposes three main configuration settings: apiVersion: v1\nitems:\n- apiVersion: csi.storage.k8s.io/v1alpha1 kind: CSIDriver metadata: name: csi-hostpath spec: attachRequired: true podInfoOnMountVersion: \"v1\" Where: metadata:name - the identifying name of the CSI driver. That name must be unique in the cluster as it is the name that is used to identify the CSI cluster. attachRequired - indicates that the CSI volume driver requires a volume attach operation. This will cause Kubernetes to call make a CSI.ControllerPublishVolume() call and wait for completion before proceeding to mount. podInfoOnMountVersion - this value indicates that the associated CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount. Leave value empty if you do not want pod info to be transmitted. Or, provide a value of v1 which will cause the Kubelet to send the followings pod information during NodePublishVolume() calls to the driver as VolumeAttributes : csi.storage.k8s.io/pod.name: pod.Name\ncsi.storage.k8s.io/pod.namespace: pod.Namespace\ncsi.storage.k8s.io/pod.uid: string(pod.UID)","breadcrumbs":"Using a CSI Driver » CSIDriver custom resource (alpha)","id":"11","title":"CSIDriver custom resource (alpha)"},"12":{"body":"If you want to use the CSIDriver CRD and get a preview of how configuration will work at runtime, do the followings: Ensure the feature gate is enabled with --feature-gates=CSIDriverRegistry=true Install the CSIDriver CRD on the Kubernetes cluster with the following command: $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml","breadcrumbs":"Using a CSI Driver » Enabling CSIDriver","id":"12","title":"Enabling CSIDriver"},"13":{"body":"Using the CSIDriver CRD, it is now possible to query Kubernetes to get a list of registered drivers running in the cluster as shown below: $> kubectl get csidrivers.csi.storage.k8s.io\nNAME AGE\ncsi-hostpath 2m Or get a more detail view of your registered driver with: $> kubectl describe csidrivers.csi.storage.k8s.io\nName: csi-hostpath\nNamespace:\nLabels: \nAnnotations: \nAPI Version: csi.storage.k8s.io/v1alpha1\nKind: CSIDriver\nMetadata: Creation Timestamp: 2018-10-04T21:15:30Z Generation: 1 Resource Version: 390 Self Link: /apis/csi.storage.k8s.io/v1alpha1/csidrivers/csi-hostpath UID: 9f854aa6-c81a-11e8-bdce-000c29e88ff1\nSpec: Attach Required: true Pod Info On Mount Version:\nEvents: ","breadcrumbs":"Using a CSI Driver » Listing registered CSI drivers","id":"13","title":"Listing registered CSI drivers"},"14":{"body":"Object CSINodeInfo is a resource designed to carry binding information between a CSI driver and a cluster node where its volume storage will land. In the first release, object CSINodeInfo is used to establish the link between a node, its driver, and the topology keys used for scheduling volume storage. You can see the full definition of this CRD here . The following snippet shows a sample CSIDriverInfo which is usually created by Kubernetes: apiVersion: v1\nitems:\n- apiVersion: csi.storage.k8s.io/v1alpha1 kind: CSINodeInfo metadata: name: 127.0.0.1 csiDrivers: - driver: csi-hostpath nodeID: 127.0.0.1 topologyKeys: []\n... Where: csiDrivers - list of CSI drivers running on the node and their properties. driver - the CSI driver that this object refers to. nodeId - the assigned identifier for the node as determined by the driver. toplogykeys - A list of topology keys assigned to the node as supported by the driver.","breadcrumbs":"Using a CSI Driver » CSINodeInfo custom resource (alpha)","id":"14","title":"CSINodeInfo custom resource (alpha)"},"15":{"body":"If you want to use the CSINodeInfo CRD and get a preview of how configuration will work at runtime, do the followings: Ensure the feature gate is enabled with --feature-gates=CSIDriverRegistry=true Install the CSINodeInfo CRD on the Kubernetes cluster with the following command: $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml","breadcrumbs":"Using a CSI Driver » Enabling CSINodeInfo","id":"15","title":"Enabling CSINodeInfo"},"16":{"body":"The CSI driver discovery uses the Kubelet Plugin Watcher feature which allows Kubelet to discover deployed CSI drivers automatically. The registrar sidecar container exposes an internal registration server via a Unix data socket path. The Kubelet monitors its registration directory to detect new registration requests. Once detected, the Kubelet contacts the registrar sidecar to query driver information. The retrieved CSI driver information (including the driver's own socket path) will be used for further interaction with the driver. This replaces the previous driver registration mechanism, where the driver-registrar sidecar, rather than kubelet, handles registration. Using this discovery feature, instead of the prior registration mechanism, will not have any effect on how drivers behave, however, this will be the way CSI works internally in coming releases.","breadcrumbs":"Using a CSI Driver » CSI driver discovery (beta)","id":"16","title":"CSI driver discovery (beta)"},"17":{"body":"The registrar sidecar container provides configuration functionalities to its associated driver. For instance, using the registrar container, an admin can specify how the driver should behave during volume attachment operations. Some CLI arguments provided to the registrar container will be used to create the CSIDriver and CSIDriverInfo custom resources discussed earlier. To configure your driver using the registrar sidecar, you can configure the container as shown in the snippet below: - name: driver-registrar args: - --v=5 - --csi-address=/csi/csi.sock - --mode=node-register - --driver-requires-attachment=true - --pod-info-mount-version=\"v1\" - --kubelet-registration-path=/var/lib/kubelet/plugins/csi-hostpath/csi.sock env: - name: KUBE_NODE_NAME valueFrom: fieldRef: apiVersion: v1 fieldPath: spec.nodeName image: quay.io/k8scsi/driver-registrar:v0.2.0 imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumeMounts: - name: registration-dir mountPath: /registration\n...\nvolumes: name: socket-dir - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: registration-dir - hostPath: path: /var/lib/kubelet/plugins type: Directory Where: --csi-address - specifies the Unix domain socket path, on the host, for the CSI driver. It allows the registrar sidecar to communicate with the driver for discovery information. Mount path /csi is mapped to HostPath entry socket-dir which is mapped to directory /var/lib/kubelet/plugins/csi-hostpath --mode - this flag specifies how the registar binary will function in either --driver-requires-attachment - indicates that this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that Kubernetes should call attach and wait for any attach operation to complete before proceeding to mounting. If value is not specified, default is false meaning attach will not be called. --pod-info-mount-version=\"v1\" - this indicates that the associated CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount. A version of value \"v1\" will cause the Kubelet send the followings pod information during NodePublishVolume() calls to the driver as VolumeAttributes: csi.storage.k8s.io/pod.name: pod.Name csi.storage.k8s.io/pod.namespace: pod.Namespace csi.storage.k8s.io/pod.uid: string(pod.UID) --kubelet-registration-path - specifies the fully-qualified path of the Unix domain socket for the CSI driver on the host. This path is constructed using the path from HostPath socket-dir and the additional suffix csi.sock . The registrar sidecar will provide this path to core CSI components for subsequent volume operations. VolumeMount /csi - is mapped to HostPath /var/lib/kubelet/plugins/csi-hostpath . It is the root location where the CSI driver's Unix Domain socket file is mounted on the host. VolumeMount /registration is mapped to HostPath /var/lib/kubelet/plugins . It is the root location where Kubelet watcher scans for new plugin registration.","breadcrumbs":"Using a CSI Driver » Registrar sidecar configuration","id":"17","title":"Registrar sidecar configuration"},"18":{"body":"In the configuration above, notice that all paths starts with /var/lib/kubelet/plugin That is because the discovery mechanism relies on the Kubelet's root directory (which is by default) /var/lib/kubelet . Ensure that this path value matches the value specified in the Kubelet's --root-dir argument. CSI Volume Snapshot support CSI volume snapshot support : To enable support for Kubernetes volume snapshotting, you must set the following feature gate on Kubernetes v1.12 (disabled by default for alpha): --feature-gates=VolumeSnapshotDataSource=true","breadcrumbs":"Using a CSI Driver » The Kubelet root directory","id":"18","title":"The Kubelet root directory"},"19":{"body":"Please visit the Archives for setup instructions on previous versions of Kubernetes.","breadcrumbs":"Using a CSI Driver » Archives","id":"19","title":"Archives"},"2":{"body":"Kubernetes CSI spec Status v1.9 v0.1 Alpha v1.10 v0.2 Beta v1.11 v0.3 Beta","breadcrumbs":"Project status","id":"2","title":"Project status"},"20":{"body":"To benefit from the new CSI support, you will need to deploy a CSI driver. Please visit the Drivers page to determine how to deploy your specific driver. A functional example based on the HostPath driver is presented in the Example section.","breadcrumbs":"Using a CSI Driver » Deployment","id":"20","title":"Deployment"},"21":{"body":"The following are a set of CSI driver which can be used with Kubernetes: NOTE: If you would like your driver to be added to this table, please create an issue in this repo with the information you would like to add here.","breadcrumbs":"Using a CSI Driver » Drivers","id":"21","title":"Drivers"},"22":{"body":"Name Status More Information Flexvolume Sample HostPath v0.2.0 Only use for a single node tests. See the Example page for Kubernetes-specific instructions. In-memory Sample Mock Driver v0.3.0 The sample mock driver used for csi-sanity NFS Sample VFS Driver Released A CSI plugin that provides a virtual file system.","breadcrumbs":"Using a CSI Driver » Sample Drivers","id":"22","title":"Sample Drivers"},"23":{"body":"Name Status More Information Cinder v0.2.0 A Container Storage Interface (CSI) Storage Plug-in for Cinder DigitalOcean Block Storage v0.0.1 (alpha) A Container Storage Interface (CSI) Driver for DigitalOcean Block Storage AWS Elastic Block Storage v0.0.1(alpha) A Container Storage Interface (CSI) Driver for AWS Elastic Block Storage (EBS) GCE Persistent Disk Alpha A Container Storage Interface (CSI) Storage Plugin for Google Compute Engine Persistent Disk OpenSDS Beta For more information, please visit releases and https://github.com/opensds/nbp/tree/master/csi Portworx 0.3.0 CSI implementation is available here which can be used as an example also. RBD v0.2.0 A Container Storage Interface (CSI) Storage RBD Plug-in for Ceph CephFS v0.2.0 A Container Storage Interface (CSI) Storage Plug-in for CephFS ScaleIO v0.1.0 A Container Storage Interface (CSI) Storage Plugin for DellEMC ScaleIO vSphere v0.1.0 A Container Storage Interface (CSI) Storage Plug-in for VMware vSphere NetApp v0.2.0 (alpha) A Container Storage Interface (CSI) Storage Plug-in for NetApp's Trident container storage orchestrator Ember CSI v0.2.0 (alpha) Multi-vendor CSI plugin supporting over 80 storage drivers to provide block and mount storage to Container Orchestration systems. Nutanix beta A Container Storage Interface (CSI) Storage Driver for Nutanix Quobyte v0.2.0 A Container Storage Interface (CSI) Plugin for Quobyte GlusterFS Beta A Container Storage Interface (CSI) Plugin for GlusterFS","breadcrumbs":"Using a CSI Driver » Production Drivers","id":"23","title":"Production Drivers"},"24":{"body":"There are multiple ways to test your driver. Please see Testing Drivers for more information.","breadcrumbs":"Using a CSI Driver » Testing","id":"24","title":"Testing"},"25":{"body":"There are two main models of how to use storage in Kubernetes with CSI drivers. These models include either the usage of pre-provisioned volumes or dynamic provisioned volumes. Please check the documentation of your specific driver for more information.","breadcrumbs":"Using a CSI Driver » Usage","id":"25","title":"Usage"},"26":{"body":"Pre-provisioned drivers work just as they did before, where the administrator would create a PersistentVolume specification which would describe the volume to be used. The PersistentVolume specification would need to be setup according to your driver, the difference here is that there is a new section called csi which needs to be setup accordingly. Please see Kubernetes Documentation on CSI Volumes . Here is an example of a PersistentVolume specification of a pre-provisioned volume managed by a CSI driver: apiVersion: v1\nkind: PersistentVolume\nmetadata: name: manually-created-pv\nspec: capacity: storage: 5Gi accessModes: - ReadWriteOnce persistentVolumeReclaimPolicy: Retain csi: driver: com.example.team/csi-driver volumeHandle: existingVolumeName readOnly: false","breadcrumbs":"Using a CSI Driver » Pre-provisioned volumes","id":"26","title":"Pre-provisioned volumes"},"27":{"body":"To setup the system for dynamic provisioning, the administrator needs to setup a StorageClass pointing to the CSI driver’s external-provisioner and specifying any parameters required by the driver. Here is an example of a StorageClass: kind: StorageClass\napiVersion: storage.k8s.io/v1\nmetadata: name: fast-storage\nprovisioner: com.example.team/csi-driver\nparameters: type: pd-ssd Where, provisioner : Must be set to the name of the CSI driver parameters : Must contain any parameters specific to the CSI driver. The user can then create a PersistentVolumeClaim utilizing this StorageClass as follows: apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata: name: request-for-storage\nspec: accessModes: - ReadWriteOnce resources: requests: storage: 5Gi storageClassName: fast-storage CSI Provisioner Parameters The CSI dynamic provisioner makes CreateVolumeRequest and DeleteVolumeRequest calls to CSI drivers. The controllerCreateSecrets and controllerDeleteSecrets fields in those requests can be populated with data from a Kubernetes Secret object by setting csiProvisionerSecretName and csiProvisionerSecretNamespace parameters in the StorageClass . For example: kind: StorageClass\napiVersion: storage.k8s.io/v1\nmetadata: name: fast-storage\nprovisioner: com.example.team/csi-driver\nparameters: type: pd-ssd csiProvisionerSecretName: fast-storage-provision-key csiProvisionerSecretNamespace: pd-ssd-credentials The csiProvisionerSecretName and csiProvisionerSecretNamespace parameters may specify literal values, or a template containing the following variables: ${pv.name} - replaced with the name of the PersistentVolume object being provisioned Once the CSI volume is created, a corresponding Kubernetes PersistentVolume object is created. The controllerPublishSecretRef , nodeStageSecretRef , and nodePublishSecretRef fields in the PersistentVolume object can be populated via the following storage class parameters: controllerPublishSecretRef in the PersistentVolume is populated by setting these StorageClass parameters: csiControllerPublishSecretName csiControllerPublishSecretNamespace nodeStageSecretRef in the PersistentVolume is populated by setting these StorageClass parameters: csiNodeStageSecretName csiNodeStageSecretNamespace nodePublishSecretRef in the PersistentVolume is populated by setting these StorageClass parameters: csiNodePublishSecretName csiNodePublishSecretNamespace The csiControllerPublishSecretName , csiNodeStageSecretName , and csiNodePublishSecretName parameters may specify a literal secret name, or a template containing the following variables: ${pv.name} - replaced with the name of the PersistentVolume ${pvc.name} - replaced with the name of the PersistentVolumeClaim ${pvc.namespace} - replaced with the namespace of the PersistentVolumeClaim ${pvc.annotations['']} (e.g. ${pvc.annotations['example.com/key']} ) - replaced with the value of the specified annotation in the PersistentVolumeClaim The csiControllerPublishSecretNamespace , csiNodeStageSecretNamespace , and csiNodePublishSecretNamespace parameters may specify a literal namespace name, or a template containing the following variables: ${pv.name} - replaced with the name of the PersistentVolume ${pvc.namespace} - replaced with the namespace of the PersistentVolumeClaim As an example, consider this StorageClass: kind: StorageClass\napiVersion: storage.k8s.io/v1\nmetadata: name: fast-storage\nprovisioner: com.example.team/csi-driver\nparameters: type: pd-ssd csiProvisionerSecretName: fast-storage-provision-key csiProvisionerSecretNamespace: pd-ssd-credentials csiControllerPublishSecretName: ${pv.name}-publish csiControllerPublishSecretNamespace: pd-ssd-credentials csiNodeStageSecretName: ${pv.name}-stage csiNodeStageSecretNamespace: pd-ssd-credentials csiNodePublishSecretName: ${pvc.annotations['com.example.team/key']} csiNodePublishSecretNamespace: ${pvc.namespace} This StorageClass instructs the CSI provisioner to do the following: send the data in the fast-storage-provision-key secret in the pd-ssd-credentials namespace as part of the create request to the CSI driver create a PersistentVolume with: a per-volume controller publish and node stage secret, both in the pd-ssd-credentials (those secrets would need to be created separately in response to the PersistentVolume creation before the PersistentVolume could be attached/mounted) a node publish secret in the same namespace as the PersistentVolumeClaim that triggered the provisioning, with a name specified as an annotation on the PersistentVolumeClaim. This could be used to give the creator of the PersistentVolumeClaim the ability to specify a secret containing a decryption key they have control over.","breadcrumbs":"Using a CSI Driver » Dynamic Provisioning","id":"27","title":"Dynamic Provisioning"},"28":{"body":"The HostPath can be used to provision local storage in a single node test. This section shows how to deploy and use that driver in Kubernetes.","breadcrumbs":"Using a CSI Driver » Example","id":"28","title":"Example"},"29":{"body":"This is tested with Kubernetes v1.12. Set the following feature gate flags to true: --feature-dates=CSIPersistentVolume=true,MountPropagation=true,VolumeSnapshotDataSource=true,KubeletPluginsWatcher=true,CSINodeInfo=true,CSIDriverRegistry=true CSIPersistentVolume is enabled by default in v1.10. MountPropagation is enabled by default in v1.10. VolumeSnapshotDataSource is a new alpha feature in v1.12. KubeletPluginsWatcher is enabled by default in v1.12. CSINodeInfo and CSIDriverRegistry are new alpha features in v1.12. CRDs needs to be created manually for CSIDriverRegistry and CSINodeInfo . $ kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml --validate=false\ncustomresourcedefinition.apiextensions.k8s.io/csidrivers.csi.storage.k8s.io created $ kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml --validate=false\ncustomresourcedefinition.apiextensions.k8s.io/csinodeinfos.csi.storage.k8s.io created","breadcrumbs":"Using a CSI Driver » Deployment","id":"29","title":"Deployment"},"3":{"body":"Container Name CSI spec Latest Release Tag csi-provisioner v0.3 v0.4.1 csi-attacher v0.3 v0.4.1 driver-registrar v0.3 v0.4.1 livenessprobe v0.3 v0.4.1","breadcrumbs":"Sidecar container status","id":"3","title":"Sidecar container status"},"30":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/rbac/csi-provisioner-rbac.yaml\nserviceaccount/csi-provisioner created\nclusterrole.rbac.authorization.k8s.io/external-provisioner-runner created\nclusterrolebinding.rbac.authorization.k8s.io/csi-provisioner-role created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-provisioner ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: external-provisioner-runner\nrules: - apiGroups: [\"\"] resources: [\"secrets\"] verbs: [\"get\", \"list\"] - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\", \"create\", \"delete\"] - apiGroups: [\"\"] resources: [\"persistentvolumeclaims\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"storageclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"events\"] verbs: [\"list\", \"watch\", \"create\", \"update\", \"patch\"] - apiGroups: [\"\"] resources: [\"endpoints\"] verbs: [\"list\", \"watch\", \"create\", \"update\", \"get\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshots\"] verbs: [\"get\", \"list\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshotcontents\"] verbs: [\"get\", \"list\"] - apiGroups: [\"csi.storage.k8s.io\"] resources: [\"csinodeinfos\"] verbs: [\"get\", \"list\", \"watch\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-provisioner-role\nsubjects: - kind: ServiceAccount name: csi-provisioner namespace: default\nroleRef: kind: ClusterRole name: external-provisioner-runner apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for CSI provisioner","id":"30","title":"Create RBAC rules for CSI provisioner"},"31":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/rbac/csi-attacher-rbac.yaml\nserviceaccount/csi-attacher created\nclusterrole.rbac.authorization.k8s.io/external-attacher-runner created\nclusterrolebinding.rbac.authorization.k8s.io/csi-attacher-role created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-attacher ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: external-attacher-runner\nrules: - apiGroups: [\"\"] resources: [\"events\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"volumeattachments\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-attacher-role\nsubjects: - kind: ServiceAccount name: csi-attacher namespace: default\nroleRef: kind: ClusterRole name: external-attacher-runner apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for CSI attacher","id":"31","title":"Create RBAC rules for CSI attacher"},"32":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/rbac/csi-nodeplugin-rbac.yaml\nserviceaccount/csi-nodeplugin created\nclusterrole.rbac.authorization.k8s.io/csi-nodeplugin created\nclusterrolebinding.rbac.authorization.k8s.io/csi-nodeplugin created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-nodeplugin ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-nodeplugin\nrules: - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"update\"] - apiGroups: [\"\"] resources: [\"namespaces\"] verbs: [\"get\", \"list\"] - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"volumeattachments\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"csi.storage.k8s.io\"] resources: [\"csidrivers\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"csi.storage.k8s.io\"] resources: [\"csinodeinfos\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-nodeplugin\nsubjects: - kind: ServiceAccount name: csi-nodeplugin namespace: default\nroleRef: kind: ClusterRole name: csi-nodeplugin apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for node plugin","id":"32","title":"Create RBAC rules for node plugin"},"33":{"body":"The CSI snapshotter is an optional sidecar container. You only need to create these RBAC rules if you want to test the snapshot feature. $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-snapshotter-rbac.yaml\nserviceaccount/csi-snapshotter created\nclusterrole.rbac.authorization.k8s.io/external-snapshotter-runner created\nclusterrolebinding.rbac.authorization.k8s.io/csi-snapshotter-role created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-snapshotter ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: external-snapshotter-runner\nrules: - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"persistentvolumeclaims\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"storageclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"events\"] verbs: [\"list\", \"watch\", \"create\", \"update\", \"patch\"] - apiGroups: [\"\"] resources: [\"secrets\"] verbs: [\"get\", \"list\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshotclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshotcontents\"] verbs: [\"create\", \"get\", \"list\", \"watch\", \"update\", \"delete\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshots\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"apiextensions.k8s.io\"] resources: [\"customresourcedefinitions\"] verbs: [\"create\", \"list\", \"watch\", \"delete\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-snapshotter-role\nsubjects: - kind: ServiceAccount name: csi-snapshotter namespace: default\nroleRef: kind: ClusterRole name: external-snapshotter-runner apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for CSI snapshotter","id":"33","title":"Create RBAC rules for CSI snapshotter"},"34":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/hostpath/csi-hostpath-provisioner.yaml\nservice/csi-hostpath-provisioner created\nstatefulset.apps/csi-hostpath-provisioner created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-provisioner-0 1/1 Running 0 6s kind: Service\napiVersion: v1\nmetadata: name: csi-hostpath-provisioner labels: app: csi-hostpath-provisioner\nspec: selector: app: csi-hostpath-provisioner ports: - name: dummy port: 12345 ---\nkind: StatefulSet\napiVersion: apps/v1\nmetadata: name: csi-hostpath-provisioner\nspec: serviceName: \"csi-hostpath-provisioner\" replicas: 1 selector: matchLabels: app: csi-hostpath-provisioner template: metadata: labels: app: csi-hostpath-provisioner spec: serviceAccount: csi-provisioner containers: - name: csi-provisioner image: quay.io/k8scsi/csi-provisioner:v0.4.1 args: - \"--provisioner=csi-hostpath\" - \"--csi-address=$(ADDRESS)\" - \"--connection-timeout=15s\" env: - name: ADDRESS value: /csi/csi.sock imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir","breadcrumbs":"Using a CSI Driver » Deploy CSI provisioner in StatefulSet pod","id":"34","title":"Deploy CSI provisioner in StatefulSet pod"},"35":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/hostpath/csi-hostpath-attacher.yaml\nservice/csi-hostpath-attacher created\nstatefulset.apps/csi-hostpath-attacher created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 4s\ncsi-hostpath-provisioner-0 1/1 Running 0 2m1s kind: Service\napiVersion: v1\nmetadata: name: csi-hostpath-attacher labels: app: csi-hostpath-attacher\nspec: selector: app: csi-hostpath-attacher ports: - name: dummy port: 12345 ---\nkind: StatefulSet\napiVersion: apps/v1\nmetadata: name: csi-hostpath-attacher\nspec: serviceName: \"csi-hostpath-attacher\" replicas: 1 selector: matchLabels: app: csi-hostpath-attacher template: metadata: labels: app: csi-hostpath-attacher spec: serviceAccount: csi-attacher containers: - name: csi-attacher image: quay.io/k8scsi/csi-attacher:v0.4.1 args: - --v=5 - --csi-address=$(ADDRESS) env: - name: ADDRESS value: /csi/csi.sock imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir","breadcrumbs":"Using a CSI Driver » Deploy CSI attacher in StatefulSet pod","id":"35","title":"Deploy CSI attacher in StatefulSet pod"},"36":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/hostpath/csi-hostpathplugin.yaml\ndaemonset.apps/csi-hostpathplugin created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 53s\ncsi-hostpath-provisioner-0 1/1 Running 0 2m50s\ncsi-hostpathplugin-9rp7c 2/2 Running 0 5s kind: DaemonSet\napiVersion: apps/v1\nmetadata: name: csi-hostpathplugin\nspec: selector: matchLabels: app: csi-hostpathplugin template: metadata: labels: app: csi-hostpathplugin spec: serviceAccount: csi-nodeplugin hostNetwork: true containers: - name: driver-registrar image: quay.io/k8scsi/driver-registrar:v0.4.1 args: - --v=5 - --csi-address=/csi/csi.sock - --kubelet-registration-path=/var/lib/kubelet/plugins/csi-hostpath/csi.sock env: - name: KUBE_NODE_NAME valueFrom: fieldRef: apiVersion: v1 fieldPath: spec.nodeName imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir - mountPath: /registration name: registration-dir - name: hostpath image: quay.io/k8scsi/hostpathplugin:v0.4.1 args: - \"--v=5\" - \"--endpoint=$(CSI_ENDPOINT)\" - \"--nodeid=$(KUBE_NODE_NAME)\" env: - name: CSI_ENDPOINT value: unix:///csi/csi.sock - name: KUBE_NODE_NAME valueFrom: fieldRef: apiVersion: v1 fieldPath: spec.nodeName imagePullPolicy: Always securityContext: privileged: true volumeMounts: - mountPath: /csi name: socket-dir - mountPath: /var/lib/kubelet/pods mountPropagation: Bidirectional name: mountpoint-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir - hostPath: path: /var/lib/kubelet/pods type: DirectoryOrCreate name: mountpoint-dir - hostPath: path: /var/lib/kubelet/plugins type: Directory name: registration-dir","breadcrumbs":"Using a CSI Driver » Deploy driver-registrar and hostpath CSI plugin in DaemonSet pod","id":"36","title":"Deploy driver-registrar and hostpath CSI plugin in DaemonSet pod"},"37":{"body":"The CSI snapshotter is an optional sidecar container. You only need to deploy it if you want to test the snapshot feature. $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-hostpath-snapshotter.yaml\nservice/csi-hostpath-snapshotter created\nstatefulset.apps/csi-hostpath-snapshotter created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 96s\ncsi-hostpath-provisioner-0 1/1 Running 0 3m33s\ncsi-hostpath-snapshotter-0 1/1 Running 0 5s\ncsi-hostpathplugin-9rp7c 2/2 Running 0 48s kind: Service\napiVersion: v1\nmetadata: name: csi-hostpath-snapshotter labels: app: csi-hostpath-snapshotter\nspec: selector: app: csi-hostpath-snapshotter ports: - name: dummy port: 12345 ---\nkind: StatefulSet\napiVersion: apps/v1\nmetadata: name: csi-hostpath-snapshotter\nspec: serviceName: \"csi-hostpath-snapshotter\" replicas: 1 selector: matchLabels: app: csi-hostpath-snapshotter template: metadata: labels: app: csi-hostpath-snapshotter spec: serviceAccount: csi-snapshotter containers: - name: csi-snapshotter image: quay.io/k8scsi/csi-snapshotter:v0.4.1 args: - \"--csi-address=$(ADDRESS)\" - \"--connection-timeout=15s\" env: - name: ADDRESS value: /csi/csi.sock imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir","breadcrumbs":"Using a CSI Driver » Deploy CSI snapshotter in StatefulSet pod","id":"37","title":"Deploy CSI snapshotter in StatefulSet pod"},"38":{"body":"Dynamic provisioning is enabled by creating a csi-hostpath-sc storage class. $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/usage/csi-storageclass.yaml\nstorageclass.storage.k8s.io/csi-hostpath-sc created apiVersion: storage.k8s.io/v1\nkind: StorageClass\nmetadata: name: csi-hostpath-sc\nprovisioner: csi-hostpath\nreclaimPolicy: Delete\nvolumeBindingMode: Immediate We can use this storage class to create and claim a new volume: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/usage/csi-pvc.yaml\npersistentvolumeclaim/csi-pvc created\n$ kubectl get pvc\nNAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE\ncsi-pvc Bound pvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO csi-hostpath-sc 3s $ kubectl get pv\nNAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE\npvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO Delete Bound default/csi-pvc csi-hostpath-sc 3s apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata: name: csi-pvc\nspec: accessModes: - ReadWriteOnce resources: requests: storage: 1Gi storageClassName: csi-hostpath-sc # defined in csi-setup.yaml The HostPath driver is configured to create new volumes under /tmp inside the hostpath container in the CSI hostpath plugin DaemonSet pod and thus persist as long as the DaemonSet pod itself. We can use such volumes in another pod like this: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/usage/csi-app.yaml\npod/my-csi-app created\n$ kubectl get pods\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 17m\ncsi-hostpath-provisioner-0 1/1 Running 0 19m\ncsi-hostpath-snapshotter-0 1/1 Running 0 16m\ncsi-hostpathplugin-9rp7c 2/2 Running 0 16m\nmy-csi-app 1/1 Running 0 5s $ kubectl describe pods/my-csi-app\nName: my-csi-app\nNamespace: default\nPriority: 0\nPriorityClassName: \nNode: 127.0.0.1/127.0.0.1\nStart Time: Wed, 03 Oct 2018 06:59:19 -0700\nLabels: \nAnnotations: \nStatus: Running\nIP: 172.17.0.5\nContainers: my-frontend: Container ID: docker://fd2950af39a155bdf08d1da341cfb23aa0d1af3eaaad6950a946355789606e8c Image: busybox Image ID: docker-pullable://busybox@sha256:2a03a6059f21e150ae84b0973863609494aad70f0a80eaeb64bddd8d92465812 Port: Host Port: Command: sleep 1000000 State: Running Started: Wed, 03 Oct 2018 06:59:22 -0700 Ready: True Restart Count: 0 Environment: Mounts: /data from my-csi-volume (rw) /var/run/secrets/kubernetes.io/serviceaccount from default-token-xms2g (ro)\nConditions: Type Status Initialized True Ready True ContainersReady True PodScheduled True\nVolumes: my-csi-volume: Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace) ClaimName: csi-pvc ReadOnly: false default-token-xms2g: Type: Secret (a volume populated by a Secret) SecretName: default-token-xms2g Optional: false\nQoS Class: BestEffort\nNode-Selectors: \nTolerations: node.kubernetes.io/not-ready:NoExecute for 300s node.kubernetes.io/unreachable:NoExecute for 300s\nEvents: Type Reason Age From Message ---- ------ ---- ---- ------- Normal Scheduled 69s default-scheduler Successfully assigned default/my-csi-app to 127.0.0.1 Normal SuccessfulAttachVolume 69s attachdetach-controller AttachVolume.Attach succeeded for volume \"pvc-0571cc14-c714-11e8-8911-000c2967769a\" Normal Pulling 67s kubelet, 127.0.0.1 pulling image \"busybox\" Normal Pulled 67s kubelet, 127.0.0.1 Successfully pulled image \"busybox\" Normal Created 67s kubelet, 127.0.0.1 Created container Normal Started 66s kubelet, 127.0.0.1 Started container kind: Pod\napiVersion: v1\nmetadata: name: my-csi-app\nspec: containers: - name: my-frontend image: busybox volumeMounts: - mountPath: \"/data\" name: my-csi-volume command: [ \"sleep\", \"1000000\" ] volumes: - name: my-csi-volume persistentVolumeClaim: claimName: csi-pvc # defined in csi-pvs.yaml","breadcrumbs":"Using a CSI Driver » Usage","id":"38","title":"Usage"},"39":{"body":"Writing inside the app container should be visible in /tmp of the hostpath container: $ kubectl exec -it my-csi-app /bin/sh\n/ # touch /data/hello-world\n/ # exit $ kubectl exec -it $(kubectl get pods --selector app=csi-hostpathplugin -o jsonpath='{.items[*].metadata.name}') -c hostpath /bin/sh\n/ # find / -name hello-world\n/tmp/057485ab-c714-11e8-bb16-000c2967769a/hello-world\n/ # exit There should be a VolumeAttachment while the app has the volume mounted: $ kubectl get VolumeAttachment\nName: csi-a4e97f3af2161c6d081b8e96c58ed00c9bf1e1745e89b2545e24505437f015df\nNamespace:\nLabels: \nAnnotations: \nAPI Version: storage.k8s.io/v1beta1\nKind: VolumeAttachment\nMetadata: Creation Timestamp: 2018-10-03T13:59:19Z Resource Version: 1730 Self Link: /apis/storage.k8s.io/v1beta1/volumeattachments/csi-a4e97f3af2161c6d081b8e96c58ed00c9bf1e1745e89b2545e24505437f015df UID: 862d7241-c714-11e8-8911-000c2967769a\nSpec: Attacher: csi-hostpath Node Name: 127.0.0.1 Source: Persistent Volume Name: pvc-0571cc14-c714-11e8-8911-000c2967769a\nStatus: Attached: true\nEvents: ","breadcrumbs":"Using a CSI Driver » Confirming the setup","id":"39","title":"Confirming the setup"},"4":{"body":"Please see the Setup page for instructions on how to setup Kubernetes support with CSI.","breadcrumbs":"Installation","id":"4","title":"Installation"},"40":{"body":"Enable dynamic provisioning of volume snapshot by creating a volume snapshot class as follows: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-snapshotclass.yaml\nvolumesnapshotclass.snapshot.storage.k8s.io/csi-hostpath-snapclass created\n$ kubectl get volumesnapshotclass\nNAME AGE\ncsi-hostpath-snapclass 11s\n$ kubectl describe volumesnapshotclass\nName: csi-hostpath-snapclass\nNamespace:\nLabels: \nAnnotations: \nAPI Version: snapshot.storage.k8s.io/v1alpha1\nKind: VolumeSnapshotClass\nMetadata: Creation Timestamp: 2018-10-03T14:15:30Z Generation: 1 Resource Version: 2418 Self Link: /apis/snapshot.storage.k8s.io/v1alpha1/volumesnapshotclasses/csi-hostpath-snapclass UID: c8f5bc47-c716-11e8-8911-000c2967769a\nSnapshotter: csi-hostpath\nEvents: apiVersion: snapshot.storage.k8s.io/v1alpha1\nkind: VolumeSnapshotClass\nmetadata: name: csi-hostpath-snapclass\nsnapshotter: csi-hostpath Use the volume snapshot class to dynamically create a volume snapshot: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-snapshot.yaml\nvolumesnapshot.snapshot.storage.k8s.io/new-snapshot-demo created $ kubectl get volumesnapshot\nNAME AGE\nnew-snapshot-demo 12s $ kubectl get volumesnapshotcontent\nNAME AGE\nsnapcontent-f55db632-c716-11e8-8911-000c2967769a 14s $ kubectl describe volumesnapshot\nName: new-snapshot-demo\nNamespace: default\nLabels: \nAnnotations: \nAPI Version: snapshot.storage.k8s.io/v1alpha1\nKind: VolumeSnapshot\nMetadata: Creation Timestamp: 2018-10-03T14:16:45Z Generation: 1 Resource Version: 2476 Self Link: /apis/snapshot.storage.k8s.io/v1alpha1/namespaces/default/volumesnapshots/new-snapshot-demo UID: f55db632-c716-11e8-8911-000c2967769a\nSpec: Snapshot Class Name: csi-hostpath-snapclass Snapshot Content Name: snapcontent-f55db632-c716-11e8-8911-000c2967769a Source: Kind: PersistentVolumeClaim Name: csi-pvc\nStatus: Creation Time: 2018-10-03T14:16:45Z Ready: true Restore Size: 1Gi\nEvents: $ kubectl describe volumesnapshotcontent\nName: snapcontent-f55db632-c716-11e8-8911-000c2967769a\nNamespace:\nLabels: \nAnnotations: \nAPI Version: snapshot.storage.k8s.io/v1alpha1\nKind: VolumeSnapshotContent\nMetadata: Creation Timestamp: 2018-10-03T14:16:45Z Generation: 1 Resource Version: 2474 Self Link: /apis/snapshot.storage.k8s.io/v1alpha1/volumesnapshotcontents/snapcontent-f55db632-c716-11e8-8911-000c2967769a UID: f561411f-c716-11e8-8911-000c2967769a\nSpec: Csi Volume Snapshot Source: Creation Time: 1538576205471577525 Driver: csi-hostpath Restore Size: 1073741824 Snapshot Handle: f55ff979-c716-11e8-bb16-000c2967769a Persistent Volume Ref: API Version: v1 Kind: PersistentVolume Name: pvc-0571cc14-c714-11e8-8911-000c2967769a Resource Version: 1573 UID: 0575b966-c714-11e8-8911-000c2967769a Snapshot Class Name: csi-hostpath-snapclass Volume Snapshot Ref: API Version: snapshot.storage.k8s.io/v1alpha1 Kind: VolumeSnapshot Name: new-snapshot-demo Namespace: default Resource Version: 2472 UID: f55db632-c716-11e8-8911-000c2967769a\nEvents: apiVersion: snapshot.storage.k8s.io/v1alpha1\nkind: VolumeSnapshot\nmetadata: name: new-snapshot-demo\nspec: snapshotClassName: csi-hostpath-snapclass source: name: csi-pvc kind: PersistentVolumeClaim","breadcrumbs":"Using a CSI Driver » Snapshot support","id":"40","title":"Snapshot support"},"41":{"body":"Follow the following example to create a volume from a volume snapshot: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-restore.yaml\npersistentvolumeclaim/hpvc-restore created\n$ kubectl get pvc\nNAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE\ncsi-pvc Bound pvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO csi-hostpath-sc 24m\nhpvc-restore Bound pvc-77324684-c717-11e8-8911-000c2967769a 1Gi RWO csi-hostpath-sc 6s\n$ kubectl get pv\nNAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE\npvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO Delete Bound default/csi-pvc csi-hostpath-sc 25m\npvc-77324684-c717-11e8-8911-000c2967769a 1Gi RWO Delete Bound default/hpvc-restore csi-hostpath-sc 33s apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata: name: hpvc-restore\nspec: storageClassName: csi-hostpath-sc dataSource: name: new-snapshot-demo kind: VolumeSnapshot apiGroup: snapshot.storage.k8s.io accessModes: - ReadWriteOnce resources: requests: storage: 1Gi If you encounter any problems, please check the [Troubleshooting page](Troubleshooting.html).","breadcrumbs":"Using a CSI Driver » Restore volume from snapshot support","id":"41","title":"Restore volume from snapshot support"},"42":{"body":"This section describes to developers how to create and deploy a CSI driver for Kubernetes.","breadcrumbs":"Development","id":"42","title":"Development"},"43":{"body":"To write a CSI Driver, a developer must create an application which implements the three Identity , Controller , and Node services as described in the CSI specification . The Drivers page contains a set of drivers which may be used as an example of how to write a CSI driver. If this is your first driver, you can start with the in-memory sample Mock Driver used for csi-sanity","breadcrumbs":"Development » Developing a CSI driver","id":"43","title":"Developing a CSI driver"},"44":{"body":"Here are some other resources useful for writing CSI drivers: How to write a Container Storage Interface (CSI) plugin - by Fatih Arslan Understanding Container Storage Interface (CSI) - by Anoop Maniankara (4 min read)","breadcrumbs":"Development » Other Resources","id":"44","title":"Other Resources"},"45":{"body":"To implement the snapshot feature, a CSI driver needs to support controller capabilities CREATE_DELETE_SNAPSHOT and LIST_SNAPSHOTS, and implement controller RPCs CreateSnapshot, DeleteSnapshot, and ListSnapshots. For details, see the CSI spec here . Here are some example CSI plugins that have implemented the snapshot feature: GCE PD CSI driver OpenSDS CSI driver Ceph RBD CSI driver You can find more sample and production CSI drivers here . Please note that drivers may or may not have implemented the snapshot feature.","breadcrumbs":"Development » Developing a CSI driver » Implement Snapshot Feature","id":"45","title":"Implement Snapshot Feature"},"46":{"body":"The volume snapshot APIs are implemented as CRDs here . Once you deploy the CSI sidecar containers which includes the external snapshotter in your cluster, the external-snapshotter will pre-install the Snapshot CRDs.","breadcrumbs":"Development » Developing a CSI driver » Snapshot APIs","id":"46","title":"Snapshot APIs"},"47":{"body":"Since volume snapshot is an alpha feature in Kubernetes v1.12, you need to enable a new alpha feature gate called VolumeSnapshotDataSource in API server binary. --feature-gates=VolumeSnapshotDataSource=true","breadcrumbs":"Development » Developing a CSI driver » Enable VolumeSnapshotDataSource Feature Gate","id":"47","title":"Enable VolumeSnapshotDataSource Feature Gate"},"48":{"body":"The snapshot controller is implemented as a sidecar helper container called External-Snapshotter . External-Snapshotter watches VolumeSnapshot and VolumeSnapshotContent API objects and triggers CreateSnapshot and DeleteSnapshot operations. It is recommended that sidecar containers External-Snapshotter and External-Provisioner be deployed together with CSI driver in a StatefulSet. See this example yaml file which deploys External-Snapshotter and External-Provisioner with the Hostpath CSI driver. Run the following command to start the sidecar containers and the CSI driver: kubectl create -f setup-csi-snapshotter.yaml","breadcrumbs":"Development » Developing a CSI driver » Deploy External-Snapshotter with CSI Driver","id":"48","title":"Deploy External-Snapshotter with CSI Driver"},"49":{"body":"Use the following example yaml files to test the snapshot feature. Create a StorageClass : kubectl create -f storageclass.yaml Create a PVC : kubectl create -f pvc.yaml Create a VolumeSnapshotClass : kubectl create -f snapshotclass.yaml Create a VolumeSnapshot : kubectl create -f snapshot.yaml Create a PVC from a VolumeSnapshot : kuberctl create -f restore.yaml","breadcrumbs":"Development » Developing a CSI driver » Test Snapshot Feature","id":"49","title":"Test Snapshot Feature"},"5":{"body":"Before you can start using CSI, you must understand how to properly setup and configure deploy CSI drivers on top of Kubernetes. This section provides information on Setup - Information on how to setup the CSI feature Deployment - Instructions on deploying a driver Drivers - A growning list of available CSI driverse you can use Usage - Findout the usage mode of CSI drivers Example - Using Hostpath as an example CSI driver","breadcrumbs":"Using CSI Drivers","id":"5","title":"Using CSI Drivers"},"50":{"body":"If a PVC is not bound, the attempt to create a volume snapshot from that PVC will fail. No retries will be attempted. An event will be logged to indicate that the PVC is not bound. Note that this could happen if the PVC spec and the VolumeSnapshot spec are in the same yaml file. In this case, when the VolumeSnapshot object is created, the PVC object is created but volume creation is not complete and therefore PVC is not bound yet. You need to wait until the PVC is bound and try to create the snapshot again.","breadcrumbs":"Development » Developing a CSI driver » PVC not Bound","id":"50","title":"PVC not Bound"},"51":{"body":"This page describes to CSI driver developers how to deploy their driver onto a Kubernetes cluster.","breadcrumbs":"Development » Deploying in Kubernetes","id":"51","title":"Deploying in Kubernetes"},"52":{"body":"There are three components plus the kubelet that enable CSI drivers to provide storage to Kubernetes. These components are sidecar containers which are responsible for communication with both Kubernetes and the CSI driver, making the appropriate CSI calls for their respectful Kubernetes events.","breadcrumbs":"Development » Overview","id":"52","title":"Overview"},"53":{"body":"sidecar-container Sidecar containers manage Kubernetes events and make the appropriate calls to the CSI driver. These are the external attacher , external provisioner , and the driver registrar .","breadcrumbs":"Development » Sidecar Containers","id":"53","title":"Sidecar Containers"},"54":{"body":"external-attacher is a sidecar container that watches Kubernetes VolumeAttachment objects and triggers CSI ControllerPublish and ControllerUnpublish operations against a driver endpoint. As of this writing, the external attacher does not support leader election and therefore there can be only one running per CSI driver. For more information please read Attaching and Detaching . Note, even though this is called the external attacher , its function is to call the CSI API calls ControllerPublish and ControllerUnpublish . These calls most likely will occur in a node which is not the one that will mount the volume. For this reason, many CSI drivers do not support these calls, instead doing the attach/detach and mount/unmount both in the CSI NodePublish and NodeUnpublish calls done by the kubelet at the node which is supposed to mount.","breadcrumbs":"Development » External Attacher","id":"54","title":"External Attacher"},"55":{"body":"external-provisioner is a Sidecar container that watches Kubernetes PersistentVolumeClaim objects and triggers CSI CreateVolume and DeleteVolume operations against a driver endpoint. For more information please read Provisioning and Deleting .","breadcrumbs":"Development » External Provisioner","id":"55","title":"External Provisioner"},"56":{"body":"external-snapshotter is a Sidecar container that watches Kubernetes VolumeSnapshot objects and triggers CSI CreateSnapshot and DeleteSnapshot operations against a driver endpoint. For more information please read Snapshot Design Proposal .","breadcrumbs":"Development » External Snapshotter","id":"56","title":"External Snapshotter"},"57":{"body":"driver-registrar is a sidecar container that registers the CSI driver with kubelet, and adds the drivers custom NodeId to a label on the Kubernetes Node API Object. It does this by communicating with the Identity service on the CSI driver and also calling the CSI GetNodeId operation. The driver registrar must have the Kubernetes name for the node set through the environment variable KUBE_NODE_NAME as follows: - name: csi-driver-registrar imagePullPolicy: Always image: quay.io/k8scsi/driver-registrar:v0.2.0 args: - \"--v=5\" - \"--csi-address=$(ADDRESS)\" env: - name: ADDRESS value: /csi/csi.sock - name: KUBE_NODE_NAME valueFrom: fieldRef: fieldPath: spec.nodeName volumeMounts: - name: socket-dir mountPath: /csi","breadcrumbs":"Development » Driver Registrar","id":"57","title":"Driver Registrar"},"58":{"body":"kubelet The Kubernetes kubelet runs on every node and is responsible for making the CSI calls NodePublish and NodeUnpublish . These calls mount and unmount the storage volume from the storage system, making it available to the Pod to consume. As shown in the external-attacher , most CSI drivers choose to implement both their attach/detach and mount/unmount calls in the NodePublish and NodeUnpublish calls. They do this because the kubelet makes the request on the node which is to consume the volume.","breadcrumbs":"Development » Kubelet","id":"58","title":"Kubelet"},"59":{"body":"The mount point used by the CSI driver must be set to Bidirectional . See the example below: volumeMounts: - name: socket-dir mountPath: /csi - name: mountpoint-dir mountPath: /var/lib/kubelet/pods mountPropagation: \"Bidirectional\" volumes: - name: socket-dir hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate - name: mountpoint-dir hostPath: path: /var/lib/kubelet/pods type: Directory","breadcrumbs":"Development » Mount point","id":"59","title":"Mount point"},"6":{"body":"This document has been updated for the latest version of Kubernetes v1.12. This document outlines the features that are available for CSI. To get step by step instructions on how to run an example CSI driver, you can read the Example section.","breadcrumbs":"Using a CSI Driver » Setup","id":"6","title":"Setup"},"60":{"body":"Side car containers need the appropriate permissions to be able to access and manipulate Kubernetes objects. Here are the RBAC rules needed: kind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-hostpath-role\nrules: - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"create\", \"delete\", \"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"persistentvolumeclaims\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"storageclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"volumeattachments\"] verbs: [\"get\", \"list\", \"watch\", \"update\"]","breadcrumbs":"Development » RBAC Rules","id":"60","title":"RBAC Rules"},"61":{"body":"Deploying a CSI driver onto Kubernetes is highlighted in detail in Recommended Mechanism for Deploying CSI Drivers on Kubernetes .","breadcrumbs":"Development » Deploying","id":"61","title":"Deploying"},"62":{"body":"Simple deployment example using a single pod for all components: see the hostpath example . Full deployment example using a DaemonSet for the node plugin and StatefulSet for the controller plugin: check the NFS driver deployment files .","breadcrumbs":"Development » Examples","id":"62","title":"Examples"},"63":{"body":"For more information, please read CSI Volume Plugins in Kubernetes Design Doc .","breadcrumbs":"Development » More information","id":"63","title":"More information"},"64":{"body":"This document describes to developers how they can test their CSI clients or drivers.","breadcrumbs":"Development » Testing","id":"64","title":"Testing"},"65":{"body":"If you are writing a CSI client, like a CO or a side car container, then you can use some of the following methods to test your application. csi-test unit test mock driver : The csi-test repo provides an automatically generated Golang mock code to be used for unit tests. mock-driver : This driver can be used as an external service to test your gRPC calls. hostPath driver : This driver can be used on a single node to tests for mounting and unmounting of storage.","breadcrumbs":"Development » Testing » Testing CSI Clients","id":"65","title":"Testing CSI Clients"},"66":{"body":"The csi-test unit test mock driver enables Golang clients to test all aspects of their code. This is done by using the mock driver generated using GoMock , which let's the caller verify parameters and test for returned values. Here is a small example: // Setup mock m := gomock.NewController(&mock_utils.SafeGoroutineTester{}) defer m.Finish() driver := mock_driver.NewMockIdentityServer(m) // Setup input in := &csi.GetPluginInfoRequest{ Version: &csi.Version{ Major: 0, Minor: 1, Patch: 0, }, } // Setup mock outout out := &csi.GetPluginInfoResponse{ Name: \"mock\", VendorVersion: \"0.1.1\", Manifest: map[string]string{ \"hello\": \"world\", }, } // Setup expectation // !IMPORTANT!: Must set context expected value to gomock.Any() to match any value driver.EXPECT().GetPluginInfo(gomock.Any(), in).Return(out, nil).Times(1) // Create a new RPC server := mock_driver.NewMockCSIDriver(&mock_driver.MockCSIDriverServers{ Identity: driver, }) conn, err := server.Nexus() if err != nil { t.Errorf(\"Error: %s\", err.Error()) } defer server.Close() // Make call c := csi.NewIdentityClient(conn) r, err := c.GetPluginInfo(context.Background(), in) if err != nil { t.Errorf(\"Error: %s\", err.Error()) } name := r.GetName() if name != \"mock\" { t.Errorf(\"Unknown name: %s\\n\", name) }","breadcrumbs":"Development » Testing » CSI-Test Unit Test Mock Driver","id":"66","title":"CSI-Test Unit Test Mock Driver"},"67":{"body":"For more examples and information see: external-attacher side car container Golang GoMock","breadcrumbs":"Development » Testing » More Information","id":"67","title":"More Information"},"68":{"body":"The hostPath driver is probably the simplest CSI driver to use for testing on a single node. This is the driver that is for CSI e2e tests in Kubernetes. See the Example page for deployment and usage instructions.","breadcrumbs":"Development » Testing » HostPath Driver","id":"68","title":"HostPath Driver"},"69":{"body":"There are multiple ways to test your driver, some still in development. This page will describe each of the multiple methods to test your driver.","breadcrumbs":"Development » Testing » Testing CSI Drivers","id":"69","title":"Testing CSI Drivers"},"7":{"body":"Some of the features discussed here may be at different stages (alpha, beta, or GA). Ensure that the feature you want to try is enabled for the Kubernetes release you are using. To avoid version mismatch, you can enable all of the features discussed here for both kubelet and kube-apiserver with: --feature-gates=VolumeSnapshotDataSource=true,KubeletPluginsWatcher=true,CSINodeInfo=true,CSIDriverRegistry=true","breadcrumbs":"Using a CSI Driver » Enabling features","id":"7","title":"Enabling features"},"70":{"body":"There are multiple ways to test your driver. One way is to exercise every call by writing your own client for your unit tests as done in the Portworx driver . Another way to test your driver is to use the sanity package from csi-test . This simple package contains a single call which will test your driver according to the CSI specification. Here is an example of how it can be used: func TestMyDriver(t *testing.T) { // Setup the full driver and its environment ... setup driver ... // Now call the test suite sanity.Test(t, driverEndpointAddress)\n}","breadcrumbs":"Development » Testing » Unit Testing","id":"70","title":"Unit Testing"},"71":{"body":"For functional testing you can again provide your own model, or some of the following tools:","breadcrumbs":"Development » Testing » Functional Testing","id":"71","title":"Functional Testing"},"72":{"body":"csi-sanity is a program from csi-test which tests your driver based on the sanity package. Here is a sample way to use it: $ csi-sanity --ginkgo.v --csi.endpoint= For more information please see csi-sanity","breadcrumbs":"Development » Testing » csi-sanity","id":"72","title":"csi-sanity"},"73":{"body":"","breadcrumbs":"Troubleshooting","id":"73","title":"Troubleshooting"},"74":{"body":"kubectl describe pod your-nodeplugin-pod shows: failed to start container \"your-driver\": Error response from daemon:\nlinux mounts: Path /var/lib/kubelet/pods is mounted on / but it is not a shared mount Your Docker host is not configured to allow shared mounts. Take a look at this page for instructions to enable them.","breadcrumbs":"Node plugin pod does not start with RunContainerError status","id":"74","title":"Node plugin pod does not start with RunContainerError status"},"75":{"body":"If you have a Kubernetes 1.9 cluster, not being able to list VolumeAttachment and the following error are due to the lack of the storage.k8s.io/v1alpha1=true runtime configuration: $ kubectl logs csi-pod external-attacher\n...\nI0306 16:34:50.976069 1 reflector.go:240] Listing and watching *v1alpha1.VolumeAttachment from github.com/kubernetes-csi/external-attacher/vendor/k8s.io/client-go/informers/factory.go:86 E0306 16:34:50.992034 1 reflector.go:205] github.com/kubernetes-csi/external-attacher/vendor/k8s.io/client-go/informers/factory.go:86: Failed to list *v1alpha1.VolumeAttachment: the server could not find the requested resource\n... Please see the Kubernetes 1.9 page.","breadcrumbs":"External attacher can't find VolumeAttachments","id":"75","title":"External attacher can't find VolumeAttachments"},"76":{"body":"The external components images are under active development. It can happen that they become incompatible with each other. If the issues above above have been ruled out, contact the sig-storage team and/or run the e2e test : go run hack/e2e.go -- --provider=local --test --test_args=\"--ginkgo.focus=Feature:CSI\"","breadcrumbs":"Problems with the external components","id":"76","title":"Problems with the external components"},"77":{"body":"CSI Specification CSI Volume Plugins in Kubernetes Design Doc","breadcrumbs":"References","id":"77","title":"References"},"78":{"body":"In this section, you will find information about CSI support in older Kubernetes versions.","breadcrumbs":"Archive","id":"78","title":"Archive"},"79":{"body":"Since CSI support is alpha in Kubernetes 1.9, the following flags must be set explictly: API Server binary: --allow-privileged=true\n--feature-gates=CSIPersistentVolume=true,MountPropagation=true\n--runtime-config=storage.k8s.io/v1alpha1=true Controller-manager binary --feature-gates=CSIPersistentVolume=true Kubelet --allow-privileged=true\n--feature-gates=CSIPersistentVolume=true,MountPropagation=true","breadcrumbs":"Archive » CSI with Kubernetes 1.9","id":"79","title":"CSI with Kubernetes 1.9"},"8":{"body":"To use CSI drivers, your Kubernetes cluster must allow privileged pods (i.e. --allow-privileged flag must be set to true for both the API server and the kubelet). This is the default in some environments (e.g. GCE, GKE, kubeadm ). Ensure your API server are started with the privileged flag: $ ./kube-apiserver ... --allow-privileged=true ... $ ./kubelet ... --allow-privileged=true ...","breadcrumbs":"Using a CSI Driver » Enable privileged Pods","id":"8","title":"Enable privileged Pods"},"80":{"body":"If you are a developer and are using the script cluster/kube-up.sh from the Kubernetes repo, then you can set values using the following environment variables: export KUBE_RUNTIME_CONFIG=\"storage.k8s.io/v1alpha1=true\"\nexport KUBE_FEATURE_GATES=\"MountPropagation=true,CSIPersistentVolume=true\" When using the script hack/local-up-cluster.sh , set the same variables without the KUBE_ prefix: export RUNTIME_CONFIG=\"storage.k8s.io/v1alpha1=true\"\nexport FEATURE_GATES=\"MountPropagation=true,CSIPersistentVolume=true\"","breadcrumbs":"Archive » Developers","id":"80","title":"Developers"},"81":{"body":"Once the system is up, to confirm if the runtime config has taken effect, the following command should return that there are no resources and not return an error: $ kubectl get volumeattachments To confirm that the feature gate has taken effect, submit the following fake PersistentVolume specification. If it is accepted, then we can confirm that the feature gate has been set correctly, and you may go ahead and delete it: apiVersion: v1\nkind: PersistentVolume\nmetadata: name: fakepv\nspec: capacity: storage: 1Gi accessModes: - ReadWriteMany csi: driver: fake volumeHandle: \"1\" readOnly: false","breadcrumbs":"Archive » Confirming the setup","id":"81","title":"Confirming the setup"},"82":{"body":"TBD","breadcrumbs":"Archive » CSI with Kubernetes 1.10","id":"82","title":"CSI with Kubernetes 1.10"},"9":{"body":"Another feature that CSI depends on is mount propagation. It allows the sharing of volumes mounted by one container with other containers in the same pod, or even to other pods on the same node. For mount propagation to work, the Docker daemon for the cluster must allow shared mounts. See the mount propagation docs to find out how to enable this feature for your cluster. This page explains how to check if shared mounts are enabled and how to configure Docker for shared mounts.","breadcrumbs":"Using a CSI Driver » Enabling mount propagation","id":"9","title":"Enabling mount propagation"}},"length":83,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{".":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"c":{"2":{"9":{"6":{"7":{"7":{"6":{"9":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"40":{"tf":3.3166247903554},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"8":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"t":{"1":{"3":{":":{"5":{"9":{":":{"1":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"t":{"2":{"1":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"7":{"1":{"c":{"c":{"1":{"4":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"9":{"6":{"6":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"5":{"9":{":":{"1":{"9":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"36":{"tf":2.23606797749979},"37":{"tf":2.6457513110645907},"38":{"tf":3.1622776601683795},"66":{"tf":1.4142135623730951}}},"1":{".":{"1":{"0":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"75":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"/":{"1":{"df":5,"docs":{"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":2.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"7":{"4":{"1":{"8":{"2":{"4":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0}}},"1":{"df":1,"docs":{"40":{"tf":1.0}},"e":{"8":{"df":5,"docs":{"13":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":3.3166247903554},"41":{"tf":2.0}}},"df":0,"docs":{}}},"2":{"3":{"4":{"5":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"40":{"tf":1.0}}},"4":{"df":1,"docs":{"40":{"tf":1.0}}},"5":{"3":{"8":{"5":{"7":{"6":{"2":{"0":{"5":{"4":{"7":{"1":{"5":{"7":{"7":{"5":{"2":{"5":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{":":{"5":{"0":{".":{"9":{"7":{"6":{"0":{"6":{"9":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"0":{"3":{"4":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"7":{"2":{".":{"1":{"7":{".":{"0":{".":{"5":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":8,"docs":{"13":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.7320508075688772},"66":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"81":{"tf":1.0}}}}},"2":{"/":{"2":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"8":{"df":4,"docs":{"13":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"8":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"4":{"df":1,"docs":{"40":{"tf":1.0}}},"6":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}},"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":1.0}}}},"3":{"0":{"0":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"41":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"3":{"3":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"4":{"8":{"df":1,"docs":{"37":{"tf":1.0}}},"df":1,"docs":{"44":{"tf":1.0}},"s":{"df":1,"docs":{"35":{"tf":1.0}}}},"5":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}},"s":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}},"6":{"6":{"df":1,"docs":{"38":{"tf":1.0}}},"7":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"9":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":2,"docs":{"34":{"tf":1.0},"41":{"tf":1.0}}}},"7":{"7":{"3":{"2":{"4":{"6":{"8":{"4":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"23":{"tf":1.0}}},"6":{"2":{"d":{"7":{"2":{"4":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"1":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"40":{"tf":3.1622776601683795},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"5":{"4":{"a":{"a":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"7":{"c":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"4":{"df":0,"docs":{},"e":{"9":{"7":{"df":0,"docs":{},"f":{"3":{"a":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"1":{"c":{"6":{"d":{"0":{"8":{"1":{"b":{"8":{"df":0,"docs":{},"e":{"9":{"6":{"c":{"5":{"8":{"df":0,"docs":{},"e":{"d":{"0":{"0":{"c":{"9":{"b":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"1":{"7":{"4":{"5":{"df":0,"docs":{},"e":{"8":{"9":{"b":{"2":{"5":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"4":{"5":{"0":{"5":{"4":{"3":{"7":{"df":0,"docs":{},"f":{"0":{"1":{"5":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"18":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"26":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"d":{"d":{"df":2,"docs":{"21":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":1,"docs":{"21":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":8,"docs":{"13":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":2.0},"29":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"38":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"30":{"tf":3.3166247903554},"31":{"tf":2.23606797749979},"32":{"tf":2.6457513110645907},"33":{"tf":3.1622776601683795},"41":{"tf":1.0},"60":{"tf":2.23606797749979}}}}}}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":18,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0}}}}}}},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"34":{"tf":2.0},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"38":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"43":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"v":{"1":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"3":{"tf":1.0},"31":{"tf":3.1622776601683795},"35":{"tf":3.605551275463989},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"58":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"72":{"tf":1.0}}}}},"b":{"1":{"6":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":2,"docs":{"27":{"tf":1.0},"75":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"5":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}}}},"t":{"a":{"df":4,"docs":{"16":{"tf":1.0},"2":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"47":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"10":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"27":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":2.0},"50":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"7":{"1":{"4":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"40":{"tf":3.0}}},"7":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"5":{"b":{"c":{"4":{"7":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":14,"docs":{"11":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"57":{"tf":1.0},"58":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"c":{"df":4,"docs":{"26":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":3,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.0}}}}},"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}},"f":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"25":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"27":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":10,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"60":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":1,"docs":{"65":{"tf":1.0}},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"50":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"81":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"81":{"tf":2.0}}}}}},"n":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"16":{"tf":1.0},"17":{"tf":2.0},"23":{"tf":3.7416573867739413},"27":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"10":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"62":{"tf":1.0},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"r":{"d":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"29":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"29":{"tf":2.23606797749979},"30":{"tf":2.8284271247461903},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":3.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":3.3166247903554},"40":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":3.1622776601683795},"50":{"tf":2.0},"60":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"50":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"30":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"b":{"a":{"c":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":2.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"32":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":65,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"11":{"tf":2.449489742783178},"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"16":{"tf":2.23606797749979},"17":{"tf":3.4641016151377544},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":3.872983346207417},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":3.0},"3":{"tf":1.7320508075688772},"30":{"tf":2.0},"31":{"tf":2.0},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":3.605551275463989},"35":{"tf":3.7416573867739413},"36":{"tf":3.3166247903554},"37":{"tf":4.123105625617661},"38":{"tf":5.196152422706632},"39":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":3.4641016151377544},"41":{"tf":2.449489742783178},"42":{"tf":1.0},"43":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"45":{"tf":2.6457513110645907},"46":{"tf":1.0},"48":{"tf":2.23606797749979},"5":{"tf":2.6457513110645907},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":5,"docs":{"14":{"tf":2.0},"15":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":1.0},"57":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}}}}},"t":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":10,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"40":{"tf":2.449489742783178},"41":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":10,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"20":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"1":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"51":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"7":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":8,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"36":{"tf":1.0},"59":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"o":{"c":{"df":3,"docs":{"63":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"/":{"/":{"df":0,"docs":{},"f":{"d":{"2":{"9":{"5":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"1":{"5":{"5":{"b":{"d":{"df":0,"docs":{},"f":{"0":{"8":{"d":{"1":{"d":{"a":{"3":{"4":{"1":{"c":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"a":{"a":{"0":{"d":{"1":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"e":{"a":{"a":{"a":{"d":{"6":{"9":{"5":{"0":{"a":{"9":{"4":{"6":{"3":{"5":{"5":{"7":{"8":{"9":{"6":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"df":1,"docs":{"54":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"54":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":47,"docs":{"1":{"tf":1.0},"11":{"tf":2.449489742783178},"13":{"tf":1.7320508075688772},"14":{"tf":2.8284271247461903},"16":{"tf":3.0},"17":{"tf":3.4641016151377544},"20":{"tf":2.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"27":{"tf":2.8284271247461903},"28":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"45":{"tf":2.449489742783178},"48":{"tf":2.0},"5":{"tf":2.449489742783178},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.6457513110645907},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"68":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"5":{"tf":1.0}}},"’":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"27":{"tf":1.0},"8":{"tf":1.0}}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"68":{"tf":1.0},"76":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.0},"29":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.7320508075688772},"74":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"$":{"(":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"30":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"v":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"38":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"66":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":10,"docs":{"13":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":19,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":2.0}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":2.6457513110645907},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}}}}},"f":{"5":{"5":{"d":{"b":{"6":{"3":{"2":{"df":1,"docs":{"40":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"7":{"9":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"6":{"1":{"4":{"1":{"1":{"df":0,"docs":{},"f":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"50":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"81":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"26":{"tf":1.0},"38":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.6457513110645907}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":16,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"29":{"tf":2.0},"33":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":2.0},"47":{"tf":2.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"1":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"9":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"43":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"29":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":21,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":2.449489742783178},"29":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"70":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}},"g":{"a":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}},"s":{"=":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"18":{"tf":1.0},"47":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"40":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"8":{"6":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"p":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"38":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":22,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":3.0},"20":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":3.7416573867739413},"35":{"tf":3.7416573867739413},"36":{"tf":2.8284271247461903},"37":{"tf":3.872983346207417},"38":{"tf":3.605551275463989},"39":{"tf":1.7320508075688772},"40":{"tf":3.3166247903554},"41":{"tf":2.23606797749979},"48":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"36":{"tf":2.23606797749979},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":1,"docs":{"8":{"tf":1.0}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":2.23606797749979},"57":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"n":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"78":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"16":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"23":{"tf":3.4641016151377544},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"11":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"38":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"21":{"tf":1.0},"76":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"'":{"df":0,"docs":{},"{":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"[":{"*":{"]":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"27":{"tf":2.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"30":{"tf":2.23606797749979},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":3.0},"41":{"tf":1.4142135623730951},"60":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"80":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":21,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":2.0},"40":{"tf":2.8284271247461903},"41":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.0},"74":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}},"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":2.0},"18":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"7":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":43,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"13":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"57":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"6":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"33":{"tf":3.0},"5":{"tf":1.0},"60":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"50":{"tf":1.0},"75":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"25":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"66":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"54":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"17":{"tf":2.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"18":{"tf":1.0},"66":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"66":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"43":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"17":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"22":{"tf":1.4142135623730951},"43":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.6457513110645907}}}},"d":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"17":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"5":{"tf":1.0}},"l":{"df":2,"docs":{"25":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.0}}}}}}}}}},"df":12,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"23":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"74":{"tf":2.0},"9":{"tf":2.8284271247461903}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"29":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"24":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":2.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":2.449489742783178},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.4641016151377544},"3":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":2.8284271247461903},"35":{"tf":2.8284271247461903},"36":{"tf":3.7416573867739413},"37":{"tf":2.8284271247461903},"38":{"tf":3.1622776601683795},"39":{"tf":2.0},"40":{"tf":3.872983346207417},"41":{"tf":2.0},"57":{"tf":2.23606797749979},"59":{"tf":2.0},"60":{"tf":1.0},"66":{"tf":2.23606797749979},"81":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":9,"docs":{"13":{"tf":1.0},"27":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"20":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"23":{"tf":1.0}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":2.0},"41":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"f":{"df":2,"docs":{"22":{"tf":1.0},"62":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"14":{"tf":2.23606797749979},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}},"i":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"14":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":3.0},"36":{"tf":1.0},"74":{"tf":1.0}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"13":{"tf":1.7320508075688772},"38":{"tf":2.6457513110645907},"39":{"tf":1.7320508075688772},"40":{"tf":3.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"21":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688772},"27":{"tf":2.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":1,"docs":{"39":{"tf":1.0}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":4,"docs":{"16":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0},"81":{"tf":1.0}}},"df":3,"docs":{"54":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"51":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":7,"docs":{"11":{"tf":1.0},"17":{"tf":2.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"66":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"27":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":3.872983346207417},"66":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"30":{"tf":1.0},"33":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":3.0},"18":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"59":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"d":{"df":2,"docs":{"27":{"tf":3.0},"45":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"26":{"tf":2.0},"27":{"tf":3.3166247903554},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"27":{"tf":3.0},"30":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":16,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"52":{"tf":1.0}},"g":{"df":1,"docs":{"23":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"32":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}}}},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":15,"docs":{"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":2.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":2.23606797749979},"38":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":2,"docs":{"23":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"16":{"tf":1.0},"19":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"8":{"tf":2.0}},"e":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"41":{"tf":1.0},"76":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":7,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":2.6457513110645907},"28":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"27":{"tf":2.8284271247461903},"3":{"tf":1.0},"30":{"tf":3.1622776601683795},"34":{"tf":3.605551275463989},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{":":{"2":{"a":{"0":{"3":{"a":{"6":{"0":{"5":{"9":{"df":0,"docs":{},"f":{"2":{"1":{"df":0,"docs":{},"e":{"1":{"5":{"0":{"a":{"df":0,"docs":{},"e":{"8":{"4":{"b":{"0":{"9":{"7":{"3":{"8":{"6":{"3":{"6":{"0":{"9":{"4":{"9":{"4":{"a":{"a":{"d":{"7":{"0":{"df":0,"docs":{},"f":{"0":{"a":{"8":{"0":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"6":{"4":{"b":{"d":{"d":{"d":{"8":{"d":{"9":{"2":{"4":{"6":{"5":{"8":{"1":{"2":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"38":{"tf":2.0}}}}},"v":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"[":{"'":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":2.6457513110645907},"49":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903}}},"df":3,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"o":{"df":1,"docs":{"38":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}},"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"df":5,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.0}},"e":{"a":{"d":{"df":6,"docs":{"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"y":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"48":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"38":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"2":{"0":{"5":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":3,"docs":{"13":{"tf":1.7320508075688772},"17":{"tf":1.0},"57":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"v":{"0":{".":{"2":{".":{"0":{"df":2,"docs":{"17":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":2.8284271247461903},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":2.0}}}},"df":3,"docs":{"16":{"tf":2.449489742783178},"17":{"tf":2.6457513110645907},"36":{"tf":2.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"16":{"tf":1.0},"27":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"21":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"27":{"tf":2.0},"38":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":2.0},"27":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":17,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"33":{"tf":3.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"75":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"27":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979}},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}},"o":{"df":1,"docs":{"38":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"60":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772}}}}},"p":{"c":{"df":2,"docs":{"45":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"76":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":2.0},"38":{"tf":2.6457513110645907},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"38":{"tf":1.0}},"o":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":2.0}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"27":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"22":{"tf":2.23606797749979},"43":{"tf":1.0},"45":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"22":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"38":{"tf":2.449489742783178},"41":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"66":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":2.6457513110645907},"30":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"78":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"n":{"d":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":7,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"i":{"c":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"df":8,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":2.23606797749979},"29":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":11,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.0},"66":{"tf":2.0},"70":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"14":{"tf":1.0},"28":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"58":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":2.23606797749979},"3":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"40":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"30":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":12,"docs":{"18":{"tf":1.7320508075688772},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":4.123105625617661},"41":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"56":{"tf":1.0}},"t":{"df":7,"docs":{"33":{"tf":3.3166247903554},"37":{"tf":3.7416573867739413},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.4142135623730951},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":3,"docs":{"17":{"tf":2.23606797749979},"18":{"tf":1.0},"27":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}}},"s":{"d":{"df":1,"docs":{"27":{"tf":3.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"38":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"48":{"tf":1.0},"62":{"tf":1.0}}}}}}}}},"u":{"df":13,"docs":{"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"14":{"tf":1.4142135623730951},"23":{"tf":5.196152422706632},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.1622776601683795},"28":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.7320508075688772},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"27":{"tf":3.4641016151377544},"30":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"60":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"27":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0}}}},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.0}},"n":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}}},"b":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"27":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":16,"docs":{"22":{"tf":1.0},"24":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"38":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"1":{"5":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"0":{"5":{"7":{"4":{"8":{"5":{"a":{"b":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}},"p":{"df":1,"docs":{"5":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":2,"docs":{"50":{"tf":1.0},"7":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"27":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"41":{"tf":1.0},"73":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"8":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"17":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":2.0},"59":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"44":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"11":{"tf":1.0}}}},"t":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"x":{":":{"/":{"/":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":2.0}}}},"df":0,"docs":{}},"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"38":{"tf":1.0},"5":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":32,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"v":{"0":{".":{"0":{".":{"1":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"3":{".":{"0":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":2.0}}},"4":{".":{"1":{"df":1,"docs":{"3":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"0":{"df":2,"docs":{"2":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"2":{"tf":1.0}}},"2":{"df":4,"docs":{"18":{"tf":1.0},"29":{"tf":2.0},"47":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":17,"docs":{"11":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"81":{"tf":1.0}}},"=":{"5":{"df":4,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":11,"docs":{"11":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.7320508075688772},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"36":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":3,"docs":{"36":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":1.7320508075688772},"57":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"b":{"df":5,"docs":{"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"33":{"tf":3.0},"60":{"tf":2.23606797749979}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":3.1622776601683795},"6":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"f":{"df":1,"docs":{"22":{"tf":1.0}}},"i":{"a":{"df":2,"docs":{"16":{"tf":1.0},"27":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":25,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":3.4641016151377544},"39":{"tf":1.4142135623730951},"40":{"tf":2.6457513110645907},"41":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"54":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"33":{"tf":1.0},"40":{"tf":2.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"30":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"29":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"30":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"50":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"30":{"tf":2.6457513110645907},"31":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":2.8284271247461903},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.23606797749979},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"24":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"72":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"9":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"39":{"tf":1.7320508075688772},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"54":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}},"breadcrumbs":{"root":{"0":{".":{"1":{".":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"c":{"2":{"9":{"6":{"7":{"7":{"6":{"9":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"40":{"tf":3.3166247903554},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"8":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"t":{"1":{"3":{":":{"5":{"9":{":":{"1":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"t":{"2":{"1":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"7":{"1":{"c":{"c":{"1":{"4":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"9":{"6":{"6":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"5":{"9":{":":{"1":{"9":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"36":{"tf":2.23606797749979},"37":{"tf":2.6457513110645907},"38":{"tf":3.1622776601683795},"66":{"tf":1.4142135623730951}}},"1":{".":{"1":{"0":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"75":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"/":{"1":{"df":5,"docs":{"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":2.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"7":{"4":{"1":{"8":{"2":{"4":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0}}},"1":{"df":1,"docs":{"40":{"tf":1.0}},"e":{"8":{"df":5,"docs":{"13":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":3.3166247903554},"41":{"tf":2.0}}},"df":0,"docs":{}}},"2":{"3":{"4":{"5":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"40":{"tf":1.0}}},"4":{"df":1,"docs":{"40":{"tf":1.0}}},"5":{"3":{"8":{"5":{"7":{"6":{"2":{"0":{"5":{"4":{"7":{"1":{"5":{"7":{"7":{"5":{"2":{"5":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{":":{"5":{"0":{".":{"9":{"7":{"6":{"0":{"6":{"9":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"0":{"3":{"4":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"7":{"2":{".":{"1":{"7":{".":{"0":{".":{"5":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":8,"docs":{"13":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.7320508075688772},"66":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"81":{"tf":1.0}}}}},"2":{"/":{"2":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"8":{"df":4,"docs":{"13":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"8":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"4":{"df":1,"docs":{"40":{"tf":1.0}}},"6":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}},"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":1.0}}}},"3":{"0":{"0":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"41":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"3":{"3":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"4":{"8":{"df":1,"docs":{"37":{"tf":1.0}}},"df":1,"docs":{"44":{"tf":1.0}},"s":{"df":1,"docs":{"35":{"tf":1.0}}}},"5":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}},"s":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}},"6":{"6":{"df":1,"docs":{"38":{"tf":1.0}}},"7":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"9":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":2,"docs":{"34":{"tf":1.0},"41":{"tf":1.0}}}},"7":{"7":{"3":{"2":{"4":{"6":{"8":{"4":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"23":{"tf":1.0}}},"6":{"2":{"d":{"7":{"2":{"4":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"1":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"40":{"tf":3.1622776601683795},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"5":{"4":{"a":{"a":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"7":{"c":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"4":{"df":0,"docs":{},"e":{"9":{"7":{"df":0,"docs":{},"f":{"3":{"a":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"1":{"c":{"6":{"d":{"0":{"8":{"1":{"b":{"8":{"df":0,"docs":{},"e":{"9":{"6":{"c":{"5":{"8":{"df":0,"docs":{},"e":{"d":{"0":{"0":{"c":{"9":{"b":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"1":{"7":{"4":{"5":{"df":0,"docs":{},"e":{"8":{"9":{"b":{"2":{"5":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"4":{"5":{"0":{"5":{"4":{"3":{"7":{"df":0,"docs":{},"f":{"0":{"1":{"5":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"18":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"26":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"d":{"d":{"df":2,"docs":{"21":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":1,"docs":{"21":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":8,"docs":{"13":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":10,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":2.0},"29":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"38":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"30":{"tf":3.3166247903554},"31":{"tf":2.23606797749979},"32":{"tf":2.6457513110645907},"33":{"tf":3.1622776601683795},"41":{"tf":1.0},"60":{"tf":2.23606797749979}}}}}}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":18,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0}}}}}}},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"34":{"tf":2.0},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"38":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"43":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"v":{"1":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"3":{"tf":1.0},"31":{"tf":3.3166247903554},"35":{"tf":3.7416573867739413},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"58":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.7320508075688772}},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"72":{"tf":1.0}}}}},"b":{"1":{"6":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":2,"docs":{"27":{"tf":1.0},"75":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"5":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}}}},"t":{"a":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"47":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"10":{"tf":2.0},"23":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"27":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":2.0},"50":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"7":{"1":{"4":{"df":4,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"40":{"tf":3.0}}},"7":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"5":{"b":{"c":{"4":{"7":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":14,"docs":{"11":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"57":{"tf":1.0},"58":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"c":{"df":4,"docs":{"26":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":3,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.0}}}}},"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}},"f":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"25":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"27":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":10,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"60":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":1,"docs":{"65":{"tf":1.0}},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"50":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"76":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"81":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":2.23606797749979},"18":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979}}}}}},"n":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"16":{"tf":1.0},"17":{"tf":2.0},"23":{"tf":3.7416573867739413},"27":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"10":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"62":{"tf":1.0},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"r":{"d":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"29":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"29":{"tf":2.23606797749979},"30":{"tf":3.0},"31":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"33":{"tf":3.1622776601683795},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":3.3166247903554},"40":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":3.1622776601683795},"50":{"tf":2.0},"60":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"50":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"30":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"b":{"a":{"c":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":2.23606797749979},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"32":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":75,"docs":{"1":{"tf":2.0},"10":{"tf":1.4142135623730951},"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"13":{"tf":2.23606797749979},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":2.6457513110645907},"17":{"tf":3.605551275463989},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"23":{"tf":4.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"27":{"tf":3.1622776601683795},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":2.449489742783178},"31":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"33":{"tf":2.6457513110645907},"34":{"tf":3.872983346207417},"35":{"tf":4.0},"36":{"tf":3.605551275463989},"37":{"tf":4.358898943540674},"38":{"tf":5.291502622129181},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":3.605551275463989},"41":{"tf":2.6457513110645907},"42":{"tf":1.0},"43":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"45":{"tf":2.8284271247461903},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.6457513110645907},"49":{"tf":1.0},"5":{"tf":2.8284271247461903},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.6457513110645907},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":5,"docs":{"14":{"tf":2.23606797749979},"15":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"57":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"36":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}}}}},"t":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":10,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"40":{"tf":2.449489742783178},"41":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":2.0},"5":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":10,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"20":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":34,"docs":{"1":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"7":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":8,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"36":{"tf":1.0},"59":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"o":{"c":{"df":3,"docs":{"63":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"/":{"/":{"df":0,"docs":{},"f":{"d":{"2":{"9":{"5":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"1":{"5":{"5":{"b":{"d":{"df":0,"docs":{},"f":{"0":{"8":{"d":{"1":{"d":{"a":{"3":{"4":{"1":{"c":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"a":{"a":{"0":{"d":{"1":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"e":{"a":{"a":{"a":{"d":{"6":{"9":{"5":{"0":{"a":{"9":{"4":{"6":{"3":{"5":{"5":{"7":{"8":{"9":{"6":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"df":1,"docs":{"54":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"54":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":68,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"13":{"tf":2.23606797749979},"14":{"tf":3.0},"15":{"tf":1.0},"16":{"tf":3.3166247903554},"17":{"tf":3.605551275463989},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":2.23606797749979},"21":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"23":{"tf":2.6457513110645907},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"27":{"tf":3.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.8284271247461903},"44":{"tf":1.0},"45":{"tf":2.6457513110645907},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"5":{"tf":2.6457513110645907},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.8284271247461903},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"68":{"tf":2.23606797749979},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"5":{"tf":1.0}}},"’":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"25":{"tf":1.0},"27":{"tf":2.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"27":{"tf":1.0},"8":{"tf":1.0}}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"68":{"tf":1.0},"76":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"18":{"tf":1.0},"29":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.7320508075688772},"52":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":2.0},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":2.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"$":{"(":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"30":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"v":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"38":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"66":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":10,"docs":{"13":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":19,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":2.0}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772}}}}}}}},"f":{"5":{"5":{"d":{"b":{"6":{"3":{"2":{"df":1,"docs":{"40":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"7":{"9":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"6":{"1":{"4":{"1":{"1":{"df":0,"docs":{},"f":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"50":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"81":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"26":{"tf":1.0},"38":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.6457513110645907}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":16,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"29":{"tf":2.0},"33":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":2.23606797749979},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":2.449489742783178},"79":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"1":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"75":{"tf":1.7320508075688772},"78":{"tf":1.0},"9":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"43":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"29":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":21,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":2.449489742783178},"29":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"70":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}},"g":{"a":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951}},"s":{"=":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"18":{"tf":1.0},"47":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"40":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"8":{"6":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"p":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"38":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":22,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":3.0},"20":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":3.7416573867739413},"35":{"tf":3.7416573867739413},"36":{"tf":3.0},"37":{"tf":3.872983346207417},"38":{"tf":3.605551275463989},"39":{"tf":1.7320508075688772},"40":{"tf":3.3166247903554},"41":{"tf":2.23606797749979},"48":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"36":{"tf":2.23606797749979},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":1,"docs":{"8":{"tf":1.0}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"14":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":2.23606797749979},"57":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"n":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"72":{"tf":1.0},"78":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"16":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"23":{"tf":3.4641016151377544},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"11":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"38":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"21":{"tf":1.0},"76":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"'":{"df":0,"docs":{},"{":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"[":{"*":{"]":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"27":{"tf":2.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"30":{"tf":2.23606797749979},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":3.0},"41":{"tf":1.4142135623730951},"60":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"80":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":21,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":2.0},"40":{"tf":2.8284271247461903},"41":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.0},"74":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}},"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":2.0},"18":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.23606797749979},"7":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":43,"docs":{"1":{"tf":2.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"13":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"57":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"6":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"33":{"tf":3.0},"5":{"tf":1.0},"60":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"50":{"tf":1.0},"75":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"25":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"66":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"54":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"17":{"tf":2.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"18":{"tf":1.0},"66":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"66":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"43":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"17":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"22":{"tf":1.4142135623730951},"43":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903}}}},"d":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"17":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"5":{"tf":1.0}},"l":{"df":2,"docs":{"25":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"72":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.0}}}}}}}}}},"df":12,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"23":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"74":{"tf":2.0},"9":{"tf":3.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"29":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"24":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":2.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":2.449489742783178},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.4641016151377544},"3":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":2.8284271247461903},"35":{"tf":2.8284271247461903},"36":{"tf":3.7416573867739413},"37":{"tf":2.8284271247461903},"38":{"tf":3.1622776601683795},"39":{"tf":2.0},"40":{"tf":3.872983346207417},"41":{"tf":2.0},"57":{"tf":2.23606797749979},"59":{"tf":2.0},"60":{"tf":1.0},"66":{"tf":2.23606797749979},"81":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":9,"docs":{"13":{"tf":1.0},"27":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"20":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"23":{"tf":1.0}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":2.0},"41":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"f":{"df":2,"docs":{"22":{"tf":1.0},"62":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"14":{"tf":2.23606797749979},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"14":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":3.0},"36":{"tf":1.0},"74":{"tf":1.0}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"13":{"tf":1.7320508075688772},"38":{"tf":2.6457513110645907},"39":{"tf":1.7320508075688772},"40":{"tf":3.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"21":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688772},"27":{"tf":2.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":1,"docs":{"39":{"tf":1.0}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":4,"docs":{"16":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0},"81":{"tf":1.0}}},"df":3,"docs":{"54":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"51":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":7,"docs":{"11":{"tf":1.0},"17":{"tf":2.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"66":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"27":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":3.872983346207417},"66":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"30":{"tf":1.0},"33":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":3.0},"18":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"59":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"d":{"df":2,"docs":{"27":{"tf":3.0},"45":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"26":{"tf":2.0},"27":{"tf":3.3166247903554},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"27":{"tf":3.0},"30":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":16,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"52":{"tf":1.0}},"g":{"df":1,"docs":{"23":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}}},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":15,"docs":{"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":2.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"59":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":2.23606797749979},"38":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":2,"docs":{"23":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.0},"26":{"tf":2.0},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"16":{"tf":1.0},"19":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"8":{"tf":2.23606797749979}},"e":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"41":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":7,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":2.8284271247461903},"28":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"27":{"tf":2.8284271247461903},"3":{"tf":1.0},"30":{"tf":3.3166247903554},"34":{"tf":3.7416573867739413},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{":":{"2":{"a":{"0":{"3":{"a":{"6":{"0":{"5":{"9":{"df":0,"docs":{},"f":{"2":{"1":{"df":0,"docs":{},"e":{"1":{"5":{"0":{"a":{"df":0,"docs":{},"e":{"8":{"4":{"b":{"0":{"9":{"7":{"3":{"8":{"6":{"3":{"6":{"0":{"9":{"4":{"9":{"4":{"a":{"a":{"d":{"7":{"0":{"df":0,"docs":{},"f":{"0":{"a":{"8":{"0":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"6":{"4":{"b":{"d":{"d":{"d":{"8":{"d":{"9":{"2":{"4":{"6":{"5":{"8":{"1":{"2":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"38":{"tf":2.0}}}}},"v":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"[":{"'":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":2.6457513110645907},"49":{"tf":1.4142135623730951},"50":{"tf":3.0}}},"df":3,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"o":{"df":1,"docs":{"38":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":2.0}}}},"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"df":5,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.0}},"e":{"a":{"d":{"df":6,"docs":{"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"y":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"48":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"38":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"2":{"0":{"5":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":3,"docs":{"13":{"tf":2.0},"17":{"tf":1.0},"57":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"v":{"0":{".":{"2":{".":{"0":{"df":2,"docs":{"17":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":3.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"53":{"tf":1.0},"57":{"tf":2.23606797749979}}}},"df":3,"docs":{"16":{"tf":2.449489742783178},"17":{"tf":2.6457513110645907},"36":{"tf":2.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"16":{"tf":1.0},"27":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"21":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"27":{"tf":2.0},"38":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":2.0},"27":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"33":{"tf":3.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"44":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"75":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"27":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.4142135623730951},"41":{"tf":2.449489742783178}},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}},"o":{"df":1,"docs":{"38":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"60":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":2.0}}}}},"p":{"c":{"df":2,"docs":{"45":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":2.0},"60":{"tf":2.0},"76":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":2.0},"38":{"tf":2.6457513110645907},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"38":{"tf":1.0}},"o":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":2.0}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"27":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"22":{"tf":2.449489742783178},"43":{"tf":1.0},"45":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"22":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.449489742783178}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"38":{"tf":2.449489742783178},"41":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"66":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":2.6457513110645907},"30":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"78":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"n":{"d":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":7,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"i":{"c":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"df":8,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":2.23606797749979},"29":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":11,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"66":{"tf":2.0},"70":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"14":{"tf":1.0},"28":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"58":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"40":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"30":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":12,"docs":{"18":{"tf":1.7320508075688772},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":4.242640687119285},"41":{"tf":2.0},"45":{"tf":2.23606797749979},"46":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"56":{"tf":1.0}},"t":{"df":7,"docs":{"33":{"tf":3.4641016151377544},"37":{"tf":3.872983346207417},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.4142135623730951},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":3,"docs":{"17":{"tf":2.23606797749979},"18":{"tf":1.0},"27":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}}},"s":{"d":{"df":1,"docs":{"27":{"tf":3.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"38":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"48":{"tf":1.0},"62":{"tf":1.0}}}}}}}}},"u":{"df":13,"docs":{"2":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"14":{"tf":1.4142135623730951},"23":{"tf":5.196152422706632},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.1622776601683795},"28":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.7320508075688772},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"27":{"tf":3.4641016151377544},"30":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"60":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"27":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":2.0},"14":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0}}}},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.0}},"n":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}}},"b":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"27":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"22":{"tf":1.0},"24":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":3.1622776601683795},"66":{"tf":3.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"70":{"tf":3.0},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"38":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"1":{"5":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"0":{"5":{"7":{"4":{"8":{"5":{"a":{"b":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}},"p":{"df":1,"docs":{"5":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":2,"docs":{"50":{"tf":1.0},"7":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"27":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"41":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"8":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"17":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":2.0},"59":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"13":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"44":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"11":{"tf":1.0}}}},"t":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"x":{":":{"/":{"/":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":2.0}}}},"df":0,"docs":{}},"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":49,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":2.0},"17":{"tf":2.23606797749979},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.23606797749979},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"v":{"0":{".":{"0":{".":{"1":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"3":{".":{"0":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":2.0}}},"4":{".":{"1":{"df":1,"docs":{"3":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"0":{"df":2,"docs":{"2":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"2":{"tf":1.0}}},"2":{"df":4,"docs":{"18":{"tf":1.0},"29":{"tf":2.0},"47":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":17,"docs":{"11":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"81":{"tf":1.0}}},"=":{"5":{"df":4,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":11,"docs":{"11":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.7320508075688772},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"36":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":3,"docs":{"36":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":1.7320508075688772},"57":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"b":{"df":5,"docs":{"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"33":{"tf":3.0},"60":{"tf":2.23606797749979}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.0},"19":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":3.1622776601683795},"6":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"f":{"df":1,"docs":{"22":{"tf":1.0}}},"i":{"a":{"df":2,"docs":{"16":{"tf":1.0},"27":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":25,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":3.4641016151377544},"39":{"tf":1.4142135623730951},"40":{"tf":2.6457513110645907},"41":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"54":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.7320508075688772},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"33":{"tf":1.0},"40":{"tf":2.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"30":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"29":{"tf":1.0},"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"30":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"50":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"30":{"tf":2.6457513110645907},"31":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":2.8284271247461903},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.23606797749979},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"24":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"72":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"9":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"39":{"tf":1.7320508075688772},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"54":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}},"title":{"root":{"1":{".":{"1":{"0":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"19":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"31":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"81":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"df":19,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":9,"docs":{"20":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"63":{"tf":1.0},"67":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"63":{"tf":1.0},"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"9":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0}}}}}}},"o":{"d":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"30":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.0}}}}}}}}}},"v":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}},"b":{"a":{"c":{"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"39":{"tf":1.0},"6":{"tf":1.0},"81":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0}},"t":{"df":4,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0}}}}}}}}},"u":{"df":3,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"24":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"25":{"tf":1.0},"38":{"tf":1.0}}}},"df":1,"docs":{"5":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file +{"doc_urls":["Home.html#introduction","Home.html#kubernetes-csi-documentation","Home.html#project-status","Home.html#sidecar-container-status","Home.html#installation","UsingCSIDriver.html#using-csi-drivers","Setup.html#setup","Setup.html#enabling-features","Setup.html#enable-privileged-pods","Setup.html#enabling-mount-propagation","Setup.html#enable-raw-block-volume-support-alpha","Setup.html#csidriver-custom-resource-alpha","Setup.html#enabling-csidriver","Setup.html#listing-registered-csi-drivers","Setup.html#csinodeinfo-custom-resource-alpha","Setup.html#enabling-csinodeinfo","Setup.html#csi-driver-discovery-beta","Setup.html#registrar-sidecar-configuration","Setup.html#the-kubelet-root-directory","Setup.html#topology-alpha","Setup.html#archives","Deployment.html#deployment","Drivers.html#drivers","Drivers.html#sample-drivers","Drivers.html#production-drivers","Drivers.html#testing","Usage.html#usage","Usage.html#pre-provisioned-volumes","Usage.html#dynamic-provisioning","Example.html#example","Example.html#deployment","Example.html#create-rbac-rules-for-csi-provisioner","Example.html#create-rbac-rules-for-csi-attacher","Example.html#create-rbac-rules-for-node-plugin","Example.html#create-rbac-rules-for-csi-snapshotter","Example.html#deploy-csi-provisioner-in-statefulset-pod","Example.html#deploy-csi-attacher-in-statefulset-pod","Example.html#deploy-driver-registrar-and-hostpath-csi-plugin-in-daemonset-pod","Example.html#deploy-csi-snapshotter-in-statefulset-pod","Example.html#usage","Example.html#confirming-the-setup","Example.html#snapshot-support","Example.html#restore-volume-from-snapshot-support","Development.html#development","CSI-Driver.html#developing-a-csi-driver","CSI-Driver.html#other-resources","Implement-Snapshot-Feature.html#implement-snapshot-feature","Implement-Snapshot-Feature.html#snapshot-apis","Implement-Snapshot-Feature.html#enable-volumesnapshotdatasource-feature-gate","Implement-Snapshot-Feature.html#deploy-external-snapshotter-with-csi-driver","Implement-Snapshot-Feature.html#test-snapshot-feature","Implement-Snapshot-Feature.html#pvc-not-bound","CSI-Kubernetes.html#deploying-in-kubernetes","CSI-Kubernetes.html#overview","CSI-Kubernetes.html#sidecar-containers","CSI-Kubernetes.html#external-attacher","CSI-Kubernetes.html#external-provisioner","CSI-Kubernetes.html#external-snapshotter","CSI-Kubernetes.html#driver-registrar","CSI-Kubernetes.html#kubelet","CSI-Kubernetes.html#mount-point","CSI-Kubernetes.html#rbac-rules","CSI-Kubernetes.html#deploying","CSI-Kubernetes.html#examples","CSI-Kubernetes.html#more-information","Testing.html#testing","Testing-Clients.html#testing-csi-clients","Testing-Clients.html#csi-test-unit-test-mock-driver","Testing-Clients.html#more-information","Testing-Clients.html#hostpath-driver","Testing-Drivers.html#testing-csi-drivers","Testing-Drivers.html#unit-testing","Testing-Drivers.html#functional-testing","Testing-Drivers.html#csi-sanity","Troubleshooting.html#troubleshooting","Troubleshooting.html#node-plugin-pod-does-not-start-with--runcontainererror--status","Troubleshooting.html#external-attacher-cant-find--volumeattachments","Troubleshooting.html#problems-with-the-external-components","References.html#references","Archive.html#archive","Kubernetes-1.9.html#csi-with-kubernetes-19","Kubernetes-1.9.html#developers","Kubernetes-1.9.html#confirming-the-setup","Kubernetes-1.10.html#csi-with-kubernetes-110"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":1,"title":1},"1":{"body":15,"breadcrumbs":3,"title":3},"10":{"body":32,"breadcrumbs":9,"title":6},"11":{"body":129,"breadcrumbs":7,"title":4},"12":{"body":28,"breadcrumbs":5,"title":2},"13":{"body":73,"breadcrumbs":7,"title":4},"14":{"body":87,"breadcrumbs":7,"title":4},"15":{"body":28,"breadcrumbs":5,"title":2},"16":{"body":83,"breadcrumbs":7,"title":4},"17":{"body":273,"breadcrumbs":6,"title":3},"18":{"body":48,"breadcrumbs":6,"title":3},"19":{"body":42,"breadcrumbs":5,"title":2},"2":{"body":13,"breadcrumbs":2,"title":2},"20":{"body":8,"breadcrumbs":4,"title":1},"21":{"body":24,"breadcrumbs":4,"title":1},"22":{"body":17,"breadcrumbs":4,"title":1},"23":{"body":40,"breadcrumbs":5,"title":2},"24":{"body":170,"breadcrumbs":5,"title":2},"25":{"body":10,"breadcrumbs":4,"title":1},"26":{"body":24,"breadcrumbs":4,"title":1},"27":{"body":68,"breadcrumbs":6,"title":3},"28":{"body":350,"breadcrumbs":5,"title":2},"29":{"body":14,"breadcrumbs":4,"title":1},"3":{"body":22,"breadcrumbs":3,"title":3},"30":{"body":56,"breadcrumbs":4,"title":1},"31":{"body":131,"breadcrumbs":8,"title":5},"32":{"body":90,"breadcrumbs":8,"title":5},"33":{"body":99,"breadcrumbs":8,"title":5},"34":{"body":142,"breadcrumbs":8,"title":5},"35":{"body":125,"breadcrumbs":8,"title":5},"36":{"body":130,"breadcrumbs":8,"title":5},"37":{"body":167,"breadcrumbs":11,"title":8},"38":{"body":157,"breadcrumbs":8,"title":5},"39":{"body":431,"breadcrumbs":4,"title":1},"4":{"body":9,"breadcrumbs":1,"title":1},"40":{"body":100,"breadcrumbs":5,"title":2},"41":{"body":337,"breadcrumbs":5,"title":2},"42":{"body":135,"breadcrumbs":7,"title":4},"43":{"body":8,"breadcrumbs":1,"title":1},"44":{"body":35,"breadcrumbs":4,"title":3},"45":{"body":24,"breadcrumbs":2,"title":1},"46":{"body":53,"breadcrumbs":7,"title":3},"47":{"body":21,"breadcrumbs":6,"title":2},"48":{"body":19,"breadcrumbs":8,"title":4},"49":{"body":58,"breadcrumbs":9,"title":5},"5":{"body":44,"breadcrumbs":3,"title":3},"50":{"body":39,"breadcrumbs":7,"title":3},"51":{"body":46,"breadcrumbs":6,"title":2},"52":{"body":10,"breadcrumbs":3,"title":2},"53":{"body":26,"breadcrumbs":2,"title":1},"54":{"body":18,"breadcrumbs":3,"title":2},"55":{"body":73,"breadcrumbs":3,"title":2},"56":{"body":22,"breadcrumbs":3,"title":2},"57":{"body":23,"breadcrumbs":3,"title":2},"58":{"body":67,"breadcrumbs":3,"title":2},"59":{"body":42,"breadcrumbs":2,"title":1},"6":{"body":21,"breadcrumbs":4,"title":1},"60":{"body":41,"breadcrumbs":3,"title":2},"61":{"body":62,"breadcrumbs":3,"title":2},"62":{"body":13,"breadcrumbs":2,"title":1},"63":{"body":25,"breadcrumbs":2,"title":1},"64":{"body":10,"breadcrumbs":3,"title":2},"65":{"body":7,"breadcrumbs":2,"title":1},"66":{"body":49,"breadcrumbs":5,"title":3},"67":{"body":111,"breadcrumbs":8,"title":6},"68":{"body":11,"breadcrumbs":4,"title":2},"69":{"body":21,"breadcrumbs":4,"title":2},"7":{"body":29,"breadcrumbs":5,"title":2},"70":{"body":13,"breadcrumbs":5,"title":3},"71":{"body":52,"breadcrumbs":4,"title":2},"72":{"body":7,"breadcrumbs":4,"title":2},"73":{"body":27,"breadcrumbs":4,"title":2},"74":{"body":0,"breadcrumbs":1,"title":1},"75":{"body":31,"breadcrumbs":6,"title":6},"76":{"body":50,"breadcrumbs":5,"title":5},"77":{"body":30,"breadcrumbs":3,"title":3},"78":{"body":8,"breadcrumbs":1,"title":1},"79":{"body":8,"breadcrumbs":1,"title":1},"8":{"body":37,"breadcrumbs":6,"title":3},"80":{"body":28,"breadcrumbs":4,"title":3},"81":{"body":32,"breadcrumbs":2,"title":1},"82":{"body":55,"breadcrumbs":3,"title":2},"83":{"body":1,"breadcrumbs":4,"title":3},"9":{"body":47,"breadcrumbs":6,"title":3}},"docs":{"0":{"body":"","breadcrumbs":"Introduction","id":"0","title":"Introduction"},"1":{"body":"Welcome to the CSI for Kubernetes documentation repository. Here you will find information on how to use, develop, and deploy CSI plugins, or drivers, with Kubernetes.","breadcrumbs":"Kubernetes CSI Documentation","id":"1","title":"Kubernetes CSI Documentation"},"10":{"body":"Kubernetes now has raw block volume Support as an alpha implementation. If you want to use the CSI raw block volume support , you must enable the feature (for your Kubernetes binaries including server, kubelet, controller manager, etc) with the feature-gates flag as follow: $ kube --feature-gates=BlockVolume=true,CSIBlockVolume=true ...","breadcrumbs":"Using a CSI Driver » Enable raw block volume support (alpha)","id":"10","title":"Enable raw block volume support (alpha)"},"11":{"body":"Starting with version 1.12, the CSIDriver custom resource definition (or CRD) has been introduced as a way to represent the CSI drivers running in a cluster. An admin can update the attributes of this object to modify the configuration of its associated driver at runtime. You can see the full definition of this CRD here . The alpha release of CSIDriver exposes three main configuration settings: apiVersion: v1\nitems:\n- apiVersion: csi.storage.k8s.io/v1alpha1 kind: CSIDriver metadata: name: csi-hostpath spec: attachRequired: true podInfoOnMountVersion: \"v1\" Where: metadata:name - the identifying name of the CSI driver. That name must be unique in the cluster as it is the name that is used to identify the CSI cluster. attachRequired - indicates that the CSI volume driver requires a volume attach operation. This will cause Kubernetes to call make a CSI.ControllerPublishVolume() call and wait for completion before proceeding to mount. podInfoOnMountVersion - this value indicates that the associated CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount. Leave value empty if you do not want pod info to be transmitted. Or, provide a value of v1 which will cause the Kubelet to send the followings pod information during NodePublishVolume() calls to the driver as VolumeAttributes : csi.storage.k8s.io/pod.name: pod.Name\ncsi.storage.k8s.io/pod.namespace: pod.Namespace\ncsi.storage.k8s.io/pod.uid: string(pod.UID)","breadcrumbs":"Using a CSI Driver » CSIDriver custom resource (alpha)","id":"11","title":"CSIDriver custom resource (alpha)"},"12":{"body":"If you want to use the CSIDriver CRD and get a preview of how configuration will work at runtime, do the followings: Ensure the feature gate is enabled with --feature-gates=CSIDriverRegistry=true Install the CSIDriver CRD on the Kubernetes cluster with the following command: $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml --validate=false","breadcrumbs":"Using a CSI Driver » Enabling CSIDriver","id":"12","title":"Enabling CSIDriver"},"13":{"body":"Using the CSIDriver CRD, it is now possible to query Kubernetes to get a list of registered drivers running in the cluster as shown below: $> kubectl get csidrivers.csi.storage.k8s.io\nNAME AGE\ncsi-hostpath 2m Or get a more detail view of your registered driver with: $> kubectl describe csidrivers.csi.storage.k8s.io\nName: csi-hostpath\nNamespace:\nLabels: \nAnnotations: \nAPI Version: csi.storage.k8s.io/v1alpha1\nKind: CSIDriver\nMetadata: Creation Timestamp: 2018-10-04T21:15:30Z Generation: 1 Resource Version: 390 Self Link: /apis/csi.storage.k8s.io/v1alpha1/csidrivers/csi-hostpath UID: 9f854aa6-c81a-11e8-bdce-000c29e88ff1\nSpec: Attach Required: true Pod Info On Mount Version:\nEvents: ","breadcrumbs":"Using a CSI Driver » Listing registered CSI drivers","id":"13","title":"Listing registered CSI drivers"},"14":{"body":"Object CSINodeInfo is a resource designed to carry binding information between a CSI driver and a cluster node where its volume storage will land. In the first release, object CSINodeInfo is used to establish the link between a node, its driver, and the topology keys used for scheduling volume storage. You can see the full definition of this CRD here . The following snippet shows a sample CSIDriverInfo which is usually created by Kubernetes: apiVersion: v1\nitems:\n- apiVersion: csi.storage.k8s.io/v1alpha1 kind: CSINodeInfo metadata: name: 127.0.0.1 csiDrivers: - driver: csi-hostpath nodeID: 127.0.0.1 topologyKeys: []\n... Where: csiDrivers - list of CSI drivers running on the node and their properties. driver - the CSI driver that this object refers to. nodeID - the assigned identifier for the node as determined by the driver. topologyKeys - A list of topology keys assigned to the node as supported by the driver.","breadcrumbs":"Using a CSI Driver » CSINodeInfo custom resource (alpha)","id":"14","title":"CSINodeInfo custom resource (alpha)"},"15":{"body":"If you want to use the CSINodeInfo CRD and get a preview of how configuration will work at runtime, do the followings: Ensure the feature gate is enabled with --feature-gates=CSINodeInfo=true Install the CSINodeInfo CRD on the Kubernetes cluster with the following command: $> kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml --validate=false","breadcrumbs":"Using a CSI Driver » Enabling CSINodeInfo","id":"15","title":"Enabling CSINodeInfo"},"16":{"body":"The CSI driver discovery uses the Kubelet Plugin Watcher feature which allows Kubelet to discover deployed CSI drivers automatically. The registrar sidecar container exposes an internal registration server via a Unix data socket path. The Kubelet monitors its registration directory to detect new registration requests. Once detected, the Kubelet contacts the registrar sidecar to query driver information. The retrieved CSI driver information (including the driver's own socket path) will be used for further interaction with the driver. This replaces the previous driver registration mechanism, where the driver-registrar sidecar, rather than kubelet, handles registration. Using this discovery feature, instead of the prior registration mechanism, will not have any effect on how drivers behave, however, this will be the way CSI works internally in coming releases.","breadcrumbs":"Using a CSI Driver » CSI driver discovery (beta)","id":"16","title":"CSI driver discovery (beta)"},"17":{"body":"The registrar sidecar container provides configuration functionalities to its associated driver. For instance, using the registrar container, an admin can specify how the driver should behave during volume attachment operations. Some CLI arguments provided to the registrar container will be used to create the CSIDriver and CSIDriverInfo custom resources discussed earlier. To configure your driver using the registrar sidecar, you can configure the container as shown in the snippet below: - name: driver-registrar args: - --v=5 - --csi-address=/csi/csi.sock - --mode=node-register - --driver-requires-attachment=true - --pod-info-mount-version=\"v1\" - --kubelet-registration-path=/var/lib/kubelet/plugins/csi-hostpath/csi.sock env: - name: KUBE_NODE_NAME valueFrom: fieldRef: apiVersion: v1 fieldPath: spec.nodeName image: quay.io/k8scsi/driver-registrar:v0.2.0 imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumeMounts: - name: registration-dir mountPath: /registration\n...\nvolumes: name: socket-dir - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: registration-dir - hostPath: path: /var/lib/kubelet/plugins type: Directory Where: --csi-address - specifies the Unix domain socket path, on the host, for the CSI driver. It allows the registrar sidecar to communicate with the driver for discovery information. Mount path /csi is mapped to HostPath entry socket-dir which is mapped to directory /var/lib/kubelet/plugins/csi-hostpath --mode - this flag specifies how the registar binary will function in either --driver-requires-attachment - indicates that this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that Kubernetes should call attach and wait for any attach operation to complete before proceeding to mounting. If value is not specified, default is false meaning attach will not be called. --pod-info-mount-version=\"v1\" - this indicates that the associated CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount. A version of value \"v1\" will cause the Kubelet send the followings pod information during NodePublishVolume() calls to the driver as VolumeAttributes: csi.storage.k8s.io/pod.name: pod.Name csi.storage.k8s.io/pod.namespace: pod.Namespace csi.storage.k8s.io/pod.uid: string(pod.UID) --kubelet-registration-path - specifies the fully-qualified path of the Unix domain socket for the CSI driver on the host. This path is constructed using the path from HostPath socket-dir and the additional suffix csi.sock . The registrar sidecar will provide this path to core CSI components for subsequent volume operations. VolumeMount /csi - is mapped to HostPath /var/lib/kubelet/plugins/csi-hostpath . It is the root location where the CSI driver's Unix Domain socket file is mounted on the host. VolumeMount /registration is mapped to HostPath /var/lib/kubelet/plugins . It is the root location where Kubelet watcher scans for new plugin registration.","breadcrumbs":"Using a CSI Driver » Registrar sidecar configuration","id":"17","title":"Registrar sidecar configuration"},"18":{"body":"In the configuration above, notice that all paths starts with /var/lib/kubelet/plugin That is because the discovery mechanism relies on the Kubelet's root directory (which is by default) /var/lib/kubelet . Ensure that this path value matches the value specified in the Kubelet's --root-dir argument. CSI Volume Snapshot support CSI volume snapshot support : To enable support for Kubernetes volume snapshotting, you must set the following feature gate on Kubernetes v1.12 (disabled by default for alpha): --feature-gates=VolumeSnapshotDataSource=true","breadcrumbs":"Using a CSI Driver » The Kubelet root directory","id":"18","title":"The Kubelet root directory"},"19":{"body":"In order to support topology-aware dynamic provisioning mechanisms available in Kubernetes, the external-provisioner must have the Topology feature enabled: --feature-gates=Topology=true In addition, in the Kubernetes cluster the CSINodeInfo alpha feature must be enabled (refer to the [CSINodeInfo custom resource]{csinodeinfo-custom-resource-alpha} section for more info): --feature-gates=CSINodeInfo=true as well as the KubeletPluginsWatcher beta feature (currently enabled by default).","breadcrumbs":"Using a CSI Driver » Topology (alpha)","id":"19","title":"Topology (alpha)"},"2":{"body":"Kubernetes CSI spec Status v1.9 v0.1 Alpha v1.10 v0.2 Beta v1.11 v0.3 Beta","breadcrumbs":"Project status","id":"2","title":"Project status"},"20":{"body":"Please visit the Archives for setup instructions on previous versions of Kubernetes.","breadcrumbs":"Using a CSI Driver » Archives","id":"20","title":"Archives"},"21":{"body":"To benefit from the new CSI support, you will need to deploy a CSI driver. Please visit the Drivers page to determine how to deploy your specific driver. A functional example based on the HostPath driver is presented in the Example section.","breadcrumbs":"Using a CSI Driver » Deployment","id":"21","title":"Deployment"},"22":{"body":"The following are a set of CSI driver which can be used with Kubernetes: NOTE: If you would like your driver to be added to this table, please create an issue in this repo with the information you would like to add here.","breadcrumbs":"Using a CSI Driver » Drivers","id":"22","title":"Drivers"},"23":{"body":"Name Status More Information Flexvolume Sample HostPath v0.2.0 Only use for a single node tests. See the Example page for Kubernetes-specific instructions. In-memory Sample Mock Driver v0.3.0 The sample mock driver used for csi-sanity NFS Sample VFS Driver Released A CSI plugin that provides a virtual file system.","breadcrumbs":"Using a CSI Driver » Sample Drivers","id":"23","title":"Sample Drivers"},"24":{"body":"Name Status More Information Cinder v0.2.0 A Container Storage Interface (CSI) Storage Plug-in for Cinder DigitalOcean Block Storage v0.0.1 (alpha) A Container Storage Interface (CSI) Driver for DigitalOcean Block Storage AWS Elastic Block Storage v0.0.1(alpha) A Container Storage Interface (CSI) Driver for AWS Elastic Block Storage (EBS) GCE Persistent Disk Alpha A Container Storage Interface (CSI) Storage Plugin for Google Compute Engine Persistent Disk OpenSDS Beta For more information, please visit releases and https://github.com/opensds/nbp/tree/master/csi Portworx 0.3.0 CSI implementation is available here which can be used as an example also. RBD v0.2.0 A Container Storage Interface (CSI) Storage RBD Plug-in for Ceph CephFS v0.2.0 A Container Storage Interface (CSI) Storage Plug-in for CephFS ScaleIO v0.1.0 A Container Storage Interface (CSI) Storage Plugin for DellEMC ScaleIO vSphere v0.1.0 A Container Storage Interface (CSI) Storage Plug-in for VMware vSphere NetApp v0.2.0 (alpha) A Container Storage Interface (CSI) Storage Plug-in for NetApp's Trident container storage orchestrator Ember CSI v0.2.0 (alpha) Multi-vendor CSI plugin supporting over 80 storage drivers to provide block and mount storage to Container Orchestration systems. Nutanix beta A Container Storage Interface (CSI) Storage Driver for Nutanix Quobyte v0.2.0 A Container Storage Interface (CSI) Plugin for Quobyte GlusterFS Beta A Container Storage Interface (CSI) Plugin for GlusterFS","breadcrumbs":"Using a CSI Driver » Production Drivers","id":"24","title":"Production Drivers"},"25":{"body":"There are multiple ways to test your driver. Please see Testing Drivers for more information.","breadcrumbs":"Using a CSI Driver » Testing","id":"25","title":"Testing"},"26":{"body":"There are two main models of how to use storage in Kubernetes with CSI drivers. These models include either the usage of pre-provisioned volumes or dynamic provisioned volumes. Please check the documentation of your specific driver for more information.","breadcrumbs":"Using a CSI Driver » Usage","id":"26","title":"Usage"},"27":{"body":"Pre-provisioned drivers work just as they did before, where the administrator would create a PersistentVolume specification which would describe the volume to be used. The PersistentVolume specification would need to be setup according to your driver, the difference here is that there is a new section called csi which needs to be setup accordingly. Please see Kubernetes Documentation on CSI Volumes . Here is an example of a PersistentVolume specification of a pre-provisioned volume managed by a CSI driver: apiVersion: v1\nkind: PersistentVolume\nmetadata: name: manually-created-pv\nspec: capacity: storage: 5Gi accessModes: - ReadWriteOnce persistentVolumeReclaimPolicy: Retain csi: driver: com.example.team/csi-driver volumeHandle: existingVolumeName readOnly: false","breadcrumbs":"Using a CSI Driver » Pre-provisioned volumes","id":"27","title":"Pre-provisioned volumes"},"28":{"body":"To setup the system for dynamic provisioning, the administrator needs to setup a StorageClass pointing to the CSI driver’s external-provisioner and specifying any parameters required by the driver. Here is an example of a StorageClass: kind: StorageClass\napiVersion: storage.k8s.io/v1\nmetadata: name: fast-storage\nprovisioner: com.example.team/csi-driver\nparameters: type: pd-ssd Where, provisioner : Must be set to the name of the CSI driver parameters : Must contain any parameters specific to the CSI driver. The user can then create a PersistentVolumeClaim utilizing this StorageClass as follows: apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata: name: request-for-storage\nspec: accessModes: - ReadWriteOnce resources: requests: storage: 5Gi storageClassName: fast-storage CSI Provisioner Parameters The CSI dynamic provisioner makes CreateVolumeRequest and DeleteVolumeRequest calls to CSI drivers. The controllerCreateSecrets and controllerDeleteSecrets fields in those requests can be populated with data from a Kubernetes Secret object by setting csiProvisionerSecretName and csiProvisionerSecretNamespace parameters in the StorageClass . For example: kind: StorageClass\napiVersion: storage.k8s.io/v1\nmetadata: name: fast-storage\nprovisioner: com.example.team/csi-driver\nparameters: type: pd-ssd csiProvisionerSecretName: fast-storage-provision-key csiProvisionerSecretNamespace: pd-ssd-credentials The csiProvisionerSecretName and csiProvisionerSecretNamespace parameters may specify literal values, or a template containing the following variables: ${pv.name} - replaced with the name of the PersistentVolume object being provisioned Once the CSI volume is created, a corresponding Kubernetes PersistentVolume object is created. The controllerPublishSecretRef , nodeStageSecretRef , and nodePublishSecretRef fields in the PersistentVolume object can be populated via the following storage class parameters: controllerPublishSecretRef in the PersistentVolume is populated by setting these StorageClass parameters: csiControllerPublishSecretName csiControllerPublishSecretNamespace nodeStageSecretRef in the PersistentVolume is populated by setting these StorageClass parameters: csiNodeStageSecretName csiNodeStageSecretNamespace nodePublishSecretRef in the PersistentVolume is populated by setting these StorageClass parameters: csiNodePublishSecretName csiNodePublishSecretNamespace The csiControllerPublishSecretName , csiNodeStageSecretName , and csiNodePublishSecretName parameters may specify a literal secret name, or a template containing the following variables: ${pv.name} - replaced with the name of the PersistentVolume ${pvc.name} - replaced with the name of the PersistentVolumeClaim ${pvc.namespace} - replaced with the namespace of the PersistentVolumeClaim ${pvc.annotations['']} (e.g. ${pvc.annotations['example.com/key']} ) - replaced with the value of the specified annotation in the PersistentVolumeClaim The csiControllerPublishSecretNamespace , csiNodeStageSecretNamespace , and csiNodePublishSecretNamespace parameters may specify a literal namespace name, or a template containing the following variables: ${pv.name} - replaced with the name of the PersistentVolume ${pvc.namespace} - replaced with the namespace of the PersistentVolumeClaim As an example, consider this StorageClass: kind: StorageClass\napiVersion: storage.k8s.io/v1\nmetadata: name: fast-storage\nprovisioner: com.example.team/csi-driver\nparameters: type: pd-ssd csiProvisionerSecretName: fast-storage-provision-key csiProvisionerSecretNamespace: pd-ssd-credentials csiControllerPublishSecretName: ${pv.name}-publish csiControllerPublishSecretNamespace: pd-ssd-credentials csiNodeStageSecretName: ${pv.name}-stage csiNodeStageSecretNamespace: pd-ssd-credentials csiNodePublishSecretName: ${pvc.annotations['com.example.team/key']} csiNodePublishSecretNamespace: ${pvc.namespace} This StorageClass instructs the CSI provisioner to do the following: send the data in the fast-storage-provision-key secret in the pd-ssd-credentials namespace as part of the create request to the CSI driver create a PersistentVolume with: a per-volume controller publish and node stage secret, both in the pd-ssd-credentials (those secrets would need to be created separately in response to the PersistentVolume creation before the PersistentVolume could be attached/mounted) a node publish secret in the same namespace as the PersistentVolumeClaim that triggered the provisioning, with a name specified as an annotation on the PersistentVolumeClaim. This could be used to give the creator of the PersistentVolumeClaim the ability to specify a secret containing a decryption key they have control over.","breadcrumbs":"Using a CSI Driver » Dynamic Provisioning","id":"28","title":"Dynamic Provisioning"},"29":{"body":"The HostPath can be used to provision local storage in a single node test. This section shows how to deploy and use that driver in Kubernetes.","breadcrumbs":"Using a CSI Driver » Example","id":"29","title":"Example"},"3":{"body":"Container Name CSI spec Latest Release Tag csi-provisioner v0.3 v0.4.1 csi-attacher v0.3 v0.4.1 driver-registrar v0.3 v0.4.1 livenessprobe v0.3 v0.4.1","breadcrumbs":"Sidecar container status","id":"3","title":"Sidecar container status"},"30":{"body":"This is tested with Kubernetes v1.12. Set the following feature gate flags to true: --feature-dates=CSIPersistentVolume=true,MountPropagation=true,VolumeSnapshotDataSource=true,KubeletPluginsWatcher=true,CSINodeInfo=true,CSIDriverRegistry=true CSIPersistentVolume is enabled by default in v1.10. MountPropagation is enabled by default in v1.10. VolumeSnapshotDataSource is a new alpha feature in v1.12. KubeletPluginsWatcher is enabled by default in v1.12. CSINodeInfo and CSIDriverRegistry are new alpha features in v1.12. CRDs needs to be created manually for CSIDriverRegistry and CSINodeInfo . $ kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csidriver.yaml --validate=false\ncustomresourcedefinition.apiextensions.k8s.io/csidrivers.csi.storage.k8s.io created $ kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/testdata/csinodeinfo.yaml --validate=false\ncustomresourcedefinition.apiextensions.k8s.io/csinodeinfos.csi.storage.k8s.io created","breadcrumbs":"Using a CSI Driver » Deployment","id":"30","title":"Deployment"},"31":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/rbac/csi-provisioner-rbac.yaml\nserviceaccount/csi-provisioner created\nclusterrole.rbac.authorization.k8s.io/external-provisioner-runner created\nclusterrolebinding.rbac.authorization.k8s.io/csi-provisioner-role created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-provisioner ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: external-provisioner-runner\nrules: - apiGroups: [\"\"] resources: [\"secrets\"] verbs: [\"get\", \"list\"] - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\", \"create\", \"delete\"] - apiGroups: [\"\"] resources: [\"persistentvolumeclaims\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"storageclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"events\"] verbs: [\"list\", \"watch\", \"create\", \"update\", \"patch\"] - apiGroups: [\"\"] resources: [\"endpoints\"] verbs: [\"list\", \"watch\", \"create\", \"update\", \"get\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshots\"] verbs: [\"get\", \"list\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshotcontents\"] verbs: [\"get\", \"list\"] - apiGroups: [\"csi.storage.k8s.io\"] resources: [\"csinodeinfos\"] verbs: [\"get\", \"list\", \"watch\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-provisioner-role\nsubjects: - kind: ServiceAccount name: csi-provisioner namespace: default\nroleRef: kind: ClusterRole name: external-provisioner-runner apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for CSI provisioner","id":"31","title":"Create RBAC rules for CSI provisioner"},"32":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/rbac/csi-attacher-rbac.yaml\nserviceaccount/csi-attacher created\nclusterrole.rbac.authorization.k8s.io/external-attacher-runner created\nclusterrolebinding.rbac.authorization.k8s.io/csi-attacher-role created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-attacher ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: external-attacher-runner\nrules: - apiGroups: [\"\"] resources: [\"events\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"volumeattachments\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-attacher-role\nsubjects: - kind: ServiceAccount name: csi-attacher namespace: default\nroleRef: kind: ClusterRole name: external-attacher-runner apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for CSI attacher","id":"32","title":"Create RBAC rules for CSI attacher"},"33":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/rbac/csi-nodeplugin-rbac.yaml\nserviceaccount/csi-nodeplugin created\nclusterrole.rbac.authorization.k8s.io/csi-nodeplugin created\nclusterrolebinding.rbac.authorization.k8s.io/csi-nodeplugin created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-nodeplugin ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-nodeplugin\nrules: - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"update\"] - apiGroups: [\"\"] resources: [\"namespaces\"] verbs: [\"get\", \"list\"] - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"volumeattachments\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"csi.storage.k8s.io\"] resources: [\"csidrivers\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"csi.storage.k8s.io\"] resources: [\"csinodeinfos\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-nodeplugin\nsubjects: - kind: ServiceAccount name: csi-nodeplugin namespace: default\nroleRef: kind: ClusterRole name: csi-nodeplugin apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for node plugin","id":"33","title":"Create RBAC rules for node plugin"},"34":{"body":"The CSI snapshotter is an optional sidecar container. You only need to create these RBAC rules if you want to test the snapshot feature. $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-snapshotter-rbac.yaml\nserviceaccount/csi-snapshotter created\nclusterrole.rbac.authorization.k8s.io/external-snapshotter-runner created\nclusterrolebinding.rbac.authorization.k8s.io/csi-snapshotter-role created apiVersion: v1\nkind: ServiceAccount\nmetadata: name: csi-snapshotter ---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: external-snapshotter-runner\nrules: - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"persistentvolumeclaims\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"storageclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"\"] resources: [\"events\"] verbs: [\"list\", \"watch\", \"create\", \"update\", \"patch\"] - apiGroups: [\"\"] resources: [\"secrets\"] verbs: [\"get\", \"list\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshotclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshotcontents\"] verbs: [\"create\", \"get\", \"list\", \"watch\", \"update\", \"delete\"] - apiGroups: [\"snapshot.storage.k8s.io\"] resources: [\"volumesnapshots\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"apiextensions.k8s.io\"] resources: [\"customresourcedefinitions\"] verbs: [\"create\", \"list\", \"watch\", \"delete\"] ---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-snapshotter-role\nsubjects: - kind: ServiceAccount name: csi-snapshotter namespace: default\nroleRef: kind: ClusterRole name: external-snapshotter-runner apiGroup: rbac.authorization.k8s.io","breadcrumbs":"Using a CSI Driver » Create RBAC rules for CSI snapshotter","id":"34","title":"Create RBAC rules for CSI snapshotter"},"35":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/hostpath/csi-hostpath-provisioner.yaml\nservice/csi-hostpath-provisioner created\nstatefulset.apps/csi-hostpath-provisioner created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-provisioner-0 1/1 Running 0 6s kind: Service\napiVersion: v1\nmetadata: name: csi-hostpath-provisioner labels: app: csi-hostpath-provisioner\nspec: selector: app: csi-hostpath-provisioner ports: - name: dummy port: 12345 ---\nkind: StatefulSet\napiVersion: apps/v1\nmetadata: name: csi-hostpath-provisioner\nspec: serviceName: \"csi-hostpath-provisioner\" replicas: 1 selector: matchLabels: app: csi-hostpath-provisioner template: metadata: labels: app: csi-hostpath-provisioner spec: serviceAccount: csi-provisioner containers: - name: csi-provisioner image: quay.io/k8scsi/csi-provisioner:v0.4.1 args: - \"--provisioner=csi-hostpath\" - \"--csi-address=$(ADDRESS)\" - \"--connection-timeout=15s\" env: - name: ADDRESS value: /csi/csi.sock imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir","breadcrumbs":"Using a CSI Driver » Deploy CSI provisioner in StatefulSet pod","id":"35","title":"Deploy CSI provisioner in StatefulSet pod"},"36":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/hostpath/csi-hostpath-attacher.yaml\nservice/csi-hostpath-attacher created\nstatefulset.apps/csi-hostpath-attacher created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 4s\ncsi-hostpath-provisioner-0 1/1 Running 0 2m1s kind: Service\napiVersion: v1\nmetadata: name: csi-hostpath-attacher labels: app: csi-hostpath-attacher\nspec: selector: app: csi-hostpath-attacher ports: - name: dummy port: 12345 ---\nkind: StatefulSet\napiVersion: apps/v1\nmetadata: name: csi-hostpath-attacher\nspec: serviceName: \"csi-hostpath-attacher\" replicas: 1 selector: matchLabels: app: csi-hostpath-attacher template: metadata: labels: app: csi-hostpath-attacher spec: serviceAccount: csi-attacher containers: - name: csi-attacher image: quay.io/k8scsi/csi-attacher:v0.4.1 args: - --v=5 - --csi-address=$(ADDRESS) env: - name: ADDRESS value: /csi/csi.sock imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir","breadcrumbs":"Using a CSI Driver » Deploy CSI attacher in StatefulSet pod","id":"36","title":"Deploy CSI attacher in StatefulSet pod"},"37":{"body":"$ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/hostpath/csi-hostpathplugin.yaml\ndaemonset.apps/csi-hostpathplugin created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 53s\ncsi-hostpath-provisioner-0 1/1 Running 0 2m50s\ncsi-hostpathplugin-9rp7c 2/2 Running 0 5s kind: DaemonSet\napiVersion: apps/v1\nmetadata: name: csi-hostpathplugin\nspec: selector: matchLabels: app: csi-hostpathplugin template: metadata: labels: app: csi-hostpathplugin spec: serviceAccount: csi-nodeplugin hostNetwork: true containers: - name: driver-registrar image: quay.io/k8scsi/driver-registrar:v0.4.1 args: - --v=5 - --csi-address=/csi/csi.sock - --kubelet-registration-path=/var/lib/kubelet/plugins/csi-hostpath/csi.sock env: - name: KUBE_NODE_NAME valueFrom: fieldRef: apiVersion: v1 fieldPath: spec.nodeName imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir - mountPath: /registration name: registration-dir - name: hostpath image: quay.io/k8scsi/hostpathplugin:v0.4.1 args: - \"--v=5\" - \"--endpoint=$(CSI_ENDPOINT)\" - \"--nodeid=$(KUBE_NODE_NAME)\" env: - name: CSI_ENDPOINT value: unix:///csi/csi.sock - name: KUBE_NODE_NAME valueFrom: fieldRef: apiVersion: v1 fieldPath: spec.nodeName imagePullPolicy: Always securityContext: privileged: true volumeMounts: - mountPath: /csi name: socket-dir - mountPath: /var/lib/kubelet/pods mountPropagation: Bidirectional name: mountpoint-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir - hostPath: path: /var/lib/kubelet/pods type: DirectoryOrCreate name: mountpoint-dir - hostPath: path: /var/lib/kubelet/plugins type: Directory name: registration-dir","breadcrumbs":"Using a CSI Driver » Deploy driver-registrar and hostpath CSI plugin in DaemonSet pod","id":"37","title":"Deploy driver-registrar and hostpath CSI plugin in DaemonSet pod"},"38":{"body":"The CSI snapshotter is an optional sidecar container. You only need to deploy it if you want to test the snapshot feature. $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-hostpath-snapshotter.yaml\nservice/csi-hostpath-snapshotter created\nstatefulset.apps/csi-hostpath-snapshotter created $ kubectl get pod\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 96s\ncsi-hostpath-provisioner-0 1/1 Running 0 3m33s\ncsi-hostpath-snapshotter-0 1/1 Running 0 5s\ncsi-hostpathplugin-9rp7c 2/2 Running 0 48s kind: Service\napiVersion: v1\nmetadata: name: csi-hostpath-snapshotter labels: app: csi-hostpath-snapshotter\nspec: selector: app: csi-hostpath-snapshotter ports: - name: dummy port: 12345 ---\nkind: StatefulSet\napiVersion: apps/v1\nmetadata: name: csi-hostpath-snapshotter\nspec: serviceName: \"csi-hostpath-snapshotter\" replicas: 1 selector: matchLabels: app: csi-hostpath-snapshotter template: metadata: labels: app: csi-hostpath-snapshotter spec: serviceAccount: csi-snapshotter containers: - name: csi-snapshotter image: quay.io/k8scsi/csi-snapshotter:v0.4.1 args: - \"--csi-address=$(ADDRESS)\" - \"--connection-timeout=15s\" env: - name: ADDRESS value: /csi/csi.sock imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir volumes: - hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate name: socket-dir","breadcrumbs":"Using a CSI Driver » Deploy CSI snapshotter in StatefulSet pod","id":"38","title":"Deploy CSI snapshotter in StatefulSet pod"},"39":{"body":"Dynamic provisioning is enabled by creating a csi-hostpath-sc storage class. $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/usage/csi-storageclass.yaml\nstorageclass.storage.k8s.io/csi-hostpath-sc created apiVersion: storage.k8s.io/v1\nkind: StorageClass\nmetadata: name: csi-hostpath-sc\nprovisioner: csi-hostpath\nreclaimPolicy: Delete\nvolumeBindingMode: Immediate We can use this storage class to create and claim a new volume: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/usage/csi-pvc.yaml\npersistentvolumeclaim/csi-pvc created\n$ kubectl get pvc\nNAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE\ncsi-pvc Bound pvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO csi-hostpath-sc 3s $ kubectl get pv\nNAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE\npvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO Delete Bound default/csi-pvc csi-hostpath-sc 3s apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata: name: csi-pvc\nspec: accessModes: - ReadWriteOnce resources: requests: storage: 1Gi storageClassName: csi-hostpath-sc # defined in csi-setup.yaml The HostPath driver is configured to create new volumes under /tmp inside the hostpath container in the CSI hostpath plugin DaemonSet pod and thus persist as long as the DaemonSet pod itself. We can use such volumes in another pod like this: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/usage/csi-app.yaml\npod/my-csi-app created\n$ kubectl get pods\nNAME READY STATUS RESTARTS AGE\ncsi-hostpath-attacher-0 1/1 Running 0 17m\ncsi-hostpath-provisioner-0 1/1 Running 0 19m\ncsi-hostpath-snapshotter-0 1/1 Running 0 16m\ncsi-hostpathplugin-9rp7c 2/2 Running 0 16m\nmy-csi-app 1/1 Running 0 5s $ kubectl describe pods/my-csi-app\nName: my-csi-app\nNamespace: default\nPriority: 0\nPriorityClassName: \nNode: 127.0.0.1/127.0.0.1\nStart Time: Wed, 03 Oct 2018 06:59:19 -0700\nLabels: \nAnnotations: \nStatus: Running\nIP: 172.17.0.5\nContainers: my-frontend: Container ID: docker://fd2950af39a155bdf08d1da341cfb23aa0d1af3eaaad6950a946355789606e8c Image: busybox Image ID: docker-pullable://busybox@sha256:2a03a6059f21e150ae84b0973863609494aad70f0a80eaeb64bddd8d92465812 Port: Host Port: Command: sleep 1000000 State: Running Started: Wed, 03 Oct 2018 06:59:22 -0700 Ready: True Restart Count: 0 Environment: Mounts: /data from my-csi-volume (rw) /var/run/secrets/kubernetes.io/serviceaccount from default-token-xms2g (ro)\nConditions: Type Status Initialized True Ready True ContainersReady True PodScheduled True\nVolumes: my-csi-volume: Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace) ClaimName: csi-pvc ReadOnly: false default-token-xms2g: Type: Secret (a volume populated by a Secret) SecretName: default-token-xms2g Optional: false\nQoS Class: BestEffort\nNode-Selectors: \nTolerations: node.kubernetes.io/not-ready:NoExecute for 300s node.kubernetes.io/unreachable:NoExecute for 300s\nEvents: Type Reason Age From Message ---- ------ ---- ---- ------- Normal Scheduled 69s default-scheduler Successfully assigned default/my-csi-app to 127.0.0.1 Normal SuccessfulAttachVolume 69s attachdetach-controller AttachVolume.Attach succeeded for volume \"pvc-0571cc14-c714-11e8-8911-000c2967769a\" Normal Pulling 67s kubelet, 127.0.0.1 pulling image \"busybox\" Normal Pulled 67s kubelet, 127.0.0.1 Successfully pulled image \"busybox\" Normal Created 67s kubelet, 127.0.0.1 Created container Normal Started 66s kubelet, 127.0.0.1 Started container kind: Pod\napiVersion: v1\nmetadata: name: my-csi-app\nspec: containers: - name: my-frontend image: busybox volumeMounts: - mountPath: \"/data\" name: my-csi-volume command: [ \"sleep\", \"1000000\" ] volumes: - name: my-csi-volume persistentVolumeClaim: claimName: csi-pvc # defined in csi-pvs.yaml","breadcrumbs":"Using a CSI Driver » Usage","id":"39","title":"Usage"},"4":{"body":"Please see the Setup page for instructions on how to setup Kubernetes support with CSI.","breadcrumbs":"Installation","id":"4","title":"Installation"},"40":{"body":"Writing inside the app container should be visible in /tmp of the hostpath container: $ kubectl exec -it my-csi-app /bin/sh\n/ # touch /data/hello-world\n/ # exit $ kubectl exec -it $(kubectl get pods --selector app=csi-hostpathplugin -o jsonpath='{.items[*].metadata.name}') -c hostpath /bin/sh\n/ # find / -name hello-world\n/tmp/057485ab-c714-11e8-bb16-000c2967769a/hello-world\n/ # exit There should be a VolumeAttachment while the app has the volume mounted: $ kubectl get VolumeAttachment\nName: csi-a4e97f3af2161c6d081b8e96c58ed00c9bf1e1745e89b2545e24505437f015df\nNamespace:\nLabels: \nAnnotations: \nAPI Version: storage.k8s.io/v1beta1\nKind: VolumeAttachment\nMetadata: Creation Timestamp: 2018-10-03T13:59:19Z Resource Version: 1730 Self Link: /apis/storage.k8s.io/v1beta1/volumeattachments/csi-a4e97f3af2161c6d081b8e96c58ed00c9bf1e1745e89b2545e24505437f015df UID: 862d7241-c714-11e8-8911-000c2967769a\nSpec: Attacher: csi-hostpath Node Name: 127.0.0.1 Source: Persistent Volume Name: pvc-0571cc14-c714-11e8-8911-000c2967769a\nStatus: Attached: true\nEvents: ","breadcrumbs":"Using a CSI Driver » Confirming the setup","id":"40","title":"Confirming the setup"},"41":{"body":"Enable dynamic provisioning of volume snapshot by creating a volume snapshot class as follows: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-snapshotclass.yaml\nvolumesnapshotclass.snapshot.storage.k8s.io/csi-hostpath-snapclass created\n$ kubectl get volumesnapshotclass\nNAME AGE\ncsi-hostpath-snapclass 11s\n$ kubectl describe volumesnapshotclass\nName: csi-hostpath-snapclass\nNamespace:\nLabels: \nAnnotations: \nAPI Version: snapshot.storage.k8s.io/v1alpha1\nKind: VolumeSnapshotClass\nMetadata: Creation Timestamp: 2018-10-03T14:15:30Z Generation: 1 Resource Version: 2418 Self Link: /apis/snapshot.storage.k8s.io/v1alpha1/volumesnapshotclasses/csi-hostpath-snapclass UID: c8f5bc47-c716-11e8-8911-000c2967769a\nSnapshotter: csi-hostpath\nEvents: apiVersion: snapshot.storage.k8s.io/v1alpha1\nkind: VolumeSnapshotClass\nmetadata: name: csi-hostpath-snapclass\nsnapshotter: csi-hostpath Use the volume snapshot class to dynamically create a volume snapshot: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-snapshot.yaml\nvolumesnapshot.snapshot.storage.k8s.io/new-snapshot-demo created $ kubectl get volumesnapshot\nNAME AGE\nnew-snapshot-demo 12s $ kubectl get volumesnapshotcontent\nNAME AGE\nsnapcontent-f55db632-c716-11e8-8911-000c2967769a 14s $ kubectl describe volumesnapshot\nName: new-snapshot-demo\nNamespace: default\nLabels: \nAnnotations: \nAPI Version: snapshot.storage.k8s.io/v1alpha1\nKind: VolumeSnapshot\nMetadata: Creation Timestamp: 2018-10-03T14:16:45Z Generation: 1 Resource Version: 2476 Self Link: /apis/snapshot.storage.k8s.io/v1alpha1/namespaces/default/volumesnapshots/new-snapshot-demo UID: f55db632-c716-11e8-8911-000c2967769a\nSpec: Snapshot Class Name: csi-hostpath-snapclass Snapshot Content Name: snapcontent-f55db632-c716-11e8-8911-000c2967769a Source: Kind: PersistentVolumeClaim Name: csi-pvc\nStatus: Creation Time: 2018-10-03T14:16:45Z Ready: true Restore Size: 1Gi\nEvents: $ kubectl describe volumesnapshotcontent\nName: snapcontent-f55db632-c716-11e8-8911-000c2967769a\nNamespace:\nLabels: \nAnnotations: \nAPI Version: snapshot.storage.k8s.io/v1alpha1\nKind: VolumeSnapshotContent\nMetadata: Creation Timestamp: 2018-10-03T14:16:45Z Generation: 1 Resource Version: 2474 Self Link: /apis/snapshot.storage.k8s.io/v1alpha1/volumesnapshotcontents/snapcontent-f55db632-c716-11e8-8911-000c2967769a UID: f561411f-c716-11e8-8911-000c2967769a\nSpec: Csi Volume Snapshot Source: Creation Time: 1538576205471577525 Driver: csi-hostpath Restore Size: 1073741824 Snapshot Handle: f55ff979-c716-11e8-bb16-000c2967769a Persistent Volume Ref: API Version: v1 Kind: PersistentVolume Name: pvc-0571cc14-c714-11e8-8911-000c2967769a Resource Version: 1573 UID: 0575b966-c714-11e8-8911-000c2967769a Snapshot Class Name: csi-hostpath-snapclass Volume Snapshot Ref: API Version: snapshot.storage.k8s.io/v1alpha1 Kind: VolumeSnapshot Name: new-snapshot-demo Namespace: default Resource Version: 2472 UID: f55db632-c716-11e8-8911-000c2967769a\nEvents: apiVersion: snapshot.storage.k8s.io/v1alpha1\nkind: VolumeSnapshot\nmetadata: name: new-snapshot-demo\nspec: snapshotClassName: csi-hostpath-snapclass source: name: csi-pvc kind: PersistentVolumeClaim","breadcrumbs":"Using a CSI Driver » Snapshot support","id":"41","title":"Snapshot support"},"42":{"body":"Follow the following example to create a volume from a volume snapshot: $ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/docs/master/book/src/example/snapshot/csi-restore.yaml\npersistentvolumeclaim/hpvc-restore created\n$ kubectl get pvc\nNAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE\ncsi-pvc Bound pvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO csi-hostpath-sc 24m\nhpvc-restore Bound pvc-77324684-c717-11e8-8911-000c2967769a 1Gi RWO csi-hostpath-sc 6s\n$ kubectl get pv\nNAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE\npvc-0571cc14-c714-11e8-8911-000c2967769a 1Gi RWO Delete Bound default/csi-pvc csi-hostpath-sc 25m\npvc-77324684-c717-11e8-8911-000c2967769a 1Gi RWO Delete Bound default/hpvc-restore csi-hostpath-sc 33s apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata: name: hpvc-restore\nspec: storageClassName: csi-hostpath-sc dataSource: name: new-snapshot-demo kind: VolumeSnapshot apiGroup: snapshot.storage.k8s.io accessModes: - ReadWriteOnce resources: requests: storage: 1Gi If you encounter any problems, please check the [Troubleshooting page](Troubleshooting.html).","breadcrumbs":"Using a CSI Driver » Restore volume from snapshot support","id":"42","title":"Restore volume from snapshot support"},"43":{"body":"This section describes to developers how to create and deploy a CSI driver for Kubernetes.","breadcrumbs":"Development","id":"43","title":"Development"},"44":{"body":"To write a CSI Driver, a developer must create an application which implements the three Identity , Controller , and Node services as described in the CSI specification . The Drivers page contains a set of drivers which may be used as an example of how to write a CSI driver. If this is your first driver, you can start with the in-memory sample Mock Driver used for csi-sanity","breadcrumbs":"Development » Developing a CSI driver","id":"44","title":"Developing a CSI driver"},"45":{"body":"Here are some other resources useful for writing CSI drivers: How to write a Container Storage Interface (CSI) plugin - by Fatih Arslan Understanding Container Storage Interface (CSI) - by Anoop Maniankara (4 min read)","breadcrumbs":"Development » Other Resources","id":"45","title":"Other Resources"},"46":{"body":"To implement the snapshot feature, a CSI driver needs to support controller capabilities CREATE_DELETE_SNAPSHOT and LIST_SNAPSHOTS, and implement controller RPCs CreateSnapshot, DeleteSnapshot, and ListSnapshots. For details, see the CSI spec here . Here are some example CSI plugins that have implemented the snapshot feature: GCE PD CSI driver OpenSDS CSI driver Ceph RBD CSI driver You can find more sample and production CSI drivers here . Please note that drivers may or may not have implemented the snapshot feature.","breadcrumbs":"Development » Developing a CSI driver » Implement Snapshot Feature","id":"46","title":"Implement Snapshot Feature"},"47":{"body":"The volume snapshot APIs are implemented as CRDs here . Once you deploy the CSI sidecar containers which includes the external snapshotter in your cluster, the external-snapshotter will pre-install the Snapshot CRDs.","breadcrumbs":"Development » Developing a CSI driver » Snapshot APIs","id":"47","title":"Snapshot APIs"},"48":{"body":"Since volume snapshot is an alpha feature in Kubernetes v1.12, you need to enable a new alpha feature gate called VolumeSnapshotDataSource in API server binary. --feature-gates=VolumeSnapshotDataSource=true","breadcrumbs":"Development » Developing a CSI driver » Enable VolumeSnapshotDataSource Feature Gate","id":"48","title":"Enable VolumeSnapshotDataSource Feature Gate"},"49":{"body":"The snapshot controller is implemented as a sidecar helper container called External-Snapshotter . External-Snapshotter watches VolumeSnapshot and VolumeSnapshotContent API objects and triggers CreateSnapshot and DeleteSnapshot operations. It is recommended that sidecar containers External-Snapshotter and External-Provisioner be deployed together with CSI driver in a StatefulSet. See this example yaml file which deploys External-Snapshotter and External-Provisioner with the Hostpath CSI driver. Run the following command to start the sidecar containers and the CSI driver: kubectl create -f setup-csi-snapshotter.yaml","breadcrumbs":"Development » Developing a CSI driver » Deploy External-Snapshotter with CSI Driver","id":"49","title":"Deploy External-Snapshotter with CSI Driver"},"5":{"body":"Before you can start using CSI, you must understand how to properly setup and configure deploy CSI drivers on top of Kubernetes. This section provides information on Setup - Information on how to setup the CSI feature Deployment - Instructions on deploying a driver Drivers - A growning list of available CSI driverse you can use Usage - Findout the usage mode of CSI drivers Example - Using Hostpath as an example CSI driver","breadcrumbs":"Using CSI Drivers","id":"5","title":"Using CSI Drivers"},"50":{"body":"Use the following example yaml files to test the snapshot feature. Create a StorageClass : kubectl create -f storageclass.yaml Create a PVC : kubectl create -f pvc.yaml Create a VolumeSnapshotClass : kubectl create -f snapshotclass.yaml Create a VolumeSnapshot : kubectl create -f snapshot.yaml Create a PVC from a VolumeSnapshot : kuberctl create -f restore.yaml","breadcrumbs":"Development » Developing a CSI driver » Test Snapshot Feature","id":"50","title":"Test Snapshot Feature"},"51":{"body":"If a PVC is not bound, the attempt to create a volume snapshot from that PVC will fail. No retries will be attempted. An event will be logged to indicate that the PVC is not bound. Note that this could happen if the PVC spec and the VolumeSnapshot spec are in the same yaml file. In this case, when the VolumeSnapshot object is created, the PVC object is created but volume creation is not complete and therefore PVC is not bound yet. You need to wait until the PVC is bound and try to create the snapshot again.","breadcrumbs":"Development » Developing a CSI driver » PVC not Bound","id":"51","title":"PVC not Bound"},"52":{"body":"This page describes to CSI driver developers how to deploy their driver onto a Kubernetes cluster.","breadcrumbs":"Development » Deploying in Kubernetes","id":"52","title":"Deploying in Kubernetes"},"53":{"body":"There are three components plus the kubelet that enable CSI drivers to provide storage to Kubernetes. These components are sidecar containers which are responsible for communication with both Kubernetes and the CSI driver, making the appropriate CSI calls for their respectful Kubernetes events.","breadcrumbs":"Development » Overview","id":"53","title":"Overview"},"54":{"body":"sidecar-container Sidecar containers manage Kubernetes events and make the appropriate calls to the CSI driver. These are the external attacher , external provisioner , and the driver registrar .","breadcrumbs":"Development » Sidecar Containers","id":"54","title":"Sidecar Containers"},"55":{"body":"external-attacher is a sidecar container that watches Kubernetes VolumeAttachment objects and triggers CSI ControllerPublish and ControllerUnpublish operations against a driver endpoint. As of this writing, the external attacher does not support leader election and therefore there can be only one running per CSI driver. For more information please read Attaching and Detaching . Note, even though this is called the external attacher , its function is to call the CSI API calls ControllerPublish and ControllerUnpublish . These calls most likely will occur in a node which is not the one that will mount the volume. For this reason, many CSI drivers do not support these calls, instead doing the attach/detach and mount/unmount both in the CSI NodePublish and NodeUnpublish calls done by the kubelet at the node which is supposed to mount.","breadcrumbs":"Development » External Attacher","id":"55","title":"External Attacher"},"56":{"body":"external-provisioner is a Sidecar container that watches Kubernetes PersistentVolumeClaim objects and triggers CSI CreateVolume and DeleteVolume operations against a driver endpoint. For more information please read Provisioning and Deleting .","breadcrumbs":"Development » External Provisioner","id":"56","title":"External Provisioner"},"57":{"body":"external-snapshotter is a Sidecar container that watches Kubernetes VolumeSnapshot objects and triggers CSI CreateSnapshot and DeleteSnapshot operations against a driver endpoint. For more information please read Snapshot Design Proposal .","breadcrumbs":"Development » External Snapshotter","id":"57","title":"External Snapshotter"},"58":{"body":"driver-registrar is a sidecar container that registers the CSI driver with kubelet, and adds the drivers custom NodeId to a label on the Kubernetes Node API Object. It does this by communicating with the Identity service on the CSI driver and also calling the CSI GetNodeId operation. The driver registrar must have the Kubernetes name for the node set through the environment variable KUBE_NODE_NAME as follows: - name: csi-driver-registrar imagePullPolicy: Always image: quay.io/k8scsi/driver-registrar:v0.2.0 args: - \"--v=5\" - \"--csi-address=$(ADDRESS)\" env: - name: ADDRESS value: /csi/csi.sock - name: KUBE_NODE_NAME valueFrom: fieldRef: fieldPath: spec.nodeName volumeMounts: - name: socket-dir mountPath: /csi","breadcrumbs":"Development » Driver Registrar","id":"58","title":"Driver Registrar"},"59":{"body":"kubelet The Kubernetes kubelet runs on every node and is responsible for making the CSI calls NodePublish and NodeUnpublish . These calls mount and unmount the storage volume from the storage system, making it available to the Pod to consume. As shown in the external-attacher , most CSI drivers choose to implement both their attach/detach and mount/unmount calls in the NodePublish and NodeUnpublish calls. They do this because the kubelet makes the request on the node which is to consume the volume.","breadcrumbs":"Development » Kubelet","id":"59","title":"Kubelet"},"6":{"body":"This document has been updated for the latest version of Kubernetes v1.12. This document outlines the features that are available for CSI. To get step by step instructions on how to run an example CSI driver, you can read the Example section.","breadcrumbs":"Using a CSI Driver » Setup","id":"6","title":"Setup"},"60":{"body":"The mount point used by the CSI driver must be set to Bidirectional . See the example below: volumeMounts: - name: socket-dir mountPath: /csi - name: mountpoint-dir mountPath: /var/lib/kubelet/pods mountPropagation: \"Bidirectional\" volumes: - name: socket-dir hostPath: path: /var/lib/kubelet/plugins/csi-hostpath type: DirectoryOrCreate - name: mountpoint-dir hostPath: path: /var/lib/kubelet/pods type: Directory","breadcrumbs":"Development » Mount point","id":"60","title":"Mount point"},"61":{"body":"Side car containers need the appropriate permissions to be able to access and manipulate Kubernetes objects. Here are the RBAC rules needed: kind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata: name: csi-hostpath-role\nrules: - apiGroups: [\"\"] resources: [\"persistentvolumes\"] verbs: [\"create\", \"delete\", \"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"persistentvolumeclaims\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"\"] resources: [\"nodes\"] verbs: [\"get\", \"list\", \"watch\", \"update\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"storageclasses\"] verbs: [\"get\", \"list\", \"watch\"] - apiGroups: [\"storage.k8s.io\"] resources: [\"volumeattachments\"] verbs: [\"get\", \"list\", \"watch\", \"update\"]","breadcrumbs":"Development » RBAC Rules","id":"61","title":"RBAC Rules"},"62":{"body":"Deploying a CSI driver onto Kubernetes is highlighted in detail in Recommended Mechanism for Deploying CSI Drivers on Kubernetes .","breadcrumbs":"Development » Deploying","id":"62","title":"Deploying"},"63":{"body":"Simple deployment example using a single pod for all components: see the hostpath example . Full deployment example using a DaemonSet for the node plugin and StatefulSet for the controller plugin: check the NFS driver deployment files .","breadcrumbs":"Development » Examples","id":"63","title":"Examples"},"64":{"body":"For more information, please read CSI Volume Plugins in Kubernetes Design Doc .","breadcrumbs":"Development » More information","id":"64","title":"More information"},"65":{"body":"This document describes to developers how they can test their CSI clients or drivers.","breadcrumbs":"Development » Testing","id":"65","title":"Testing"},"66":{"body":"If you are writing a CSI client, like a CO or a side car container, then you can use some of the following methods to test your application. csi-test unit test mock driver : The csi-test repo provides an automatically generated Golang mock code to be used for unit tests. mock-driver : This driver can be used as an external service to test your gRPC calls. hostPath driver : This driver can be used on a single node to tests for mounting and unmounting of storage.","breadcrumbs":"Development » Testing » Testing CSI Clients","id":"66","title":"Testing CSI Clients"},"67":{"body":"The csi-test unit test mock driver enables Golang clients to test all aspects of their code. This is done by using the mock driver generated using GoMock , which let's the caller verify parameters and test for returned values. Here is a small example: // Setup mock m := gomock.NewController(&mock_utils.SafeGoroutineTester{}) defer m.Finish() driver := mock_driver.NewMockIdentityServer(m) // Setup input in := &csi.GetPluginInfoRequest{ Version: &csi.Version{ Major: 0, Minor: 1, Patch: 0, }, } // Setup mock outout out := &csi.GetPluginInfoResponse{ Name: \"mock\", VendorVersion: \"0.1.1\", Manifest: map[string]string{ \"hello\": \"world\", }, } // Setup expectation // !IMPORTANT!: Must set context expected value to gomock.Any() to match any value driver.EXPECT().GetPluginInfo(gomock.Any(), in).Return(out, nil).Times(1) // Create a new RPC server := mock_driver.NewMockCSIDriver(&mock_driver.MockCSIDriverServers{ Identity: driver, }) conn, err := server.Nexus() if err != nil { t.Errorf(\"Error: %s\", err.Error()) } defer server.Close() // Make call c := csi.NewIdentityClient(conn) r, err := c.GetPluginInfo(context.Background(), in) if err != nil { t.Errorf(\"Error: %s\", err.Error()) } name := r.GetName() if name != \"mock\" { t.Errorf(\"Unknown name: %s\\n\", name) }","breadcrumbs":"Development » Testing » CSI-Test Unit Test Mock Driver","id":"67","title":"CSI-Test Unit Test Mock Driver"},"68":{"body":"For more examples and information see: external-attacher side car container Golang GoMock","breadcrumbs":"Development » Testing » More Information","id":"68","title":"More Information"},"69":{"body":"The hostPath driver is probably the simplest CSI driver to use for testing on a single node. This is the driver that is for CSI e2e tests in Kubernetes. See the Example page for deployment and usage instructions.","breadcrumbs":"Development » Testing » HostPath Driver","id":"69","title":"HostPath Driver"},"7":{"body":"Some of the features discussed here may be at different stages (alpha, beta, or GA). Ensure that the feature you want to try is enabled for the Kubernetes release you are using. To avoid version mismatch, you can enable all of the features discussed here for both kubelet and kube-apiserver with: --feature-gates=VolumeSnapshotDataSource=true,KubeletPluginsWatcher=true,CSINodeInfo=true,CSIDriverRegistry=true","breadcrumbs":"Using a CSI Driver » Enabling features","id":"7","title":"Enabling features"},"70":{"body":"There are multiple ways to test your driver, some still in development. This page will describe each of the multiple methods to test your driver.","breadcrumbs":"Development » Testing » Testing CSI Drivers","id":"70","title":"Testing CSI Drivers"},"71":{"body":"There are multiple ways to test your driver. One way is to exercise every call by writing your own client for your unit tests as done in the Portworx driver . Another way to test your driver is to use the sanity package from csi-test . This simple package contains a single call which will test your driver according to the CSI specification. Here is an example of how it can be used: func TestMyDriver(t *testing.T) { // Setup the full driver and its environment ... setup driver ... // Now call the test suite sanity.Test(t, driverEndpointAddress)\n}","breadcrumbs":"Development » Testing » Unit Testing","id":"71","title":"Unit Testing"},"72":{"body":"For functional testing you can again provide your own model, or some of the following tools:","breadcrumbs":"Development » Testing » Functional Testing","id":"72","title":"Functional Testing"},"73":{"body":"csi-sanity is a program from csi-test which tests your driver based on the sanity package. Here is a sample way to use it: $ csi-sanity --ginkgo.v --csi.endpoint= For more information please see csi-sanity","breadcrumbs":"Development » Testing » csi-sanity","id":"73","title":"csi-sanity"},"74":{"body":"","breadcrumbs":"Troubleshooting","id":"74","title":"Troubleshooting"},"75":{"body":"kubectl describe pod your-nodeplugin-pod shows: failed to start container \"your-driver\": Error response from daemon:\nlinux mounts: Path /var/lib/kubelet/pods is mounted on / but it is not a shared mount Your Docker host is not configured to allow shared mounts. Take a look at this page for instructions to enable them.","breadcrumbs":"Node plugin pod does not start with RunContainerError status","id":"75","title":"Node plugin pod does not start with RunContainerError status"},"76":{"body":"If you have a Kubernetes 1.9 cluster, not being able to list VolumeAttachment and the following error are due to the lack of the storage.k8s.io/v1alpha1=true runtime configuration: $ kubectl logs csi-pod external-attacher\n...\nI0306 16:34:50.976069 1 reflector.go:240] Listing and watching *v1alpha1.VolumeAttachment from github.com/kubernetes-csi/external-attacher/vendor/k8s.io/client-go/informers/factory.go:86 E0306 16:34:50.992034 1 reflector.go:205] github.com/kubernetes-csi/external-attacher/vendor/k8s.io/client-go/informers/factory.go:86: Failed to list *v1alpha1.VolumeAttachment: the server could not find the requested resource\n... Please see the Kubernetes 1.9 page.","breadcrumbs":"External attacher can't find VolumeAttachments","id":"76","title":"External attacher can't find VolumeAttachments"},"77":{"body":"The external components images are under active development. It can happen that they become incompatible with each other. If the issues above above have been ruled out, contact the sig-storage team and/or run the e2e test : go run hack/e2e.go -- --provider=local --test --test_args=\"--ginkgo.focus=Feature:CSI\"","breadcrumbs":"Problems with the external components","id":"77","title":"Problems with the external components"},"78":{"body":"CSI Specification CSI Volume Plugins in Kubernetes Design Doc","breadcrumbs":"References","id":"78","title":"References"},"79":{"body":"In this section, you will find information about CSI support in older Kubernetes versions.","breadcrumbs":"Archive","id":"79","title":"Archive"},"8":{"body":"To use CSI drivers, your Kubernetes cluster must allow privileged pods (i.e. --allow-privileged flag must be set to true for both the API server and the kubelet). This is the default in some environments (e.g. GCE, GKE, kubeadm ). Ensure your API server are started with the privileged flag: $ ./kube-apiserver ... --allow-privileged=true ... $ ./kubelet ... --allow-privileged=true ...","breadcrumbs":"Using a CSI Driver » Enable privileged Pods","id":"8","title":"Enable privileged Pods"},"80":{"body":"Since CSI support is alpha in Kubernetes 1.9, the following flags must be set explictly: API Server binary: --allow-privileged=true\n--feature-gates=CSIPersistentVolume=true,MountPropagation=true\n--runtime-config=storage.k8s.io/v1alpha1=true Controller-manager binary --feature-gates=CSIPersistentVolume=true Kubelet --allow-privileged=true\n--feature-gates=CSIPersistentVolume=true,MountPropagation=true","breadcrumbs":"Archive » CSI with Kubernetes 1.9","id":"80","title":"CSI with Kubernetes 1.9"},"81":{"body":"If you are a developer and are using the script cluster/kube-up.sh from the Kubernetes repo, then you can set values using the following environment variables: export KUBE_RUNTIME_CONFIG=\"storage.k8s.io/v1alpha1=true\"\nexport KUBE_FEATURE_GATES=\"MountPropagation=true,CSIPersistentVolume=true\" When using the script hack/local-up-cluster.sh , set the same variables without the KUBE_ prefix: export RUNTIME_CONFIG=\"storage.k8s.io/v1alpha1=true\"\nexport FEATURE_GATES=\"MountPropagation=true,CSIPersistentVolume=true\"","breadcrumbs":"Archive » Developers","id":"81","title":"Developers"},"82":{"body":"Once the system is up, to confirm if the runtime config has taken effect, the following command should return that there are no resources and not return an error: $ kubectl get volumeattachments To confirm that the feature gate has taken effect, submit the following fake PersistentVolume specification. If it is accepted, then we can confirm that the feature gate has been set correctly, and you may go ahead and delete it: apiVersion: v1\nkind: PersistentVolume\nmetadata: name: fakepv\nspec: capacity: storage: 1Gi accessModes: - ReadWriteMany csi: driver: fake volumeHandle: \"1\" readOnly: false","breadcrumbs":"Archive » Confirming the setup","id":"82","title":"Confirming the setup"},"83":{"body":"TBD","breadcrumbs":"Archive » CSI with Kubernetes 1.10","id":"83","title":"CSI with Kubernetes 1.10"},"9":{"body":"Another feature that CSI depends on is mount propagation. It allows the sharing of volumes mounted by one container with other containers in the same pod, or even to other pods on the same node. For mount propagation to work, the Docker daemon for the cluster must allow shared mounts. See the mount propagation docs to find out how to enable this feature for your cluster. This page explains how to check if shared mounts are enabled and how to configure Docker for shared mounts.","breadcrumbs":"Using a CSI Driver » Enabling mount propagation","id":"9","title":"Enabling mount propagation"}},"length":84,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{".":{"1":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"c":{"2":{"9":{"6":{"7":{"7":{"6":{"9":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.4142135623730952},"41":{"tf":3.3166247903554},"42":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"8":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"39":{"tf":1.4142135623730952}},"t":{"1":{"3":{":":{"5":{"9":{":":{"1":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"41":{"tf":1.7320508075688773}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"t":{"2":{"1":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"7":{"1":{"c":{"c":{"1":{"4":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"9":{"6":{"6":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"5":{"9":{":":{"1":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":2.0},"37":{"tf":2.23606797749979},"38":{"tf":2.6457513110645909},"39":{"tf":3.1622776601683797},"67":{"tf":1.4142135623730952}}},"1":{".":{"1":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"76":{"tf":1.4142135623730952},"80":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"/":{"1":{"df":5,"docs":{"35":{"tf":1.0},"36":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":2.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"7":{"4":{"1":{"8":{"2":{"4":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.0}}},"1":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"8":{"df":5,"docs":{"13":{"tf":1.0},"39":{"tf":1.7320508075688773},"40":{"tf":1.7320508075688773},"41":{"tf":3.3166247903554},"42":{"tf":2.0}}},"df":0,"docs":{}}},"2":{"3":{"4":{"5":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.4142135623730952},"39":{"tf":2.23606797749979},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}},"4":{"df":1,"docs":{"41":{"tf":1.0}}},"5":{"3":{"8":{"5":{"7":{"6":{"2":{"0":{"5":{"4":{"7":{"1":{"5":{"7":{"7":{"5":{"2":{"5":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{":":{"5":{"0":{".":{"9":{"7":{"6":{"0":{"6":{"9":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"0":{"3":{"4":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"7":{"2":{".":{"1":{"7":{".":{"0":{".":{"5":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":8,"docs":{"13":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.7320508075688773},"67":{"tf":1.0},"76":{"tf":1.4142135623730952},"82":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"82":{"tf":1.0}}}}},"2":{"/":{"2":{"df":3,"docs":{"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"8":{"df":4,"docs":{"13":{"tf":1.0},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"8":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"41":{"tf":1.0}}},"4":{"df":1,"docs":{"41":{"tf":1.0}}},"6":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}},"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":1.0}}}},"3":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"3":{"3":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"4":{"8":{"df":1,"docs":{"38":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":1.0}},"s":{"df":1,"docs":{"36":{"tf":1.0}}}},"5":{"3":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"s":{"df":3,"docs":{"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}}},"6":{"6":{"df":1,"docs":{"39":{"tf":1.0}}},"7":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}},"9":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{},"s":{"df":2,"docs":{"35":{"tf":1.0},"42":{"tf":1.0}}}},"7":{"7":{"3":{"2":{"4":{"6":{"8":{"4":{"df":1,"docs":{"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"6":{"2":{"d":{"7":{"2":{"4":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"1":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.4142135623730952},"41":{"tf":3.1622776601683797},"42":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"5":{"4":{"a":{"a":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"7":{"c":{"df":3,"docs":{"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"4":{"df":0,"docs":{},"e":{"9":{"7":{"df":0,"docs":{},"f":{"3":{"a":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"1":{"c":{"6":{"d":{"0":{"8":{"1":{"b":{"8":{"df":0,"docs":{},"e":{"9":{"6":{"c":{"5":{"8":{"df":0,"docs":{},"e":{"d":{"0":{"0":{"c":{"9":{"b":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"1":{"7":{"4":{"5":{"df":0,"docs":{},"e":{"8":{"9":{"b":{"2":{"5":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"4":{"5":{"0":{"5":{"4":{"3":{"7":{"df":0,"docs":{},"f":{"0":{"1":{"5":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"18":{"tf":1.0},"77":{"tf":1.4142135623730952}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"61":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"27":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"d":{"d":{"df":2,"docs":{"22":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730952},"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":1,"docs":{"22":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"72":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":8,"docs":{"13":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.0},"41":{"tf":1.7320508075688773},"42":{"tf":1.4142135623730952}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.4142135623730952},"9":{"tf":1.4142135623730952}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":11,"docs":{"10":{"tf":1.4142135623730952},"11":{"tf":1.4142135623730952},"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.7320508075688773},"2":{"tf":1.0},"24":{"tf":2.0},"30":{"tf":1.4142135623730952},"48":{"tf":1.4142135623730952},"7":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"39":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"47":{"tf":1.4142135623730952},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"31":{"tf":3.3166247903554},"32":{"tf":2.23606797749979},"33":{"tf":2.6457513110645909},"34":{"tf":3.1622776601683797},"42":{"tf":1.0},"61":{"tf":2.23606797749979}}}}}}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":18,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.4142135623730952},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":1.7320508075688773},"34":{"tf":1.7320508075688773},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.7320508075688773},"38":{"tf":1.4142135623730952},"39":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}}}}}},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"35":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.4142135623730952},"38":{"tf":2.0},"39":{"tf":2.449489742783178},"40":{"tf":1.7320508075688773}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"44":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"v":{"1":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.4142135623730952},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.4142135623730952},"39":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"3":{"tf":1.0},"32":{"tf":3.1622776601683797},"36":{"tf":3.605551275463989},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730952},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"59":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730952}},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730952}}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730952}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.4142135623730952}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"73":{"tf":1.0}}}}},"b":{"1":{"6":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":2,"docs":{"28":{"tf":1.0},"76":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"60":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}}},"t":{"a":{"df":5,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730952},"24":{"tf":1.7320508075688773},"7":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730952}}}}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"60":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"48":{"tf":1.0},"80":{"tf":1.4142135623730952}}}}},"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"10":{"tf":1.7320508075688773},"24":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"28":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":2.0},"51":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"39":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"7":{"1":{"4":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952}}},"6":{"df":1,"docs":{"41":{"tf":3.0}}},"7":{"df":1,"docs":{"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"5":{"b":{"c":{"4":{"7":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":14,"docs":{"11":{"tf":1.7320508075688773},"17":{"tf":1.7320508075688773},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"c":{"df":4,"docs":{"27":{"tf":1.0},"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":3,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.0}}}}},"df":2,"docs":{"40":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"26":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"28":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"65":{"tf":1.0},"66":{"tf":1.4142135623730952},"67":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":11,"docs":{"11":{"tf":1.7320508075688773},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730952}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"61":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":1,"docs":{"66":{"tf":1.0}},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.4142135623730952},"49":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"53":{"tf":1.4142135623730952},"63":{"tf":1.0},"77":{"tf":1.4142135623730952}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.4142135623730952},"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"82":{"tf":2.0}}}}}},"n":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730952}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"16":{"tf":1.0},"17":{"tf":2.0},"24":{"tf":3.7416573867739415},"28":{"tf":2.23606797749979},"3":{"tf":1.4142135623730952},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":2.449489742783178},"40":{"tf":1.4142135623730952},"44":{"tf":1.0},"45":{"tf":1.4142135623730952},"47":{"tf":1.0},"49":{"tf":1.7320508075688773},"53":{"tf":1.0},"54":{"tf":1.7320508075688773},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"10":{"tf":1.0},"28":{"tf":1.4142135623730952},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730952},"49":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.4142135623730952}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.4142135623730952}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"r":{"d":{"df":7,"docs":{"11":{"tf":1.4142135623730952},"12":{"tf":1.4142135623730952},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730952},"30":{"tf":1.0},"47":{"tf":1.4142135623730952}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":2.449489742783178},"30":{"tf":2.23606797749979},"31":{"tf":2.8284271247461905},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":3.0},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":3.3166247903554},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688773},"43":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":3.1622776601683797},"51":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"b":{"a":{"c":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":2.0},"12":{"tf":1.7320508075688773},"13":{"tf":1.4142135623730952},"14":{"tf":1.4142135623730952},"17":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.4142135623730952}}}}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":65,"docs":{"1":{"tf":1.7320508075688773},"10":{"tf":1.0},"11":{"tf":2.449489742783178},"13":{"tf":1.7320508075688773},"14":{"tf":2.0},"16":{"tf":2.23606797749979},"17":{"tf":3.4641016151377546},"18":{"tf":1.4142135623730952},"2":{"tf":1.0},"21":{"tf":1.4142135623730952},"22":{"tf":1.0},"23":{"tf":1.4142135623730952},"24":{"tf":3.872983346207417},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":3.0},"3":{"tf":1.7320508075688773},"31":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"35":{"tf":3.605551275463989},"36":{"tf":3.7416573867739415},"37":{"tf":3.3166247903554},"38":{"tf":4.123105625617661},"39":{"tf":5.196152422706632},"4":{"tf":1.0},"40":{"tf":1.7320508075688773},"41":{"tf":3.4641016151377546},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.7320508075688773},"46":{"tf":2.6457513110645909},"47":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":2.6457513110645909},"52":{"tf":1.0},"53":{"tf":1.7320508075688773},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730952},"6":{"tf":1.4142135623730952},"60":{"tf":1.4142135623730952},"61":{"tf":1.0},"62":{"tf":1.4142135623730952},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730952},"69":{"tf":1.4142135623730952},"70":{"tf":1.0},"71":{"tf":1.4142135623730952},"73":{"tf":2.449489742783178},"76":{"tf":1.0},"78":{"tf":1.4142135623730952},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730952},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":6,"docs":{"14":{"tf":2.0},"15":{"tf":1.7320508075688773},"19":{"tf":1.4142135623730952},"30":{"tf":1.4142135623730952},"31":{"tf":1.0},"33":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730952},"58":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"75":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"37":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"63":{"tf":1.0}}}}}}}}},"t":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"28":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":11,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730952},"19":{"tf":1.0},"30":{"tf":1.7320508075688773},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":2.23606797749979},"41":{"tf":1.4142135623730952},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.4142135623730952}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"31":{"tf":1.0},"34":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"56":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"41":{"tf":2.449489742783178},"42":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.7320508075688773},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"43":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688773},"5":{"tf":1.7320508075688773},"52":{"tf":1.4142135623730952},"62":{"tf":1.7320508075688773},"63":{"tf":1.7320508075688773},"69":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":10,"docs":{"13":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.7320508075688773},"43":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730952}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"1":{"tf":1.0},"43":{"tf":1.4142135623730952},"44":{"tf":1.4142135623730952},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730952}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"7":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":8,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":2.6457513110645909},"38":{"tf":1.4142135623730952},"58":{"tf":1.0},"60":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730952},"18":{"tf":1.4142135623730952},"37":{"tf":1.0},"60":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":1.7320508075688773},"17":{"tf":1.0},"18":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"o":{"c":{"df":3,"docs":{"64":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"/":{"/":{"df":0,"docs":{},"f":{"d":{"2":{"9":{"5":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"1":{"5":{"5":{"b":{"d":{"df":0,"docs":{},"f":{"0":{"8":{"d":{"1":{"d":{"a":{"3":{"4":{"1":{"c":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"a":{"a":{"0":{"d":{"1":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"e":{"a":{"a":{"a":{"d":{"6":{"9":{"5":{"0":{"a":{"9":{"4":{"6":{"3":{"5":{"5":{"7":{"8":{"9":{"6":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"39":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730952}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.4142135623730952},"26":{"tf":1.0},"27":{"tf":1.0},"6":{"tf":1.4142135623730952},"65":{"tf":1.0}}}}}}}},"df":1,"docs":{"55":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"55":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":47,"docs":{"1":{"tf":1.0},"11":{"tf":2.449489742783178},"13":{"tf":1.7320508075688773},"14":{"tf":2.8284271247461905},"16":{"tf":3.0},"17":{"tf":3.4641016151377546},"21":{"tf":2.0},"22":{"tf":1.7320508075688773},"23":{"tf":2.0},"24":{"tf":2.23606797749979},"25":{"tf":1.4142135623730952},"26":{"tf":1.4142135623730952},"27":{"tf":2.23606797749979},"28":{"tf":2.8284271247461905},"29":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.4142135623730952},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.6457513110645909},"45":{"tf":1.0},"46":{"tf":2.449489742783178},"49":{"tf":2.0},"5":{"tf":2.449489742783178},"52":{"tf":1.4142135623730952},"53":{"tf":1.4142135623730952},"54":{"tf":1.4142135623730952},"55":{"tf":1.7320508075688773},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.6457513110645909},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730952},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"69":{"tf":2.0},"70":{"tf":1.7320508075688773},"71":{"tf":2.449489742783178},"73":{"tf":1.4142135623730952},"75":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"5":{"tf":1.0}}},"’":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.7320508075688773}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688773},"39":{"tf":1.0},"41":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"69":{"tf":1.0},"77":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"70":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"82":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"10":{"tf":1.4142135623730952},"12":{"tf":1.4142135623730952},"15":{"tf":1.4142135623730952},"18":{"tf":1.0},"19":{"tf":1.7320508075688773},"30":{"tf":1.7320508075688773},"39":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.4142135623730952},"53":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688773},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688773}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"$":{"(":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"31":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"v":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"39":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}}}}}},"df":1,"docs":{"67":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":10,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":19,"docs":{"21":{"tf":1.4142135623730952},"23":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688773},"29":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730952},"50":{"tf":1.0},"6":{"tf":1.4142135623730952},"60":{"tf":1.0},"63":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"t":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":2.0}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":16,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"47":{"tf":1.4142135623730952},"49":{"tf":2.6457513110645909},"54":{"tf":1.4142135623730952},"55":{"tf":2.0},"56":{"tf":1.4142135623730952},"57":{"tf":1.4142135623730952},"59":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730952},"77":{"tf":1.4142135623730952}}}}}}}},"f":{"5":{"5":{"d":{"b":{"6":{"3":{"2":{"df":1,"docs":{"41":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"7":{"9":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"6":{"1":{"4":{"1":{"1":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"51":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.4142135623730952}},"p":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.4142135623730952},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":2.6457513110645909}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":16,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"30":{"tf":1.4142135623730952},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"10":{"tf":1.7320508075688773},"12":{"tf":1.4142135623730952},"15":{"tf":1.4142135623730952},"16":{"tf":1.4142135623730952},"18":{"tf":1.4142135623730952},"19":{"tf":2.23606797749979},"30":{"tf":2.0},"34":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":2.0},"48":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730952},"6":{"tf":1.0},"7":{"tf":2.23606797749979},"80":{"tf":1.7320508075688773},"82":{"tf":1.4142135623730952},"9":{"tf":1.4142135623730952}},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"28":{"tf":1.4142135623730952}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"76":{"tf":1.4142135623730952},"79":{"tf":1.0},"9":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"44":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":21,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730952},"14":{"tf":1.0},"15":{"tf":1.4142135623730952},"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":2.449489742783178},"30":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730952},"49":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730952}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"71":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.4142135623730952},"21":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730952}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}},"g":{"a":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.4142135623730952},"82":{"tf":1.4142135623730952}},"s":{"=":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"15":{"tf":1.0},"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"18":{"tf":1.0},"48":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"24":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"41":{"tf":1.7320508075688773},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}}}}},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"8":{"6":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"67":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"p":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"40":{"tf":1.0},"67":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688773},"47":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.4142135623730952},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688773},"39":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":22,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688773},"14":{"tf":1.0},"17":{"tf":3.0},"21":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":3.7416573867739415},"36":{"tf":3.7416573867739415},"37":{"tf":2.8284271247461905},"38":{"tf":3.872983346207417},"39":{"tf":3.605551275463989},"40":{"tf":1.7320508075688773},"41":{"tf":3.3166247903554},"42":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.7320508075688773},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730952}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"30":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":1,"docs":{"8":{"tf":1.0}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"39":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"58":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"24":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.4142135623730952},"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730952},"19":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730952},"14":{"tf":1.0},"16":{"tf":1.4142135623730952},"17":{"tf":1.7320508075688773},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730952},"25":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.4142135623730952},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.4142135623730952},"68":{"tf":1.4142135623730952},"73":{"tf":1.0},"79":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"16":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"24":{"tf":3.4641016151377546},"45":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"16":{"tf":1.4142135623730952}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"11":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"39":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"'":{"df":0,"docs":{},"{":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"[":{"*":{"]":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"14":{"tf":1.4142135623730952},"28":{"tf":2.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":3.0},"42":{"tf":1.4142135623730952},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"81":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":21,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730952},"15":{"tf":1.0},"30":{"tf":1.4142135623730952},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"38":{"tf":1.4142135623730952},"39":{"tf":2.6457513110645909},"40":{"tf":2.0},"41":{"tf":2.8284271247461905},"42":{"tf":1.7320508075688773},"49":{"tf":1.0},"50":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}}},"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"18":{"tf":1.4142135623730952}}},"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":2.0},"18":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"19":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":44,"docs":{"1":{"tf":1.7320508075688773},"10":{"tf":1.4142135623730952},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730952},"19":{"tf":1.4142135623730952},"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730952},"29":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730952},"53":{"tf":1.7320508075688773},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730952},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730952},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.4142135623730952},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730952},"81":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"13":{"tf":1.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"58":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"6":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"75":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"13":{"tf":1.4142135623730952},"14":{"tf":1.4142135623730952},"31":{"tf":3.1622776601683797},"32":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":3.0},"5":{"tf":1.0},"61":{"tf":2.23606797749979},"76":{"tf":1.7320508075688773}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.0},"76":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"26":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688773},"67":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"55":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"17":{"tf":2.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"18":{"tf":1.0},"67":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"16":{"tf":1.4142135623730952},"18":{"tf":1.0},"19":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":1.7320508075688773},"34":{"tf":1.7320508075688773},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"17":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.4142135623730952},"44":{"tf":1.0},"66":{"tf":1.7320508075688773},"67":{"tf":2.6457513110645909}}}},"d":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"17":{"tf":1.0},"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"5":{"tf":1.0}},"l":{"df":2,"docs":{"26":{"tf":1.4142135623730952},"72":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730952},"25":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.4142135623730952},"68":{"tf":1.4142135623730952},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"df":12,"docs":{"11":{"tf":1.4142135623730952},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"24":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.4142135623730952},"59":{"tf":1.0},"60":{"tf":1.4142135623730952},"66":{"tf":1.0},"75":{"tf":2.0},"9":{"tf":2.8284271247461905}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.4142135623730952},"60":{"tf":1.4142135623730952}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"30":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"25":{"tf":1.0},"70":{"tf":1.4142135623730952},"71":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":2.0},"13":{"tf":1.4142135623730952},"14":{"tf":1.0},"17":{"tf":2.449489742783178},"23":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.4641016151377546},"3":{"tf":1.0},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"35":{"tf":2.8284271247461905},"36":{"tf":2.8284271247461905},"37":{"tf":3.7416573867739415},"38":{"tf":2.8284271247461905},"39":{"tf":3.1622776601683797},"40":{"tf":2.0},"41":{"tf":3.872983346207417},"42":{"tf":2.0},"58":{"tf":2.23606797749979},"60":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":2.23606797749979},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":9,"docs":{"13":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730952},"34":{"tf":1.0},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"21":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"41":{"tf":2.0},"42":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}}},"f":{"df":2,"docs":{"23":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.4142135623730952}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"14":{"tf":2.23606797749979},"23":{"tf":1.0},"28":{"tf":1.4142135623730952},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.4142135623730952},"58":{"tf":1.4142135623730952},"59":{"tf":1.4142135623730952},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}},"i":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"14":{"tf":1.4142135623730952},"58":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":3.0},"37":{"tf":1.0},"75":{"tf":1.0}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.4142135623730952}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.4142135623730952}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"13":{"tf":1.7320508075688773},"39":{"tf":2.6457513110645909},"40":{"tf":1.7320508075688773},"41":{"tf":3.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"71":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688773},"28":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730952},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"df":1,"docs":{"40":{"tf":1.0}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":4,"docs":{"16":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0}}},"df":3,"docs":{"55":{"tf":1.4142135623730952},"71":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":2,"docs":{"24":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":7,"docs":{"11":{"tf":1.0},"17":{"tf":2.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"67":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"71":{"tf":1.4142135623730952},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":3.872983346207417},"67":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"16":{"tf":1.4142135623730952},"17":{"tf":3.0},"18":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688773},"38":{"tf":1.0},"60":{"tf":1.4142135623730952},"75":{"tf":1.0}}}}},"d":{"df":2,"docs":{"28":{"tf":3.0},"46":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.0},"55":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"24":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"27":{"tf":2.0},"28":{"tf":3.3166247903554},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.4142135623730952}},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"28":{"tf":3.0},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":2.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":16,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"53":{"tf":1.0}},"g":{"df":1,"docs":{"24":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.23606797749979},"33":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"63":{"tf":1.4142135623730952},"64":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}}}},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":15,"docs":{"11":{"tf":1.7320508075688773},"13":{"tf":1.0},"17":{"tf":2.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"38":{"tf":1.4142135623730952},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.7320508075688773},"76":{"tf":1.0},"8":{"tf":1.4142135623730952},"9":{"tf":1.4142135623730952}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.4142135623730952}}}}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"60":{"tf":1.4142135623730952}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":2.23606797749979},"39":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"38":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":2,"docs":{"24":{"tf":1.0},"71":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688773},"47":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"16":{"tf":1.0},"20":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":2.0}},"e":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"8":{"tf":1.4142135623730952},"80":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"42":{"tf":1.0},"77":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.7320508075688773},"23":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":8,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730952},"27":{"tf":1.7320508075688773},"28":{"tf":2.6457513110645909},"29":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"19":{"tf":1.0},"28":{"tf":2.8284271247461905},"3":{"tf":1.0},"31":{"tf":3.1622776601683797},"35":{"tf":3.605551275463989},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730952},"49":{"tf":1.4142135623730952},"54":{"tf":1.0},"56":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{":":{"2":{"a":{"0":{"3":{"a":{"6":{"0":{"5":{"9":{"df":0,"docs":{},"f":{"2":{"1":{"df":0,"docs":{},"e":{"1":{"5":{"0":{"a":{"df":0,"docs":{},"e":{"8":{"4":{"b":{"0":{"9":{"7":{"3":{"8":{"6":{"3":{"6":{"0":{"9":{"4":{"9":{"4":{"a":{"a":{"d":{"7":{"0":{"df":0,"docs":{},"f":{"0":{"a":{"8":{"0":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"6":{"4":{"b":{"d":{"d":{"d":{"8":{"d":{"9":{"2":{"4":{"6":{"5":{"8":{"1":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":2.0}}}}},"v":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"[":{"'":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"39":{"tf":3.1622776601683797},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"42":{"tf":2.6457513110645909},"50":{"tf":1.4142135623730952},"51":{"tf":2.8284271247461905}}},"df":3,"docs":{"27":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}}},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.7320508075688773}}}},"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"df":5,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730952},"61":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"24":{"tf":1.4142135623730952},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}},"e":{"a":{"d":{"df":6,"docs":{"45":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":6,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"39":{"tf":1.0},"82":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"y":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":1.0},"55":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"49":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"19":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"2":{"0":{"5":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":3,"docs":{"13":{"tf":1.7320508075688773},"17":{"tf":1.0},"58":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"v":{"0":{".":{"2":{".":{"0":{"df":2,"docs":{"17":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"16":{"tf":1.7320508075688773},"17":{"tf":2.8284271247461905},"3":{"tf":1.0},"37":{"tf":1.4142135623730952},"54":{"tf":1.0},"58":{"tf":2.0}}}},"df":3,"docs":{"16":{"tf":2.449489742783178},"17":{"tf":2.6457513110645909},"37":{"tf":2.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":2.6457513110645909}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"22":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"28":{"tf":2.0},"39":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.4142135623730952},"13":{"tf":1.0},"17":{"tf":2.0},"28":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"11":{"tf":1.4142135623730952},"13":{"tf":1.0},"14":{"tf":1.4142135623730952},"17":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":3.1622776601683797},"32":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":3.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.4142135623730952},"61":{"tf":2.23606797749979},"76":{"tf":1.0},"82":{"tf":1.0}},"e":{"]":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"28":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.4142135623730952},"42":{"tf":2.23606797749979}},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"82":{"tf":1.4142135623730952}}}}}}},"o":{"df":1,"docs":{"39":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"61":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.4142135623730952},"18":{"tf":1.7320508075688773}}}}},"p":{"c":{"df":2,"docs":{"46":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.7320508075688773},"61":{"tf":1.7320508075688773},"77":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730952},"37":{"tf":1.7320508075688773},"38":{"tf":2.0},"39":{"tf":2.6457513110645909},"49":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"77":{"tf":1.4142135623730952}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"34":{"tf":1.7320508075688773}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"39":{"tf":1.0}},"o":{"df":2,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":2.0}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"28":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.4142135623730952}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"23":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"23":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"39":{"tf":2.449489742783178},"42":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"39":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.4142135623730952}}}}}}},"df":1,"docs":{"67":{"tf":1.4142135623730952}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"28":{"tf":2.6457513110645909},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730952}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"79":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}}},"n":{"d":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":7,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}}}},"i":{"c":{"df":6,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":8,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":2.23606797749979},"30":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730952},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":11,"docs":{"20":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"4":{"tf":1.4142135623730952},"40":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.7320508075688773},"6":{"tf":1.0},"67":{"tf":2.0},"71":{"tf":1.4142135623730952},"82":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.4142135623730952},"9":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"14":{"tf":1.0},"29":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"16":{"tf":1.7320508075688773},"17":{"tf":2.23606797749979},"3":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688773},"53":{"tf":1.0},"54":{"tf":1.7320508075688773},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"29":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"41":{"tf":1.4142135623730952}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":2.8284271247461905}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.7320508075688773}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"41":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"31":{"tf":1.4142135623730952},"34":{"tf":1.7320508075688773},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":12,"docs":{"18":{"tf":1.7320508075688773},"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":4.123105625617661},"42":{"tf":1.7320508075688773},"46":{"tf":2.0},"47":{"tf":1.7320508075688773},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730952},"51":{"tf":1.4142135623730952},"57":{"tf":1.0}},"t":{"df":7,"docs":{"34":{"tf":3.3166247903554},"38":{"tf":3.7416573867739415},"39":{"tf":1.0},"41":{"tf":1.4142135623730952},"47":{"tf":1.4142135623730952},"49":{"tf":2.23606797749979},"57":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730952},"17":{"tf":2.6457513110645909},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.7320508075688773},"38":{"tf":1.4142135623730952},"58":{"tf":1.0},"60":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"42":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730952},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688773},"28":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":3,"docs":{"17":{"tf":2.23606797749979},"18":{"tf":1.0},"28":{"tf":2.6457513110645909}}}}}},"df":0,"docs":{}}},"s":{"d":{"df":1,"docs":{"28":{"tf":3.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.4142135623730952},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"39":{"tf":2.0},"44":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"75":{"tf":1.4142135623730952},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"38":{"tf":1.4142135623730952},"49":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"u":{"df":13,"docs":{"2":{"tf":1.4142135623730952},"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730952},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"6":{"tf":1.4142135623730952}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"14":{"tf":1.4142135623730952},"24":{"tf":5.196152422706632},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.1622776601683797},"29":{"tf":1.0},"39":{"tf":1.7320508075688773},"42":{"tf":1.0},"45":{"tf":1.4142135623730952},"53":{"tf":1.0},"59":{"tf":1.4142135623730952},"66":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"28":{"tf":1.7320508075688773},"39":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"28":{"tf":3.4641016151377546},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.7320508075688773},"42":{"tf":1.4142135623730952},"50":{"tf":1.0},"61":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"28":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}}}}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":1.7320508075688773},"14":{"tf":1.0},"18":{"tf":1.7320508075688773},"19":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.4142135623730952},"79":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}},"n":{"df":1,"docs":{"82":{"tf":1.4142135623730952}}}}}},"b":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"28":{"tf":1.7320508075688773},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"df":16,"docs":{"23":{"tf":1.0},"25":{"tf":1.7320508075688773},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.4142135623730952},"65":{"tf":1.4142135623730952},"66":{"tf":2.8284271247461905},"67":{"tf":2.449489742783178},"69":{"tf":1.4142135623730952},"70":{"tf":1.7320508075688773},"71":{"tf":2.6457513110645909},"72":{"tf":1.4142135623730952},"73":{"tf":1.4142135623730952},"77":{"tf":1.4142135623730952}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"51":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"39":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"39":{"tf":1.0},"41":{"tf":1.4142135623730952}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"1":{"5":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"0":{"5":{"7":{"4":{"8":{"5":{"a":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"p":{"df":1,"docs":{"5":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.4142135623730952},"19":{"tf":1.7320508075688773}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"14":{"tf":1.4142135623730952}}}}}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":2,"docs":{"51":{"tf":1.0},"7":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"28":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.4142135623730952},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"8":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"26":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"17":{"tf":1.4142135623730952},"28":{"tf":1.7320508075688773},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688773},"38":{"tf":1.0},"39":{"tf":2.0},"60":{"tf":1.4142135623730952}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"45":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"11":{"tf":1.0}}}},"t":{"df":3,"docs":{"66":{"tf":1.4142135623730952},"67":{"tf":1.4142135623730952},"71":{"tf":1.4142135623730952}}},"x":{":":{"/":{"/":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.7320508075688773}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"66":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":2.23606797749979},"34":{"tf":1.7320508075688773},"6":{"tf":1.0},"61":{"tf":2.0}}}},"df":0,"docs":{}},"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"26":{"tf":1.4142135623730952},"39":{"tf":1.0},"5":{"tf":1.4142135623730952},"69":{"tf":1.0}}}},"df":32,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730952},"15":{"tf":1.0},"16":{"tf":1.7320508075688773},"17":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730952},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"41":{"tf":1.0},"44":{"tf":1.4142135623730952},"45":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730952},"66":{"tf":2.0},"67":{"tf":1.4142135623730952},"69":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730952},"73":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"v":{"0":{".":{"0":{".":{"1":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"3":{".":{"0":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":2.0}}},"4":{".":{"1":{"df":1,"docs":{"3":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"0":{"df":2,"docs":{"2":{"tf":1.0},"30":{"tf":1.4142135623730952}}},"1":{"df":1,"docs":{"2":{"tf":1.0}}},"2":{"df":4,"docs":{"18":{"tf":1.0},"30":{"tf":2.0},"48":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":17,"docs":{"11":{"tf":1.7320508075688773},"14":{"tf":1.0},"17":{"tf":1.4142135623730952},"27":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"39":{"tf":1.4142135623730952},"41":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.0}}},"=":{"5":{"df":4,"docs":{"17":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"30":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":11,"docs":{"11":{"tf":1.7320508075688773},"17":{"tf":1.4142135623730952},"18":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.7320508075688773},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.4142135623730952},"18":{"tf":1.0},"37":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.7320508075688773},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":3,"docs":{"37":{"tf":1.4142135623730952},"60":{"tf":1.4142135623730952},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"28":{"tf":1.7320508075688773},"58":{"tf":1.0},"81":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"b":{"df":5,"docs":{"31":{"tf":3.1622776601683797},"32":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":3.0},"61":{"tf":2.23606797749979}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730952}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688773},"17":{"tf":1.0},"20":{"tf":1.0},"40":{"tf":1.4142135623730952},"41":{"tf":3.1622776601683797},"6":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"f":{"df":1,"docs":{"23":{"tf":1.0}}},"i":{"a":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":25,"docs":{"10":{"tf":1.7320508075688773},"11":{"tf":1.7320508075688773},"14":{"tf":1.4142135623730952},"17":{"tf":2.23606797749979},"18":{"tf":1.7320508075688773},"26":{"tf":1.4142135623730952},"27":{"tf":2.0},"28":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":3.4641016151377546},"40":{"tf":1.4142135623730952},"41":{"tf":2.6457513110645909},"42":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730952},"55":{"tf":1.0},"59":{"tf":1.4142135623730952},"60":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.7320508075688773},"55":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730952},"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"34":{"tf":1.0},"41":{"tf":2.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"31":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.7320508075688773},"49":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"30":{"tf":1.0},"48":{"tf":1.4142135623730952}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"31":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730952},"51":{"tf":1.4142135623730952},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"31":{"tf":2.6457513110645909},"32":{"tf":2.0},"33":{"tf":2.0},"34":{"tf":2.8284271247461905},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":2.23606797749979},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688773},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"40":{"tf":1.7320508075688773},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"40":{"tf":1.0},"44":{"tf":1.4142135623730952},"45":{"tf":1.4142135623730952},"55":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}}},"df":0,"docs":{}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"breadcrumbs":{"root":{"0":{".":{"1":{".":{"1":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"c":{"2":{"9":{"6":{"7":{"7":{"6":{"9":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.4142135623730952},"41":{"tf":3.3166247903554},"42":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"8":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"39":{"tf":1.4142135623730952}},"t":{"1":{"3":{":":{"5":{"9":{":":{"1":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"41":{"tf":1.7320508075688773}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"t":{"2":{"1":{":":{"1":{"5":{":":{"3":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"7":{"1":{"c":{"c":{"1":{"4":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"9":{"6":{"6":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"5":{"9":{":":{"1":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":2.0},"37":{"tf":2.23606797749979},"38":{"tf":2.6457513110645909},"39":{"tf":3.1622776601683797},"67":{"tf":1.4142135623730952}}},"1":{".":{"1":{"0":{"df":1,"docs":{"83":{"tf":1.4142135623730952}}},"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"76":{"tf":1.4142135623730952},"80":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"/":{"1":{"df":5,"docs":{"35":{"tf":1.0},"36":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":2.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"7":{"4":{"1":{"8":{"2":{"4":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.0}}},"1":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"8":{"df":5,"docs":{"13":{"tf":1.0},"39":{"tf":1.7320508075688773},"40":{"tf":1.7320508075688773},"41":{"tf":3.3166247903554},"42":{"tf":2.0}}},"df":0,"docs":{}}},"2":{"3":{"4":{"5":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.4142135623730952},"39":{"tf":2.23606797749979},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}},"4":{"df":1,"docs":{"41":{"tf":1.0}}},"5":{"3":{"8":{"5":{"7":{"6":{"2":{"0":{"5":{"4":{"7":{"1":{"5":{"7":{"7":{"5":{"2":{"5":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{":":{"5":{"0":{".":{"9":{"7":{"6":{"0":{"6":{"9":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"0":{"3":{"4":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"7":{"2":{".":{"1":{"7":{".":{"0":{".":{"5":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"9":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":8,"docs":{"13":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.7320508075688773},"67":{"tf":1.0},"76":{"tf":1.4142135623730952},"82":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"82":{"tf":1.0}}}}},"2":{"/":{"2":{"df":3,"docs":{"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"8":{"df":4,"docs":{"13":{"tf":1.0},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"8":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"41":{"tf":1.0}}},"4":{"df":1,"docs":{"41":{"tf":1.0}}},"6":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}},"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":1.0}}}},"3":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"3":{"3":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"4":{"8":{"df":1,"docs":{"38":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":1.0}},"s":{"df":1,"docs":{"36":{"tf":1.0}}}},"5":{"3":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"s":{"df":3,"docs":{"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}}},"6":{"6":{"df":1,"docs":{"39":{"tf":1.0}}},"7":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}},"9":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{},"s":{"df":2,"docs":{"35":{"tf":1.0},"42":{"tf":1.0}}}},"7":{"7":{"3":{"2":{"4":{"6":{"8":{"4":{"df":1,"docs":{"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"6":{"2":{"d":{"7":{"2":{"4":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"1":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.4142135623730952},"41":{"tf":3.1622776601683797},"42":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"5":{"4":{"a":{"a":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"7":{"c":{"df":3,"docs":{"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"4":{"df":0,"docs":{},"e":{"9":{"7":{"df":0,"docs":{},"f":{"3":{"a":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"1":{"c":{"6":{"d":{"0":{"8":{"1":{"b":{"8":{"df":0,"docs":{},"e":{"9":{"6":{"c":{"5":{"8":{"df":0,"docs":{},"e":{"d":{"0":{"0":{"c":{"9":{"b":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"1":{"7":{"4":{"5":{"df":0,"docs":{},"e":{"8":{"9":{"b":{"2":{"5":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"4":{"5":{"0":{"5":{"4":{"3":{"7":{"df":0,"docs":{},"f":{"0":{"1":{"5":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"18":{"tf":1.0},"77":{"tf":1.4142135623730952}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"61":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"27":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"d":{"d":{"df":2,"docs":{"22":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730952},"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":1,"docs":{"22":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"72":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":8,"docs":{"13":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.0},"41":{"tf":1.7320508075688773},"42":{"tf":1.4142135623730952}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.4142135623730952},"9":{"tf":1.4142135623730952}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":11,"docs":{"10":{"tf":1.7320508075688773},"11":{"tf":1.7320508075688773},"14":{"tf":1.4142135623730952},"18":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.0},"24":{"tf":2.0},"30":{"tf":1.4142135623730952},"48":{"tf":1.4142135623730952},"7":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"39":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"47":{"tf":1.7320508075688773},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"31":{"tf":3.3166247903554},"32":{"tf":2.23606797749979},"33":{"tf":2.6457513110645909},"34":{"tf":3.1622776601683797},"42":{"tf":1.0},"61":{"tf":2.23606797749979}}}}}}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":18,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.4142135623730952},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":1.7320508075688773},"34":{"tf":1.7320508075688773},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.7320508075688773},"38":{"tf":1.4142135623730952},"39":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}}}}}},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"35":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.4142135623730952},"38":{"tf":2.0},"39":{"tf":2.449489742783178},"40":{"tf":1.7320508075688773}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"44":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"v":{"1":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"20":{"tf":1.7320508075688773},"79":{"tf":1.4142135623730952},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.4142135623730952},"39":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"3":{"tf":1.0},"32":{"tf":3.3166247903554},"36":{"tf":3.7416573867739415},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730952},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"59":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.7320508075688773}},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730952}}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730952}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.4142135623730952}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"73":{"tf":1.0}}}}},"b":{"1":{"6":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":2,"docs":{"28":{"tf":1.0},"76":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"60":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}}},"t":{"a":{"df":5,"docs":{"16":{"tf":1.4142135623730952},"19":{"tf":1.0},"2":{"tf":1.4142135623730952},"24":{"tf":1.7320508075688773},"7":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730952}}}}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"60":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"48":{"tf":1.0},"80":{"tf":1.4142135623730952}}}}},"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"10":{"tf":2.0},"24":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"28":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":2.0},"51":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"39":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"7":{"1":{"4":{"df":4,"docs":{"39":{"tf":1.7320508075688773},"40":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952}}},"6":{"df":1,"docs":{"41":{"tf":3.0}}},"7":{"df":1,"docs":{"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"5":{"b":{"c":{"4":{"7":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":14,"docs":{"11":{"tf":1.7320508075688773},"17":{"tf":1.7320508075688773},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"c":{"df":4,"docs":{"27":{"tf":1.0},"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":3,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.0}}}}},"df":2,"docs":{"40":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"26":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"28":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"65":{"tf":1.0},"66":{"tf":1.7320508075688773},"67":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":11,"docs":{"11":{"tf":1.7320508075688773},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730952}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"61":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":1,"docs":{"66":{"tf":1.0}},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.4142135623730952},"49":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"53":{"tf":1.4142135623730952},"63":{"tf":1.0},"77":{"tf":1.7320508075688773}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.4142135623730952},"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":2.23606797749979},"18":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.4142135623730952},"82":{"tf":2.23606797749979}}}}}},"n":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730952}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"16":{"tf":1.0},"17":{"tf":2.0},"24":{"tf":3.7416573867739415},"28":{"tf":2.23606797749979},"3":{"tf":1.7320508075688773},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":2.449489742783178},"40":{"tf":1.4142135623730952},"44":{"tf":1.0},"45":{"tf":1.4142135623730952},"47":{"tf":1.0},"49":{"tf":1.7320508075688773},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"10":{"tf":1.0},"28":{"tf":1.4142135623730952},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730952},"49":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.4142135623730952}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.4142135623730952}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"r":{"d":{"df":7,"docs":{"11":{"tf":1.4142135623730952},"12":{"tf":1.4142135623730952},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730952},"30":{"tf":1.0},"47":{"tf":1.4142135623730952}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":2.449489742783178},"30":{"tf":2.23606797749979},"31":{"tf":3.0},"32":{"tf":2.449489742783178},"33":{"tf":2.449489742783178},"34":{"tf":3.1622776601683797},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":3.3166247903554},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688773},"43":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":3.1622776601683797},"51":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"b":{"a":{"c":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":2.23606797749979},"12":{"tf":2.0},"13":{"tf":1.4142135623730952},"14":{"tf":1.4142135623730952},"17":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.4142135623730952}}}}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":76,"docs":{"1":{"tf":2.0},"10":{"tf":1.4142135623730952},"11":{"tf":2.6457513110645909},"12":{"tf":1.0},"13":{"tf":2.23606797749979},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":2.6457513110645909},"17":{"tf":3.605551275463989},"18":{"tf":1.7320508075688773},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688773},"22":{"tf":1.4142135623730952},"23":{"tf":1.7320508075688773},"24":{"tf":4.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730952},"27":{"tf":2.23606797749979},"28":{"tf":3.1622776601683797},"29":{"tf":1.0},"3":{"tf":1.7320508075688773},"30":{"tf":1.0},"31":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"33":{"tf":2.449489742783178},"34":{"tf":2.6457513110645909},"35":{"tf":3.872983346207417},"36":{"tf":4.0},"37":{"tf":3.605551275463989},"38":{"tf":4.358898943540674},"39":{"tf":5.291502622129181},"4":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":3.605551275463989},"42":{"tf":2.6457513110645909},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.7320508075688773},"46":{"tf":2.8284271247461905},"47":{"tf":1.4142135623730952},"48":{"tf":1.0},"49":{"tf":2.6457513110645909},"5":{"tf":2.8284271247461905},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688773},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730952},"6":{"tf":1.7320508075688773},"60":{"tf":1.4142135623730952},"61":{"tf":1.0},"62":{"tf":1.4142135623730952},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":1.7320508075688773},"69":{"tf":1.4142135623730952},"7":{"tf":1.0},"70":{"tf":1.4142135623730952},"71":{"tf":1.4142135623730952},"73":{"tf":2.6457513110645909},"76":{"tf":1.0},"78":{"tf":1.4142135623730952},"79":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.7320508075688773},"82":{"tf":1.0},"83":{"tf":1.4142135623730952},"9":{"tf":1.4142135623730952}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":6,"docs":{"14":{"tf":2.23606797749979},"15":{"tf":2.0},"19":{"tf":1.4142135623730952},"30":{"tf":1.4142135623730952},"31":{"tf":1.0},"33":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"11":{"tf":1.7320508075688773},"14":{"tf":1.4142135623730952},"17":{"tf":1.0},"19":{"tf":1.4142135623730952},"58":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"75":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"37":{"tf":1.7320508075688773},"39":{"tf":1.4142135623730952},"63":{"tf":1.0}}}}}}}}},"t":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"28":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":11,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730952},"19":{"tf":1.0},"30":{"tf":1.7320508075688773},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":2.23606797749979},"41":{"tf":1.4142135623730952},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.4142135623730952}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"31":{"tf":1.0},"34":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"56":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"41":{"tf":2.449489742783178},"42":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730952},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"43":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":2.0},"5":{"tf":1.7320508075688773},"52":{"tf":1.7320508075688773},"62":{"tf":2.0},"63":{"tf":1.7320508075688773},"69":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":10,"docs":{"13":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.7320508075688773},"43":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730952}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":34,"docs":{"1":{"tf":1.0},"43":{"tf":1.7320508075688773},"44":{"tf":2.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730952},"47":{"tf":1.4142135623730952},"48":{"tf":1.4142135623730952},"49":{"tf":1.4142135623730952},"50":{"tf":1.4142135623730952},"51":{"tf":1.4142135623730952},"52":{"tf":1.4142135623730952},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730952},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730952},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.7320508075688773}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"7":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":8,"docs":{"17":{"tf":2.449489742783178},"18":{"tf":1.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":2.6457513110645909},"38":{"tf":1.4142135623730952},"58":{"tf":1.0},"60":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730952},"18":{"tf":1.7320508075688773},"37":{"tf":1.0},"60":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"o":{"c":{"df":3,"docs":{"64":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"/":{"/":{"df":0,"docs":{},"f":{"d":{"2":{"9":{"5":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"1":{"5":{"5":{"b":{"d":{"df":0,"docs":{},"f":{"0":{"8":{"d":{"1":{"d":{"a":{"3":{"4":{"1":{"c":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"a":{"a":{"0":{"d":{"1":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"e":{"a":{"a":{"a":{"d":{"6":{"9":{"5":{"0":{"a":{"9":{"4":{"6":{"3":{"5":{"5":{"7":{"8":{"9":{"6":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"39":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730952}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.7320508075688773},"26":{"tf":1.0},"27":{"tf":1.0},"6":{"tf":1.4142135623730952},"65":{"tf":1.0}}}}}}}},"df":1,"docs":{"55":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"55":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":69,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":2.6457513110645909},"12":{"tf":1.0},"13":{"tf":2.23606797749979},"14":{"tf":3.0},"15":{"tf":1.0},"16":{"tf":3.3166247903554},"17":{"tf":3.605551275463989},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"24":{"tf":2.6457513110645909},"25":{"tf":1.7320508075688773},"26":{"tf":1.7320508075688773},"27":{"tf":2.449489742783178},"28":{"tf":3.0},"29":{"tf":1.4142135623730952},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.8284271247461905},"45":{"tf":1.0},"46":{"tf":2.6457513110645909},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"5":{"tf":2.6457513110645909},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730952},"53":{"tf":1.4142135623730952},"54":{"tf":1.4142135623730952},"55":{"tf":1.7320508075688773},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.8284271247461905},"59":{"tf":1.0},"6":{"tf":1.4142135623730952},"60":{"tf":1.0},"62":{"tf":1.4142135623730952},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"69":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":2.449489742783178},"73":{"tf":1.4142135623730952},"75":{"tf":1.0},"8":{"tf":1.4142135623730952},"82":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"5":{"tf":1.0}}},"’":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.7320508075688773}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"8":{"tf":1.0}}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"69":{"tf":1.0},"77":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"70":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"82":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"10":{"tf":1.7320508075688773},"12":{"tf":1.7320508075688773},"15":{"tf":1.7320508075688773},"18":{"tf":1.0},"19":{"tf":1.7320508075688773},"30":{"tf":1.7320508075688773},"39":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.7320508075688773},"53":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":2.0},"75":{"tf":1.0},"8":{"tf":1.4142135623730952},"9":{"tf":2.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"$":{"(":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"31":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"v":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"39":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}}}}}},"df":1,"docs":{"67":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":10,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":19,"docs":{"21":{"tf":1.4142135623730952},"23":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688773},"29":{"tf":1.4142135623730952},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730952},"50":{"tf":1.0},"6":{"tf":1.4142135623730952},"60":{"tf":1.0},"63":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"t":{"df":1,"docs":{"40":{"tf":1.4142135623730952}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":2.0}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":16,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"47":{"tf":1.4142135623730952},"49":{"tf":2.8284271247461905},"54":{"tf":1.4142135623730952},"55":{"tf":2.23606797749979},"56":{"tf":1.7320508075688773},"57":{"tf":1.7320508075688773},"59":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.7320508075688773},"77":{"tf":1.7320508075688773}}}}}}}},"f":{"5":{"5":{"d":{"b":{"6":{"3":{"2":{"df":1,"docs":{"41":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"7":{"9":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"6":{"1":{"4":{"1":{"1":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"51":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.4142135623730952}},"p":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.4142135623730952},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":2.6457513110645909}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":16,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"30":{"tf":1.4142135623730952},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"10":{"tf":1.7320508075688773},"12":{"tf":1.4142135623730952},"15":{"tf":1.4142135623730952},"16":{"tf":1.4142135623730952},"18":{"tf":1.4142135623730952},"19":{"tf":2.23606797749979},"30":{"tf":2.0},"34":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":2.23606797749979},"48":{"tf":2.23606797749979},"5":{"tf":1.0},"50":{"tf":1.7320508075688773},"6":{"tf":1.0},"7":{"tf":2.449489742783178},"80":{"tf":1.7320508075688773},"82":{"tf":1.4142135623730952},"9":{"tf":1.4142135623730952}},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"28":{"tf":1.4142135623730952}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"76":{"tf":1.7320508075688773},"79":{"tf":1.0},"9":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"44":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":21,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730952},"14":{"tf":1.0},"15":{"tf":1.4142135623730952},"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":2.449489742783178},"30":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730952},"49":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730952}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"71":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.4142135623730952},"21":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.7320508075688773}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}},"g":{"a":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.7320508075688773},"82":{"tf":1.4142135623730952}},"s":{"=":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"15":{"tf":1.0},"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"18":{"tf":1.0},"48":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"24":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"41":{"tf":1.7320508075688773},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}}}}},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"8":{"6":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"67":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"p":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"40":{"tf":1.0},"67":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688773},"47":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.4142135623730952},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688773},"39":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":22,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688773},"14":{"tf":1.0},"17":{"tf":3.0},"21":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":3.7416573867739415},"36":{"tf":3.7416573867739415},"37":{"tf":3.0},"38":{"tf":3.872983346207417},"39":{"tf":3.605551275463989},"40":{"tf":1.7320508075688773},"41":{"tf":3.3166247903554},"42":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.7320508075688773},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.7320508075688773}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730952}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":1.4142135623730952},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"30":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":1,"docs":{"8":{"tf":1.0}}},"0":{"3":{"0":{"6":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"39":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.4142135623730952},"14":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"58":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"24":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.4142135623730952},"17":{"tf":1.4142135623730952},"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730952},"19":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730952},"14":{"tf":1.0},"16":{"tf":1.4142135623730952},"17":{"tf":1.7320508075688773},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730952},"25":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.4142135623730952},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.7320508075688773},"68":{"tf":1.7320508075688773},"73":{"tf":1.0},"79":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"4":{"tf":1.4142135623730952},"47":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"16":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"24":{"tf":3.4641016151377546},"45":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"16":{"tf":1.4142135623730952}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"11":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"39":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"'":{"df":0,"docs":{},"{":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"[":{"*":{"]":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"14":{"tf":1.4142135623730952},"28":{"tf":2.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":3.0},"42":{"tf":1.4142135623730952},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"81":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":21,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730952},"15":{"tf":1.0},"30":{"tf":1.4142135623730952},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"38":{"tf":1.4142135623730952},"39":{"tf":2.6457513110645909},"40":{"tf":2.0},"41":{"tf":2.8284271247461905},"42":{"tf":1.7320508075688773},"49":{"tf":1.0},"50":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}}},"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"18":{"tf":1.4142135623730952}}},"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":2.0},"18":{"tf":1.4142135623730952},"37":{"tf":1.0},"39":{"tf":2.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.23606797749979},"7":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"19":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":44,"docs":{"1":{"tf":2.0},"10":{"tf":1.4142135623730952},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730952},"19":{"tf":1.4142135623730952},"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730952},"29":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.7320508075688773},"53":{"tf":1.7320508075688773},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730952},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730952},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.4142135623730952},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688773},"81":{"tf":1.0},"83":{"tf":1.4142135623730952}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"13":{"tf":1.0},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"58":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"6":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"75":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"13":{"tf":1.7320508075688773},"14":{"tf":1.4142135623730952},"31":{"tf":3.1622776601683797},"32":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":3.0},"5":{"tf":1.0},"61":{"tf":2.23606797749979},"76":{"tf":1.7320508075688773}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.0},"76":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"26":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688773},"67":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"55":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"17":{"tf":2.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"18":{"tf":1.0},"67":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"16":{"tf":1.4142135623730952},"18":{"tf":1.0},"19":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":1.7320508075688773},"34":{"tf":1.7320508075688773},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"17":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.4142135623730952},"44":{"tf":1.0},"66":{"tf":1.7320508075688773},"67":{"tf":2.8284271247461905}}}},"d":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"17":{"tf":1.0},"39":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"5":{"tf":1.0}},"l":{"df":2,"docs":{"26":{"tf":1.4142135623730952},"72":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730952},"25":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.7320508075688773},"68":{"tf":1.7320508075688773},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"df":12,"docs":{"11":{"tf":1.4142135623730952},"13":{"tf":1.0},"17":{"tf":2.449489742783178},"24":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.4142135623730952},"59":{"tf":1.0},"60":{"tf":1.7320508075688773},"66":{"tf":1.0},"75":{"tf":2.0},"9":{"tf":3.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.4142135623730952},"60":{"tf":1.4142135623730952}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"30":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"25":{"tf":1.0},"70":{"tf":1.4142135623730952},"71":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":2.0},"13":{"tf":1.4142135623730952},"14":{"tf":1.0},"17":{"tf":2.449489742783178},"23":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.4641016151377546},"3":{"tf":1.0},"31":{"tf":2.23606797749979},"32":{"tf":2.23606797749979},"33":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"35":{"tf":2.8284271247461905},"36":{"tf":2.8284271247461905},"37":{"tf":3.7416573867739415},"38":{"tf":2.8284271247461905},"39":{"tf":3.1622776601683797},"40":{"tf":2.0},"41":{"tf":3.872983346207417},"42":{"tf":2.0},"58":{"tf":2.23606797749979},"60":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":2.23606797749979},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":9,"docs":{"13":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730952},"34":{"tf":1.0},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"21":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"24":{"tf":1.0}}},"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952},"41":{"tf":2.0},"42":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}}},"f":{"df":2,"docs":{"23":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.4142135623730952}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"14":{"tf":2.23606797749979},"23":{"tf":1.0},"28":{"tf":1.4142135623730952},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688773},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.4142135623730952},"58":{"tf":1.4142135623730952},"59":{"tf":1.4142135623730952},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.4142135623730952},"9":{"tf":1.0}},"i":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"14":{"tf":1.4142135623730952},"58":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":3.0},"37":{"tf":1.0},"75":{"tf":1.0}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.4142135623730952}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.4142135623730952}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"13":{"tf":1.7320508075688773},"39":{"tf":2.6457513110645909},"40":{"tf":1.7320508075688773},"41":{"tf":3.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"71":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688773},"28":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730952},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}},"df":1,"docs":{"40":{"tf":1.0}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":4,"docs":{"16":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0}}},"df":3,"docs":{"55":{"tf":1.4142135623730952},"71":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":2,"docs":{"24":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":7,"docs":{"11":{"tf":1.0},"17":{"tf":2.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"67":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.4142135623730952}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"71":{"tf":1.4142135623730952},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":3.872983346207417},"67":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"16":{"tf":1.4142135623730952},"17":{"tf":3.0},"18":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688773},"38":{"tf":1.0},"60":{"tf":1.4142135623730952},"75":{"tf":1.0}}}}},"d":{"df":2,"docs":{"28":{"tf":3.0},"46":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.0},"55":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"24":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"27":{"tf":2.0},"28":{"tf":3.3166247903554},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.4142135623730952}},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"28":{"tf":3.0},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":2.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":16,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"53":{"tf":1.0}},"g":{"df":1,"docs":{"24":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.23606797749979},"33":{"tf":1.4142135623730952},"37":{"tf":1.4142135623730952},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"63":{"tf":1.4142135623730952},"64":{"tf":1.0},"75":{"tf":1.4142135623730952},"78":{"tf":1.0}}}}}}},"o":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":15,"docs":{"11":{"tf":1.7320508075688773},"13":{"tf":1.0},"17":{"tf":2.0},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.7320508075688773},"38":{"tf":1.7320508075688773},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688773},"9":{"tf":1.4142135623730952}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.4142135623730952}}}}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"60":{"tf":1.7320508075688773}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":2.23606797749979},"39":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"38":{"tf":1.4142135623730952},"39":{"tf":1.4142135623730952}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":2,"docs":{"24":{"tf":1.0},"71":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":2.0},"47":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"16":{"tf":1.0},"20":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":2.23606797749979}},"e":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"8":{"tf":1.4142135623730952},"80":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"42":{"tf":1.0},"77":{"tf":1.4142135623730952}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.4142135623730952},"46":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730952}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.7320508075688773},"23":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":8,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730952},"27":{"tf":2.0},"28":{"tf":2.8284271247461905},"29":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"19":{"tf":1.0},"28":{"tf":2.8284271247461905},"3":{"tf":1.0},"31":{"tf":3.3166247903554},"35":{"tf":3.7416573867739415},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730952},"49":{"tf":1.4142135623730952},"54":{"tf":1.0},"56":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{":":{"2":{"a":{"0":{"3":{"a":{"6":{"0":{"5":{"9":{"df":0,"docs":{},"f":{"2":{"1":{"df":0,"docs":{},"e":{"1":{"5":{"0":{"a":{"df":0,"docs":{},"e":{"8":{"4":{"b":{"0":{"9":{"7":{"3":{"8":{"6":{"3":{"6":{"0":{"9":{"4":{"9":{"4":{"a":{"a":{"d":{"7":{"0":{"df":0,"docs":{},"f":{"0":{"a":{"8":{"0":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"6":{"4":{"b":{"d":{"d":{"d":{"8":{"d":{"9":{"2":{"4":{"6":{"5":{"8":{"1":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":2.0}}}}},"v":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"[":{"'":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"28":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"39":{"tf":3.1622776601683797},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"42":{"tf":2.6457513110645909},"50":{"tf":1.4142135623730952},"51":{"tf":3.0}}},"df":3,"docs":{"27":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}}},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":2.0}}}},"b":{"a":{"c":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"df":5,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.7320508075688773},"61":{"tf":1.7320508075688773}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"24":{"tf":1.4142135623730952},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}},"e":{"a":{"d":{"df":6,"docs":{"45":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":6,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"41":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"39":{"tf":1.0},"82":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"y":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":1.0},"55":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"49":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.4142135623730952}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"19":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.4142135623730952}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{"2":{"0":{"5":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":3,"docs":{"13":{"tf":2.0},"17":{"tf":1.0},"58":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"v":{"0":{".":{"2":{".":{"0":{"df":2,"docs":{"17":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"16":{"tf":1.7320508075688773},"17":{"tf":3.0},"3":{"tf":1.0},"37":{"tf":1.7320508075688773},"54":{"tf":1.0},"58":{"tf":2.23606797749979}}}},"df":3,"docs":{"16":{"tf":2.449489742783178},"17":{"tf":2.6457513110645909},"37":{"tf":2.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":2.6457513110645909}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"22":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"28":{"tf":2.0},"39":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.4142135623730952},"13":{"tf":1.0},"17":{"tf":2.0},"28":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"11":{"tf":1.7320508075688773},"13":{"tf":1.0},"14":{"tf":1.7320508075688773},"17":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":3.1622776601683797},"32":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":3.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.7320508075688773},"61":{"tf":2.23606797749979},"76":{"tf":1.0},"82":{"tf":1.0}},"e":{"]":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"28":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.4142135623730952},"42":{"tf":2.449489742783178}},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"82":{"tf":1.4142135623730952}}}}}}},"o":{"df":1,"docs":{"39":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"61":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.4142135623730952},"18":{"tf":2.0}}}}},"p":{"c":{"df":2,"docs":{"46":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":1.7320508075688773},"34":{"tf":2.0},"61":{"tf":2.0},"77":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.4142135623730952}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730952},"37":{"tf":1.7320508075688773},"38":{"tf":2.0},"39":{"tf":2.6457513110645909},"49":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"77":{"tf":1.4142135623730952}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"34":{"tf":1.7320508075688773}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"39":{"tf":1.0}},"o":{"df":2,"docs":{"39":{"tf":1.4142135623730952},"42":{"tf":2.0}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"28":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.4142135623730952}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"23":{"tf":2.449489742783178},"44":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"23":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.449489742783178}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"39":{"tf":2.449489742783178},"42":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"39":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.4142135623730952}}}}}}},"df":1,"docs":{"67":{"tf":1.4142135623730952}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"28":{"tf":2.6457513110645909},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730952}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"79":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.0},"38":{"tf":1.4142135623730952},"39":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}}},"n":{"d":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":7,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730952},"80":{"tf":1.0}}}},"i":{"c":{"df":6,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":8,"docs":{"31":{"tf":1.4142135623730952},"32":{"tf":1.4142135623730952},"33":{"tf":1.4142135623730952},"34":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":2.23606797749979},"30":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730952},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":11,"docs":{"20":{"tf":1.0},"27":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"4":{"tf":1.4142135623730952},"40":{"tf":1.4142135623730952},"49":{"tf":1.0},"5":{"tf":1.7320508075688773},"6":{"tf":1.4142135623730952},"67":{"tf":2.0},"71":{"tf":1.4142135623730952},"82":{"tf":1.4142135623730952}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.4142135623730952},"9":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"14":{"tf":1.0},"29":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"16":{"tf":1.7320508075688773},"17":{"tf":2.449489742783178},"3":{"tf":1.4142135623730952},"34":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688773},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"29":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"41":{"tf":1.4142135623730952}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":2.8284271247461905}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.7320508075688773}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"41":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"31":{"tf":1.4142135623730952},"34":{"tf":1.7320508075688773},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":12,"docs":{"18":{"tf":1.7320508075688773},"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":4.242640687119285},"42":{"tf":2.0},"46":{"tf":2.23606797749979},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688773},"51":{"tf":1.4142135623730952},"57":{"tf":1.0}},"t":{"df":7,"docs":{"34":{"tf":3.4641016151377546},"38":{"tf":3.872983346207417},"39":{"tf":1.0},"41":{"tf":1.4142135623730952},"47":{"tf":1.4142135623730952},"49":{"tf":2.449489742783178},"57":{"tf":1.7320508075688773}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"v":{"0":{".":{"4":{".":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730952},"17":{"tf":2.6457513110645909},"35":{"tf":1.4142135623730952},"36":{"tf":1.4142135623730952},"37":{"tf":1.7320508075688773},"38":{"tf":1.4142135623730952},"58":{"tf":1.0},"60":{"tf":1.4142135623730952}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"37":{"tf":1.4142135623730952},"38":{"tf":1.7320508075688773},"39":{"tf":1.4142135623730952},"40":{"tf":1.0},"41":{"tf":1.7320508075688773},"42":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730952},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688773},"28":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":3,"docs":{"17":{"tf":2.23606797749979},"18":{"tf":1.0},"28":{"tf":2.6457513110645909}}}}}},"df":0,"docs":{}}},"s":{"d":{"df":1,"docs":{"28":{"tf":3.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.4142135623730952},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"39":{"tf":2.0},"44":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"75":{"tf":1.7320508075688773},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"35":{"tf":1.7320508075688773},"36":{"tf":1.7320508075688773},"38":{"tf":1.7320508075688773},"49":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"u":{"df":13,"docs":{"2":{"tf":1.7320508075688773},"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730952},"75":{"tf":1.4142135623730952}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"6":{"tf":1.4142135623730952}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"14":{"tf":1.4142135623730952},"24":{"tf":5.196152422706632},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.1622776601683797},"29":{"tf":1.0},"39":{"tf":1.7320508075688773},"42":{"tf":1.0},"45":{"tf":1.4142135623730952},"53":{"tf":1.0},"59":{"tf":1.4142135623730952},"66":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"28":{"tf":1.7320508075688773},"39":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"28":{"tf":3.4641016151377546},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.7320508075688773},"42":{"tf":1.4142135623730952},"50":{"tf":1.0},"61":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"28":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}}}}}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":2.0},"14":{"tf":1.0},"18":{"tf":1.7320508075688773},"19":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.4142135623730952},"46":{"tf":1.0},"55":{"tf":1.4142135623730952},"79":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730952}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}},"n":{"df":1,"docs":{"82":{"tf":1.4142135623730952}}}}}},"b":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"28":{"tf":1.7320508075688773},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"23":{"tf":1.0},"25":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.7320508075688773},"65":{"tf":1.7320508075688773},"66":{"tf":3.1622776601683797},"67":{"tf":3.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688773},"70":{"tf":2.23606797749979},"71":{"tf":3.0},"72":{"tf":2.0},"73":{"tf":1.7320508075688773},"77":{"tf":1.4142135623730952}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"51":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.4142135623730952}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"39":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"39":{"tf":1.0},"41":{"tf":1.4142135623730952}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"1":{"5":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688773}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"0":{"5":{"7":{"4":{"8":{"5":{"a":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"p":{"df":1,"docs":{"5":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.4142135623730952},"19":{"tf":2.0}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"14":{"tf":1.4142135623730952}}}}}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":2,"docs":{"51":{"tf":1.0},"7":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"28":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"74":{"tf":1.4142135623730952}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.4142135623730952},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"8":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"26":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"17":{"tf":1.4142135623730952},"28":{"tf":1.7320508075688773},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688773},"38":{"tf":1.0},"39":{"tf":2.0},"60":{"tf":1.4142135623730952}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"13":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"45":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"11":{"tf":1.0}}}},"t":{"df":3,"docs":{"66":{"tf":1.4142135623730952},"67":{"tf":1.7320508075688773},"71":{"tf":1.7320508075688773}}},"x":{":":{"/":{"/":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.7320508075688773}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"66":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"31":{"tf":1.7320508075688773},"32":{"tf":1.7320508075688773},"33":{"tf":2.23606797749979},"34":{"tf":1.7320508075688773},"6":{"tf":1.0},"61":{"tf":2.0}}}},"df":0,"docs":{}},"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"26":{"tf":1.7320508075688773},"39":{"tf":1.4142135623730952},"5":{"tf":1.4142135623730952},"69":{"tf":1.0}}}},"df":50,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730952},"11":{"tf":1.4142135623730952},"12":{"tf":1.4142135623730952},"13":{"tf":1.4142135623730952},"14":{"tf":1.7320508075688773},"15":{"tf":1.4142135623730952},"16":{"tf":2.0},"17":{"tf":2.23606797749979},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730952},"23":{"tf":1.7320508075688773},"24":{"tf":1.4142135623730952},"25":{"tf":1.0},"26":{"tf":1.4142135623730952},"27":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"29":{"tf":1.7320508075688773},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688773},"40":{"tf":1.0},"41":{"tf":1.4142135623730952},"42":{"tf":1.0},"44":{"tf":1.4142135623730952},"45":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730952},"66":{"tf":2.0},"67":{"tf":1.4142135623730952},"69":{"tf":1.0},"7":{"tf":1.4142135623730952},"71":{"tf":1.4142135623730952},"73":{"tf":1.0},"8":{"tf":1.4142135623730952},"81":{"tf":1.7320508075688773},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"v":{"0":{".":{"0":{".":{"1":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.0}}},"3":{".":{"0":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":2.0}}},"4":{".":{"1":{"df":1,"docs":{"3":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"0":{"df":2,"docs":{"2":{"tf":1.0},"30":{"tf":1.4142135623730952}}},"1":{"df":1,"docs":{"2":{"tf":1.0}}},"2":{"df":4,"docs":{"18":{"tf":1.0},"30":{"tf":2.0},"48":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"1":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":17,"docs":{"11":{"tf":1.7320508075688773},"14":{"tf":1.0},"17":{"tf":1.4142135623730952},"27":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"39":{"tf":1.4142135623730952},"41":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.0}}},"=":{"5":{"df":4,"docs":{"17":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"30":{"tf":1.4142135623730952}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":11,"docs":{"11":{"tf":1.7320508075688773},"17":{"tf":1.4142135623730952},"18":{"tf":1.4142135623730952},"28":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.7320508075688773},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.4142135623730952},"58":{"tf":1.0}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.4142135623730952},"18":{"tf":1.0},"37":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.7320508075688773},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":3,"docs":{"37":{"tf":1.4142135623730952},"60":{"tf":1.4142135623730952},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"28":{"tf":1.7320508075688773},"58":{"tf":1.0},"81":{"tf":1.4142135623730952}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"b":{"df":5,"docs":{"31":{"tf":3.1622776601683797},"32":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":3.0},"61":{"tf":2.23606797749979}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730952}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688773},"17":{"tf":1.0},"20":{"tf":1.0},"40":{"tf":1.4142135623730952},"41":{"tf":3.1622776601683797},"6":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"f":{"df":1,"docs":{"23":{"tf":1.0}}},"i":{"a":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"13":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":25,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688773},"14":{"tf":1.4142135623730952},"17":{"tf":2.23606797749979},"18":{"tf":1.7320508075688773},"26":{"tf":1.4142135623730952},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730952},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":3.4641016151377546},"40":{"tf":1.4142135623730952},"41":{"tf":2.6457513110645909},"42":{"tf":2.23606797749979},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730952},"55":{"tf":1.0},"59":{"tf":1.4142135623730952},"60":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.7320508075688773},"55":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.7320508075688773},"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730952},"38":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"34":{"tf":1.0},"41":{"tf":2.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"31":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.7320508075688773},"49":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"30":{"tf":1.0},"48":{"tf":1.7320508075688773}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"31":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730952},"51":{"tf":1.4142135623730952},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.4142135623730952}}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"31":{"tf":2.6457513110645909},"32":{"tf":2.0},"33":{"tf":2.0},"34":{"tf":2.8284271247461905},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":2.23606797749979},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688773},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730952}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"40":{"tf":1.7320508075688773},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"40":{"tf":1.0},"44":{"tf":1.4142135623730952},"45":{"tf":1.4142135623730952},"55":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.7320508075688773}}}},"df":0,"docs":{}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"title":{"root":{"1":{".":{"1":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":4,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"32":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"82":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"df":19,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":9,"docs":{"21":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"64":{"tf":1.0},"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"64":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"9":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"33":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"d":{"df":6,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"31":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.0}}}}}}}}}},"v":{"c":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}},"b":{"a":{"c":{"df":5,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"40":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"17":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}},"t":{"df":4,"docs":{"34":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"u":{"df":3,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"25":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730952},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"71":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"26":{"tf":1.0},"39":{"tf":1.0}}}},"df":1,"docs":{"5":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file